From b8b77b2dc5f5f5ff6d6c39e21e7e874c549c08f4 Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:14:08 +0000 Subject: [PATCH 01/10] refactor: accept params from contracts # Conflicts: # crates/aggregator/src/ext.rs # crates/sortition/src/ciphernode_selector.rs # packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json # packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json # packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json # packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json # packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json # packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json # packages/enclave-contracts/deployed_contracts.json --- Cargo.lock | 1 + .../flow-trace/07_CIPHERNODE_E3_DEEP_DIVE.md | 1370 ++++ crates/aggregator/src/ext.rs | 33 +- .../src/ciphernode_builder.rs | 21 +- .../src/enclave_event/ciphernode_selected.rs | 3 + .../events/src/enclave_event/e3_requested.rs | 8 +- crates/evm/src/enclave_sol_reader.rs | 23 +- crates/fhe-params/src/presets.rs | 12 + crates/keyshare/src/ext.rs | 22 +- crates/request/Cargo.toml | 1 + crates/request/src/meta.rs | 4 + crates/sortition/src/ciphernode_selector.rs | 2 + crates/tests/tests/integration.rs | 1 + examples/CRISP/enclave.config.yaml | 24 +- .../contracts/Mocks/MockEnclave.sol | 4 +- .../crisp-contracts/deployed_contracts.json | 201 +- examples/CRISP/server/.env.example | 8 +- fhe.md | 932 +++ logs.txt | 2770 ++++++++ logs_c0c3_debug.txt | 6149 +++++++++++++++++ .../contracts/Enclave.sol/Enclave.json | 174 +- .../IBondingRegistry.json | 2 +- .../ICiphernodeRegistry.json | 7 +- .../interfaces/IEnclave.sol/IEnclave.json | 119 +- .../ISlashingManager.json | 2 +- .../CiphernodeRegistryOwnable.json | 33 +- .../enclave-contracts/contracts/Enclave.sol | 48 +- .../contracts/interfaces/IE3.sol | 4 +- .../contracts/interfaces/IEnclave.sol | 40 +- .../enclave-contracts/deployed_contracts.json | 41 +- .../ignition/modules/enclave.ts | 2 - .../scripts/deployAndSave/enclave.ts | 16 +- .../scripts/deployEnclave.ts | 6 +- packages/enclave-contracts/tasks/enclave.ts | 8 +- .../test/E3Lifecycle/E3Integration.spec.ts | 9 +- .../enclave-contracts/test/Enclave.spec.ts | 66 +- .../test/Pricing/Pricing.spec.ts | 9 +- .../CiphernodeRegistryOwnable.spec.ts | 5 +- .../test/Slashing/CommitteeExpulsion.spec.ts | 4 +- .../src/contracts/contract-client.ts | 4 +- packages/enclave-sdk/src/contracts/types.ts | 9 +- packages/enclave-sdk/src/enclave-sdk.ts | 2 +- packages/enclave-sdk/src/events/types.ts | 6 +- .../src/pages/steps/RequestComputation.tsx | 4 +- templates/default/deployed_contracts.json | 73 +- templates/default/enclave.config.yaml | 12 +- templates/default/logs.txt | 2764 ++++++++ templates/default/server/index.ts | 31 +- templates/default/tests/integration.spec.ts | 5 +- tests/integration/restart.sh | 252 + 50 files changed, 14761 insertions(+), 585 deletions(-) create mode 100644 agent/flow-trace/07_CIPHERNODE_E3_DEEP_DIVE.md create mode 100644 fhe.md create mode 100644 logs.txt create mode 100644 logs_c0c3_debug.txt create mode 100644 templates/default/logs.txt create mode 100755 tests/integration/restart.sh diff --git a/Cargo.lock b/Cargo.lock index e5b31e5d0c..aa076f755c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3624,6 +3624,7 @@ dependencies = [ "e3-config", "e3-data", "e3-events", + "e3-fhe-params", "e3-utils", "serde", "tracing", diff --git a/agent/flow-trace/07_CIPHERNODE_E3_DEEP_DIVE.md b/agent/flow-trace/07_CIPHERNODE_E3_DEEP_DIVE.md new file mode 100644 index 0000000000..e43f3d86d2 --- /dev/null +++ b/agent/flow-trace/07_CIPHERNODE_E3_DEEP_DIVE.md @@ -0,0 +1,1370 @@ +# Ciphernode E3 Deep Dive — Clinical Code-Level Flow + +Every step, every decision, every failure path. Code references are `file:line` relative to +`crates/`. + +--- + +## Master Flow — Bird's Eye View + +``` + ON-CHAIN CIPHERNODE SOFTWARE + ───────── ─────────────────── + Enclave.request() + │ + ▼ + CommitteeFinalized ──────────────► CiphernodeSelected (per selected node) + │ + ┌─────────┴─────────┐ + ▼ ▼ + ThresholdKeyshare PublicKeyAggregator + (per node) (aggregator node) + │ │ + ┌─────┴─────┐ │ + │ PHASE 1 │ │ + │ BFV Key │ │ + │ Exchange │ │ + └─────┬─────┘ │ + │ │ + ┌─────┴─────┐ │ + │ PHASE 2 │ │ + │ TrBFV │ │ + │ Shares │ │ + │ C1-C3 │ │ + └─────┬─────┘ │ + │ │ + ┌─────┴─────┐ │ + │ PHASE 3 │ │ + │ C2/C3 │ │ + │ Verify │ │ + └─────┬─────┘ │ + │ │ + ┌─────┴─────┐ ┌─────┴─────┐ + │ PHASE 4 │ │ PHASE 5 │ + │ C4 Dec │ │ C1 Verify│ + │ Key Calc │ │ C5 Agg │ + └─────┬─────┘ └─────┬─────┘ + │ │ + │ PublicKeyAggregated + │ │ + ▼ ▼ + CiphertextOutput ───────► PHASE 6: Threshold Decryption (C6) + Published │ + ┌─────┴─────┐ + │ PHASE 7 │ + │ C6 Verify│ ThresholdPlaintextAggregator + │ C7 Agg │ + └─────┬─────┘ + │ + PlaintextAggregated + │ + ▼ + publishPlaintextOutput() ──► ON-CHAIN +``` + +--- + +## Actors: Who Does What + +``` +┌──────────────────────────────────────────────────────────────────┐ +│ PER-NODE ACTORS │ +├──────────────────────────────────────────────────────────────────┤ +│ │ +│ ThresholdKeyshare Main DKG state machine │ +│ keyshare/src/threshold_keyshare.rs │ +│ │ +│ ProofRequestActor Generates + signs C0-C7 proofs │ +│ zk-prover/src/actors/proof_request.rs │ +│ │ +│ ProofVerificationActor Verifies C0 proofs (ECDSA+ZK) │ +│ zk-prover/src/actors/proof_verification.rs │ +│ │ +│ ShareVerificationActor Verifies C1-C4/C6 (ECDSA+ZK+gates) │ +│ zk-prover/src/actors/share_verification.rs │ +│ │ +│ CommitmentConsistencyChecker Post-ZK cross-circuit checks │ +│ zk-prover/src/actors/commitment_consistency_checker.rs │ +│ │ +│ NodeProofAggregator Per-node recursive proof folding │ +│ zk-prover/src/actors/node_proof_aggregator.rs │ +│ │ +│ AccusationManager Off-chain accusation quorum │ +│ zk-prover/src/actors/accusation_manager.rs │ +│ │ +├──────────────────────────────────────────────────────────────────┤ +│ AGGREGATOR-ONLY ACTORS │ +├──────────────────────────────────────────────────────────────────┤ +│ │ +│ PublicKeyAggregator Collects keyshares, C1, C5, PK agg │ +│ aggregator/src/publickey_aggregator.rs │ +│ │ +│ ThresholdPlaintextAggregator Collects C6, threshold decrypt │ +│ aggregator/src/threshold_plaintext_aggregator.rs │ +│ │ +├──────────────────────────────────────────────────────────────────┤ +│ EVM ACTORS │ +├──────────────────────────────────────────────────────────────────┤ +│ │ +│ EnclaveSolWriter Publishes PK + plaintext on-chain │ +│ evm/src/enclave_sol_writer.rs │ +│ │ +│ SlashingManagerSolWriter Submits slash proposals on-chain │ +│ evm/src/slashing_manager_sol_writer.rs │ +│ │ +└──────────────────────────────────────────────────────────────────┘ +``` + +--- + +## Proof Map & Connections + +``` + ┌─────────────────────────────────────────────┐ + │ PROOF DEPENDENCY GRAPH │ + └─────────────────────────────────────────────┘ + + ┌─────┐ ┌─────┐ + │ C0 │──pk_commitment──────────────────────────► │ C3a │ (CrossParty, CCC) + │PkBfv│──pk_commitment──────────────────────────► │ C3b │ (CrossParty, CCC) + └─────┘ └─────┘ + │ + ┌─────┐ ┌─────┐ │ + │ C1 │──pk_commitment──────────────► │ C5 │ │ + │PkGen│ │PkAgg│ │ All happen during DKG + └──┬──┘ └─────┘ │ + │ │ + │ sk_commitment ─────────────────────┐ │ + │ e_sm_commitment ──────────────┐ │ │ + │ │ │ │ + ┌──┴──┐ │ │ ┌──┴──┐ + │ C2a │ SkShareComputation │ │ │ C2b │ ESmShareComputation + └─────┘ │ │ └─────┘ + │ │ + ┌─────┐ │ │ ┌─────┐ + │ C4b │──e_sm_commitment───────────┘ │ │ C4a │──sk_commitment────┘ + │ ESM │ (gate) │ │ SK │ (gate) + └─────┘ │ └─────┘ + │ │ │ + │ ┌─────┐ │ │ + └────────►│ C6 │◄─────────────────┘─────────────┘ + │ThDec│ expected_sk_commitment, expected_e_sm_commitment + └──┬──┘ + │ + ┌──┴──┐ + │ C7 │ DecryptedSharesAggregation + │ Agg │ + └─────┘ +``` + +### Public Signals Layout + +``` +C0 PkBfv: + ┌─────────────────────────┬──────────────────┐ + │ public inputs (varies) │ pk_commitment │ ◄── OUTPUT (TAIL) + └─────────────────────────┴──────────────────┘ + +C1 PkGeneration: + ┌──────────────────┬──────────────────┬────────────────────┐ + │ sk_commitment │ pk_commitment │ e_sm_commitment │ ◄── ALL OUTPUTS (no inputs) + └──────────────────┴──────────────────┴────────────────────┘ + +C3 ShareEncryption: + ┌───────────────────────────┬──────────────────────────────┐ + │ expected_pk_commitment │ expected_message_commitment │ ◄── ALL INPUTS (no outputs) + └───────────────────────────┴──────────────────────────────┘ + +C6 ThresholdShareDecryption: + ┌───────────────────────────┬──────────────────────────────┬──────────────────┐ + │ expected_sk_commitment │ expected_e_sm_commitment │ d_commitment │ + └───────────────────────────┴──────────────────────────────┴──────────────────┘ + INPUT (HEAD) INPUT (HEAD) OUTPUT (TAIL) + +C5 PkAggregation: + ┌─────────────────────────────────────────────────┬──────────────────┐ + │ pk_commitments[0] ... pk_commitments[H-1] │ commitment │ + └─────────────────────────────────────────────────┴──────────────────┘ + H INPUT FIELDS (HEAD) OUTPUT (TAIL) +``` + +--- + +## PHASE 1: BFV Key Exchange + +### Step 1.1: Node Selected + +``` +CiphernodeSelected event + │ + ▼ +┌─────────────────────────────────────────────┐ +│ handle_ciphernode_selected() │ +│ keyshare/src/threshold_keyshare.rs:738 │ +├─────────────────────────────────────────────┤ +│ │ +│ Is state == Init? │ +│ │ │ +│ ├── NO ──► ignore event, return │ +│ │ │ +│ ▼ YES │ +│ Generate BFV keypair: │ +│ sk = SecretKey::random() (line 751) │ +│ pk = PublicKey::new(&sk) (line 752) │ +│ │ +│ Encrypt sk locally: │ +│ sk_bfv = SensitiveBytes (line 754) │ +│ │ +│ Publish EncryptionKeyPending │ +│ { pk_bfv bytes } (line 771) │ +│ │ +│ STATE: Init ──► CollectingEncryptionKeys │ +│ │ +│ FAILURE MODES: │ +│ • BFV key generation panics │ +│ → node crashes, doesn't participate │ +│ • Already past Init │ +│ → event silently ignored │ +└─────────────────────────────────────────────┘ +``` + +### Step 1.2: C0 Proof Generation + +``` +EncryptionKeyPending event + │ + ▼ +┌─────────────────────────────────────────────────┐ +│ ProofRequestActor │ +│ zk-prover/src/actors/proof_request.rs │ +├─────────────────────────────────────────────────┤ +│ │ +│ Build C0 proof request │ +│ Publish ComputeRequest::zk(PkBfv proof) │ +│ │ │ +│ ▼ │ +│ ZK multithread generates C0 proof │ +│ │ │ +│ ├── SUCCESS │ +│ │ Sign proof: SignedProofPayload │ +│ │ ProofType::C0PkBfv │ +│ │ Publish EncryptionKeyCreated │ +│ │ { pk, signed_c0_proof } │ +│ │ Also: DKGInnerProofReady │ +│ │ (for per-node recursive fold) │ +│ │ │ +│ └── FAILURE │ +│ Proof generation fails │ +│ → EncryptionKeyCreated published │ +│ WITHOUT C0 proof (proof=None) │ +│ → other nodes can still collect │ +│ the key but C0 verify will fail │ +└─────────────────────────────────────────────────┘ +``` + +### Step 1.3: Collecting Encryption Keys + +``` +EncryptionKeyCreated events arriving from all N nodes + │ + ▼ +┌──────────────────────────────────────────────────────────┐ +│ handle_encryption_key_created() │ +│ keyshare/src/threshold_keyshare.rs:606 │ +├──────────────────────────────────────────────────────────┤ +│ │ +│ Is sender expelled? │ +│ ├── YES ──► ignore, return │ +│ ▼ NO │ +│ │ +│ Add to EncryptionKeyCollector │ +│ │ │ +│ ├── Not all N keys yet ──► wait for more │ +│ │ │ +│ ▼ All N keys collected │ +│ Emit AllEncryptionKeysCollected │ +│ │ +│ CONCURRENT: C0 VERIFICATION (per key, separate actor) │ +│ ┌────────────────────────────────────────────────┐ │ +│ │ ProofVerificationActor │ │ +│ │ zk-prover/src/actors/proof_verification.rs:74 │ │ +│ │ │ │ +│ │ For each EncryptionKeyCreated with C0 proof: │ │ +│ │ │ │ │ +│ │ ├── ECDSA validation: │ │ +│ │ │ Recover address from signature │ │ +│ │ │ │ │ │ +│ │ │ ├── FAIL: bad signature │ │ +│ │ │ │ → SignedProofFailed │ │ +│ │ │ │ → ProofVerificationFailed │ │ +│ │ │ │ → AccusationManager triggered │ │ +│ │ │ │ │ │ +│ │ │ ▼ PASS │ │ +│ │ │ │ │ +│ │ ├── ZK verification (multithread): │ │ +│ │ │ │ │ │ +│ │ │ ├── FAIL: circuit violation │ │ +│ │ │ │ → SignedProofFailed │ │ +│ │ │ │ → ProofVerificationFailed │ │ +│ │ │ │ → AccusationManager triggered │ │ +│ │ │ │ │ │ +│ │ │ ▼ PASS │ │ +│ │ │ │ │ +│ │ ▼ │ │ +│ │ ProofVerificationPassed emitted │ │ +│ │ → CCC caches (address, C0PkBfv, signals) │ │ +│ │ → AccusationManager caches as passed │ │ +│ │ → Used later for C0→C3 link check │ │ +│ └────────────────────────────────────────────────┘ │ +│ │ +│ FAILURE MODES: │ +│ • Member expelled during collection │ +│ → removed from collector, threshold_n decremented │ +│ → if remaining < threshold needed → E3Failed │ +│ • Timeout (collector has deadline) │ +│ → EncryptionKeyCollectionFailed │ +│ → E3Failed published │ +│ • No C0 proof attached │ +│ → key still collected (C0 verify skipped) │ +│ → party may be flagged later by CCC │ +└──────────────────────────────────────────────────────────┘ +``` + +### Step 1.4: Transition to Share Generation + +``` +AllEncryptionKeysCollected + │ + ▼ +┌──────────────────────────────────────────────────────┐ +│ handle_all_encryption_keys_collected() │ +│ keyshare/src/threshold_keyshare.rs:784 │ +├──────────────────────────────────────────────────────┤ +│ │ +│ STATE: CollectingEncryptionKeys │ +│ ──► GeneratingThresholdShare │ +│ │ +│ Publish ComputeRequest::trbfv(GenPkShareAndSkSss) │ +│ Contains: │ +│ • All collected BFV public keys │ +│ • TrBFV config (threshold params) │ +│ • CRP seed for deterministic randomness │ +│ │ +│ FAILURE MODES: │ +│ • TrBFV computation fails │ +│ → ComputeRequestError │ +│ → node stuck in GeneratingThresholdShare │ +│ → eventually times out on-chain │ +└──────────────────────────────────────────────────────┘ +``` + +--- + +## PHASE 2: Share Computation & Proof Generation + +### Step 2.1: TrBFV Shares Generated + +``` +ComputeResponse(GenPkShareAndSkSss) + │ + ▼ +┌──────────────────────────────────────────────────────┐ +│ handle_gen_pk_share_and_sk_sss_response() │ +│ keyshare/src/threshold_keyshare.rs:877 │ +├──────────────────────────────────────────────────────┤ +│ │ +│ Extracts: │ +│ pk_share — this node's public key share │ +│ sk_sss — Shamir shares of secret key │ +│ (one share per recipient node) │ +│ esi_sss — Shamir shares of smudging noise │ +│ (per ESI index, per recipient) │ +│ │ +│ Stores locally (encrypted at rest) │ +│ │ +│ Triggers share encryption + proof generation │ +│ (see Step 2.2) │ +│ │ +│ FAILURE MODES: │ +│ • Response contains error │ +│ → node cannot proceed │ +│ → on-chain timeout will trigger E3Failed │ +└──────────────────────────────────────────────────────┘ +``` + +### Step 2.2: Encrypt Shares & Build Proof Requests + +``` +handle_shares_generated() +keyshare/src/threshold_keyshare.rs:1012 + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ │ +│ 1. Decrypt sk_sss and esi_sss from local storage (line 1055-1059) │ +│ │ +│ 2. For each recipient node j (j ≠ self): │ +│ Encrypt sk_share[j] using recipient's BFV public key │ +│ Encrypt esi_share[j][k] for each ESI index k │ +│ Capture encryption witnesses (u_rns, e0_rns, e1_rns) │ +│ (line 1078-1092) │ +│ │ +│ 3. Build proof requests: │ +│ │ +│ ┌─────────────────────────────────────────────────────────────┐ │ +│ │ PROOF REQUESTS CREATED │ │ +│ ├─────────────────────────────────────────────────────────────┤ │ +│ │ │ │ +│ │ C1: PkGenerationProofRequest × 1 │ │ +│ │ Proves: TrBFV key generation correct │ │ +│ │ Outputs: (sk_commitment, pk_commitment, e_sm_commitment)│ │ +│ │ │ │ +│ │ C2a: ShareComputationProofRequest(SecretKey) × 1 │ │ +│ │ Proves: Shamir SSS of secret key correct │ │ +│ │ Outputs: (key_hash, commitment) │ │ +│ │ │ │ +│ │ C2b: ShareComputationProofRequest(SmudgingNoise) × 1 │ │ +│ │ Proves: Shamir SSS of smudging noise correct │ │ +│ │ Outputs: (key_hash, commitment) │ │ +│ │ │ │ +│ │ C3a: ShareEncryptionProofRequest × L_sk*(N-1) │ │ +│ │ Proves: BFV encryption of SK share correct │ │ +│ │ Inputs: (expected_pk_commitment, expected_msg_commitment)│ │ +│ │ L_sk = num_moduli_sk, N-1 = other nodes │ │ +│ │ │ │ +│ │ C3b: ShareEncryptionProofRequest × L_esm*E*(N-1) │ +│ │ Proves: BFV encryption of ESM share correct │ │ +│ │ L_esm = num_moduli_esi, E = num_esi │ │ +│ │ Inputs: (expected_pk_commitment, expected_msg_commitment)│ │ +│ │ │ │ +│ │ TOTAL per node = 3 + L_sk*(N-1) + L_esm*E*(N-1) │ │ +│ └─────────────────────────────────────────────────────────────┘ │ +│ │ +│ 4. All requests sent to ProofRequestActor │ +│ → ComputeRequest::zk per proof │ +│ → ZK multithread generates each proof │ +│ → On completion: sign with ECDSA │ +│ → Bundle into ThresholdShareCreated event per recipient │ +│ │ +│ FAILURE MODES: │ +│ • Decryption of local shares fails │ +│ → node crashes or returns error │ +│ • BFV encryption fails for a recipient │ +│ → share not sent to that recipient │ +│ • ZK proof generation fails for any proof │ +│ → proof missing from ThresholdShareCreated │ +│ → recipient marks sender as incomplete (pre_dishonest) │ +└──────────────────────────────────────────────────────────────────────────┘ +``` + +### Step 2.3: ThresholdShareCreated Broadcast + +``` +┌──────────────────────────────────────────────────────────────┐ +│ ThresholdShareCreated event (one per recipient) │ +│ events/src/enclave_event/threshold_share_created.rs │ +├──────────────────────────────────────────────────────────────┤ +│ │ +│ Payload: │ +│ ┌────────────────────────────────────────────────────┐ │ +│ │ e3_id: E3id │ │ +│ │ share: Arc (encrypted share data) │ │ +│ │ target_party_id: u64 (recipient) │ │ +│ │ signed_c2a_proof: Option │ │ +│ │ signed_c2b_proof: Option │ │ +│ │ signed_c3a_proofs: Vec │ │ +│ │ signed_c3b_proofs: Vec │ │ +│ └────────────────────────────────────────────────────┘ │ +│ │ +│ Sent via P2P gossip to the recipient node │ +│ │ +│ CONCURRENT: Each proof is also wrapped + emitted as │ +│ DKGInnerProofReady for NodeProofAggregator folding │ +│ │ +└──────────────────────────────────────────────────────────────┘ +``` + +--- + +## PHASE 3: Share Collection & C2/C3 Verification + +### Step 3.1: Collecting All Shares + +``` +ThresholdShareCreated events from all (N-1) other nodes + │ + ▼ +┌──────────────────────────────────────────────────────────────┐ +│ ThresholdShareCollector │ +│ Collects until all N-1 shares received or timeout │ +├──────────────────────────────────────────────────────────────┤ +│ │ +│ For each arriving share: │ +│ Is sender expelled? ──YES──► ignore │ +│ Already received from sender? ──YES──► ignore │ +│ Add to collection │ +│ │ +│ When all (N-1) shares collected: │ +│ → AllThresholdSharesCollected │ +│ │ +│ FAILURE MODES: │ +│ • Timeout before all shares arrive │ +│ → ThresholdShareCollectionFailed │ +│ → E3Failed(InsufficientCommitteeMembers) │ +│ → ThresholdKeyshare actor stopped │ +│ │ +│ • Member expelled during collection │ +│ → removed from expected set │ +│ → if remaining collected = new expected → complete │ +│ → if too few remain → E3Failed │ +└──────────────────────────────────────────────────────────────┘ +``` + +### Step 3.2: Pre-Dishonest Classification + +``` +AllThresholdSharesCollected + │ + ▼ +┌──────────────────────────────────────────────────────────────┐ +│ handle_all_threshold_shares_collected() │ +│ keyshare/src/threshold_keyshare.rs:1225 │ +├──────────────────────────────────────────────────────────────┤ +│ │ +│ For each party's share, check proof completeness: │ +│ │ +│ ┌─────────────────────────────────────────────────────┐ │ +│ │ PROOF COMPLETENESS CHECK │ │ +│ │ │ │ +│ │ Has C2a proof? ──NO──► no_proof_parties │ │ +│ │ Has C2b proof? ──NO──► no_proof_parties │ │ +│ │ │ │ +│ │ C3a count == expected? │ │ +│ │ expected = own share's num_moduli_sk │ │ +│ │ ──NO──► incomplete_proof_parties │ │ +│ │ │ │ +│ │ C3b count == expected? │ │ +│ │ expected = own share's num_esi * num_moduli_esi │ │ +│ │ ──NO──► incomplete_proof_parties │ │ +│ └─────────────────────────────────────────────────────┘ │ +│ │ +│ pre_dishonest = no_proof_parties ∪ incomplete_proof_parties │ +│ │ +│ Are ALL parties pre_dishonest? (no proofs to verify at all) │ +│ │ │ +│ ├── YES: honest_count = N - |pre_dishonest| │ +│ │ honest_count > threshold_m? │ +│ │ ├── NO ──► E3Failed(InsufficientCommittee) │ +│ │ ▼ YES │ +│ │ Skip verification, go directly to │ +│ │ proceed_with_decryption_key_calculation() │ +│ │ │ +│ ▼ NO (some parties have proofs) │ +│ Dispatch C2/C3 verification (Step 3.3) │ +│ │ +└──────────────────────────────────────────────────────────────┘ +``` + +### Step 3.3: C2/C3 Verification (ShareVerificationActor) + +``` +ShareVerificationDispatched { kind: ShareProofs, share_proofs, pre_dishonest } + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ ShareVerificationActor::verify_proofs() │ +│ zk-prover/src/actors/share_verification.rs:269 │ +├──────────────────────────────────────────────────────────────────────────┤ +│ │ +│ FOR EACH party in share_proofs: │ +│ │ +│ ┌─────────────────────────────────────────────────────────────────┐ │ +│ │ Is party in pre_dishonest? │ │ +│ │ ├── YES ──► SKIP entirely (no ECDSA, no ZK) (line 290) │ │ +│ │ │ No events emitted. │ │ +│ │ │ Pre_dishonest parties have no proof payload │ │ +│ │ │ to build fault evidence from. │ │ +│ │ │ │ │ +│ │ ▼ NO │ │ +│ │ │ │ +│ │ ECDSA VALIDATION (inline, line 400-468): │ │ +│ │ ┌───────────────────────────────────────────────────────┐ │ │ +│ │ │ For each SignedProofPayload in party's proofs: │ │ │ +│ │ │ │ │ │ +│ │ │ 1. e3_id matches? ──NO──► ECDSA FAIL │ │ │ +│ │ │ 2. Signature recovery succeeds? │ │ │ +│ │ │ ──NO──► ECDSA FAIL │ │ │ +│ │ │ 3. All proofs from same address (signer consistency)?│ │ │ +│ │ │ ──NO──► ECDSA FAIL │ │ │ +│ │ │ 4. Circuit name matches ProofType? │ │ │ +│ │ │ ──NO──► ECDSA FAIL │ │ │ +│ │ │ │ │ │ +│ │ │ ECDSA FAIL: │ │ │ +│ │ │ → party added to ecdsa_dishonest │ │ │ +│ │ │ → emit_signed_proof_failed() called │ │ │ +│ │ │ → SignedProofFailed event │ │ │ +│ │ │ → ProofVerificationFailed event │ │ │ +│ │ │ → AccusationManager picks up PVF │ │ │ +│ │ │ │ │ │ +│ │ │ ECDSA PASS: │ │ │ +│ │ │ → party added to ecdsa_passed_parties │ │ │ +│ │ └───────────────────────────────────────────────────────┘ │ │ +│ └─────────────────────────────────────────────────────────────────┘ │ +│ │ +│ All parties ECDSA-failed? │ +│ ├── YES ──► all_dishonest = pre_dishonest ∪ ecdsa_dishonest │ +│ │ publish_complete() immediately │ +│ │ (no ZK needed) │ +│ │ │ +│ ▼ NO (at least one party passed ECDSA) │ +│ │ +│ Recover addresses for ECDSA-passed parties (line 307-314) │ +│ Compute proof hashes + cache public_signals (line 329-360) │ +│ │ +│ DISPATCH ZK VERIFICATION (multithread): │ +│ ComputeRequest::zk(VerifyShareProofs { ecdsa_passed_parties }) │ +│ → only ECDSA-passed parties are ZK-verified │ +│ → pre_dishonest and ecdsa_dishonest are NOT sent to ZK │ +│ │ +│ Store in self.pending: │ +│ PendingVerification { e3_id, kind, ec, ecdsa_dishonest, │ +│ pre_dishonest, dispatched_party_ids, party_addresses, │ +│ party_proof_hashes, party_public_signals, party_signed_proofs } │ +│ │ +│ FAILURE MODES: │ +│ • ComputeRequest publish fails │ +│ → all dispatched parties treated as dishonest │ +│ → publish_complete() with everyone dishonest │ +│ • ZK multithread crashes │ +│ → ComputeRequestError received │ +│ → all dispatched parties treated as dishonest │ +└──────────────────────────────────────────────────────────────────────────┘ +``` + +### Step 3.4: ZK Results Processing + +``` +ComputeResponse arrives with ZK results + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ handle_compute_response() │ +│ zk-prover/src/actors/share_verification.rs:471 │ +├──────────────────────────────────────────────────────────────────────────┤ +│ │ +│ Build all_dishonest = pre_dishonest ∪ ecdsa_dishonest │ +│ │ +│ CROSS-CHECK: every dispatched party must appear in results │ +│ Missing party? → add to all_dishonest (defense-in-depth) (line 507) │ +│ │ +│ FOR EACH ZK result: │ +│ │ +│ ┌──────────────────────────────────────────────────────────────────┐ │ +│ │ Party not in dispatched_party_ids? │ │ +│ │ → IGNORE (spurious result, defense-in-depth) (line 519) │ │ +│ │ │ │ +│ │ result.all_verified == false? (ZK FAILED) │ │ +│ │ │ │ │ +│ │ ▼ │ │ +│ │ Add to all_dishonest (line 530) │ │ +│ │ emit_signed_proof_failed() (line 538-544) │ │ +│ │ → SignedProofFailed event │ │ +│ │ → ProofVerificationFailed event │ │ +│ │ → AccusationManager picks up PVF │ │ +│ │ │ │ +│ │ result.all_verified == true? (ZK PASSED) │ │ +│ │ │ │ │ +│ │ ├── Party in all_dishonest already? │ │ +│ │ │ ├── YES → SUPPRESS ProofVerificationPassed (line 546)│ │ +│ │ │ │ Log warning (should be unreachable) │ │ +│ │ │ │ │ │ +│ │ │ ▼ NO │ │ +│ │ │ Emit ProofVerificationPassed per proof type (line 548) │ │ +│ │ │ → CCC caches for commitment link checks │ │ +│ │ │ → AccusationManager caches as passed │ │ +│ │ │ │ │ +│ └──────────────────────────────────────────────────────────────────┘ │ +│ │ +│ CACHE C4 SIGNALS (if kind == DecryptionProofs): │ +│ For each ZK-passed honest party: │ +│ c4_signals_cache[e3_id][party_id] = public_signals (line 597) │ +│ (used later by C4→C6 gate) │ +│ │ +│ EVICT C4 CACHE (if kind == ThresholdDecryptionProofs): │ +│ c4_signals_cache.remove(e3_id) (line 595) │ +│ (cache no longer needed after C6 verification) │ +│ │ +│ publish_complete(e3_id, kind, all_dishonest) │ +│ → ShareVerificationComplete event │ +│ │ +└──────────────────────────────────────────────────────────────────────────┘ +``` + +### Step 3.5: Post-Verification Threshold Check + +``` +ShareVerificationComplete { kind: ShareProofs, dishonest_parties } + │ + ▼ +┌──────────────────────────────────────────────────────────────┐ +│ handle_share_verification_complete(ShareProofs) │ +│ keyshare/src/threshold_keyshare.rs:1395 │ +├──────────────────────────────────────────────────────────────┤ +│ │ +│ honest_parties = all_parties - dishonest_parties │ +│ │ +│ honest_count > threshold_m? │ +│ │ │ +│ ├── NO ──► E3Failed(InsufficientCommitteeMembers) │ +│ │ Actor stops. │ +│ │ │ +│ ▼ YES │ +│ proceed_with_decryption_key_calculation() │ +│ (PHASE 4) │ +│ │ +└──────────────────────────────────────────────────────────────┘ +``` + +--- + +## PHASE 4: Decryption Key Computation & C4 Proofs + +### Step 4.1: Decrypt Received Shares & Validate Dimensions + +``` +proceed_with_decryption_key_calculation() +keyshare/src/threshold_keyshare.rs:1501 + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ │ +│ 1. Filter to honest parties only (line 1523-1531) │ +│ │ +│ 2. FOR EACH honest party's share: (line 1533-1561) │ +│ ┌──────────────────────────────────────────────────────────┐ │ +│ │ Validate dimensions against own share (trusted source): │ │ +│ │ ESI count matches? ──NO──► exclude party │ │ +│ │ SK moduli count? ──NO──► exclude party │ │ +│ │ ESM moduli count? ──NO──► exclude party │ │ +│ │ │ │ +│ │ On exclusion: │ │ +│ │ → log warning with party_id + mismatch details │ │ +│ │ → party removed from honest set │ │ +│ └──────────────────────────────────────────────────────────┘ │ +│ │ +│ 3. RE-CHECK THRESHOLD after exclusions (line 1638-1650) │ +│ remaining > threshold_m? │ +│ ├── NO ──► E3Failed(InsufficientCommitteeMembers) │ +│ ▼ YES │ +│ │ +│ 4. Collect ciphertexts for C4 proofs (line 1670-1699) │ +│ C4a: SK share ciphertexts from honest parties │ +│ C4b: ESM share ciphertexts per smudging noise index │ +│ │ +│ 5. Decrypt all shares using own BFV secret key (line 1702-1740) │ +│ │ +│ 6. Compute decryption key aggregation │ +│ ComputeRequest::trbfv(CalculateDecryptionKey) (line 1742) │ +│ │ +│ 7. Build C4 proof requests (line 1759-1784) │ +│ sk_request: DkgShareDecryptionProofRequest (for C4a) │ +│ esm_requests: Vec (for C4b) │ +│ │ +│ FAILURE MODES: │ +│ • All parties excluded by dimension check │ +│ → E3Failed │ +│ • BFV decryption fails │ +│ → error, node cannot continue │ +│ • Compute request fails │ +│ → ComputeRequestError, node stuck │ +└──────────────────────────────────────────────────────────────────────────┘ +``` + +### Step 4.2: C4 Proof Generation, Signing, Broadcast + +``` +DecryptionShareProofsPending + │ + ▼ +┌──────────────────────────────────────────────────────────────┐ +│ ProofRequestActor::handle_decryption_share_proofs_pending() │ +│ zk-prover/src/actors/proof_request.rs:550 │ +├──────────────────────────────────────────────────────────────┤ +│ │ +│ Generate C4a (SK decryption proof): │ +│ ComputeRequest::zk(DkgShareDecryption(sk_request)) │ +│ ProofType: C4aSkShareDecryption │ +│ Output: commitment (in public_signals tail) │ +│ │ +│ Generate C4b (ESM decryption proofs): │ +│ FOR EACH ESI index: │ +│ ComputeRequest::zk(DkgShareDecryption(esm_request[i])) │ +│ ProofType: C4bESmShareDecryption │ +│ │ +│ On all complete: │ +│ Sign each proof with ECDSA │ +│ Publish DecryptionKeyShared event: │ +│ { party_id, node, │ +│ signed_sk_decryption_proof, │ +│ signed_e_sm_decryption_proofs: Vec } │ +│ │ +│ Also: DKGInnerProofReady for recursive fold │ +│ │ +│ FAILURE MODES: │ +│ • Any ZK proof generation fails │ +│ → that proof missing from DecryptionKeyShared │ +│ → recipient marks sender's proof count wrong │ +│ → sender becomes pre_dishonest │ +│ • Signing fails │ +│ → same result │ +└──────────────────────────────────────────────────────────────┘ +``` + +### Step 4.3: C4 Collection & Verification + +``` +DecryptionKeyShared events from all honest parties + │ + ▼ +┌──────────────────────────────────────────────────────────────┐ +│ DecryptionKeySharedCollector │ +│ │ +│ Collect until all honest parties' C4 proofs received │ +│ │ │ +│ ├── Timeout ──► DecryptionKeySharedCollectionFailed │ +│ │ → E3Failed, actor stopped │ +│ │ │ +│ ▼ All collected │ +│ AllDecryptionKeySharesCollected │ +│ │ │ +│ ▼ │ +│ dispatch_c4_verification() │ +│ keyshare/src/threshold_keyshare.rs:1929 │ +│ │ │ +│ ▼ │ +│ PRE-VALIDATION (line 1944-1979): │ +│ For each party: │ +│ ESM proof count == expected? │ +│ ──NO──► pre_dishonest │ +│ │ +│ Still enough honest? ──NO──► E3Failed │ +│ │ +│ ShareVerificationDispatched { kind: DecryptionProofs } │ +│ → Same ECDSA + ZK flow as C2/C3 (Step 3.3-3.4) │ +│ → C4 public_signals cached on ZK pass (for C4→C6 gate) │ +│ │ +│ ShareVerificationComplete { kind: DecryptionProofs } │ +│ → Update honest set, threshold check │ +│ → Publish KeyshareCreated (Exchange #4) │ +│ { pk_share, signed_pk_generation_proof (C1) } │ +└──────────────────────────────────────────────────────────────┘ +``` + +--- + +## PHASE 5: Public Key Aggregation (Aggregator) + +### Step 5.1-5.7: Complete Aggregation Flow + +``` +KeyshareCreated events from all N nodes + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ PublicKeyAggregator │ +│ aggregator/src/publickey_aggregator.rs │ +├──────────────────────────────────────────────────────────────────────────┤ +│ │ +│ STATE: Collecting │ +│ │ +│ Collect KeyshareCreated { pk_share, C1 proof } from each node │ +│ Track insertion order → party_id mapping │ +│ │ +│ All N keyshares received? │ +│ ├── NO ──► wait (or member expelled → remove + re-check) │ +│ ▼ YES │ +│ │ +│ STATE: Collecting ──► VerifyingC1 │ +│ │ +│ Dispatch C1 verification: │ +│ ShareVerificationDispatched { kind: PkGenerationProofs } │ +│ → Same ECDSA + ZK flow │ +│ │ │ +│ ▼ │ +│ ShareVerificationComplete { kind: PkGenerationProofs } │ +│ │ │ +│ ▼ │ +│ handle_c1_verification_complete() (line 232) │ +│ │ +│ POST-C1 COMMITMENT CROSS-CHECK (line 271-309): │ +│ ┌──────────────────────────────────────────────────────────────────┐ │ +│ │ For each ZK-passed party: │ │ +│ │ 1. Compute pk_commitment from raw keyshare bytes │ │ +│ │ (hash the polynomial coefficients) │ │ +│ │ 2. Extract pk_commitment from C1 proof's public_signals │ │ +│ │ (field index 1 in PK_GENERATION_OUTPUTS) │ │ +│ │ 3. Compare: │ │ +│ │ MATCH → party stays honest │ │ +│ │ MISMATCH → add to dishonest_parties │ │ +│ │ emit SignedProofFailed │ │ +│ │ (keyshare doesn't match what C1 proves) │ │ +│ └──────────────────────────────────────────────────────────────────┘ │ +│ │ +│ Re-filter to honest entries after commitment check (line 341) │ +│ │ +│ honest_keyshares.len() > threshold_m? (line 361) │ +│ ├── NO ──► E3Failed │ +│ ▼ YES │ +│ │ +│ AGGREGATE PUBLIC KEY: │ +│ fhe.get_aggregate_public_key(honest_keyshares) (line 384) │ +│ │ +│ STATE: VerifyingC1 ──► GeneratingC5Proof │ +│ │ +│ Emit PkAggregationProofPending (triggers C5 proof gen) │ +│ │ +│ ┌──────────────────────────────────────────────────────────────────┐ │ +│ │ C5 PROOF + CROSS-NODE FOLD (concurrent) │ │ +│ │ │ │ +│ │ C5 Proof: │ │ +│ │ ProofRequestActor generates PkAggregation proof │ │ +│ │ Public signals: [pk_commitments[0..H], pk_agg_commitment] │ │ +│ │ Sign → PkAggregationProofSigned │ │ +│ │ │ │ +│ │ Cross-Node Fold: │ │ +│ │ Collect DKGRecursiveAggregationComplete from each honest party │ │ +│ │ Fold all per-node proofs into single cross-node proof │ │ +│ │ (or skip if proof aggregation disabled) │ │ +│ │ │ │ +│ │ BOTH MUST COMPLETE before publishing │ │ +│ └──────────────────────────────────────────────────────────────────┘ │ +│ │ +│ try_publish_complete() (line 639) │ +│ Preconditions: C5 signed AND fold done │ +│ │ +│ Publish PublicKeyAggregated: │ +│ { pubkey, nodes, pk_aggregation_proof, dkg_aggregated_proof } │ +│ │ +│ STATE: GeneratingC5Proof ──► Complete │ +│ │ +│ ON-CHAIN: EnclaveSolWriter publishes the aggregated PK │ +│ │ +└──────────────────────────────────────────────────────────────────────────┘ +``` + +--- + +## PHASE 6: Threshold Decryption (C6) + +``` +CiphertextOutputPublished (on-chain event, computation is done) + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ handle_ciphertext_output_published() │ +│ keyshare/src/threshold_keyshare.rs:2056 │ +├──────────────────────────────────────────────────────────────────────────┤ +│ │ +│ STATE: ReadyForDecryption ──► Decrypting │ +│ │ +│ Store ciphertext bytes │ +│ ComputeRequest::trbfv(CalculateDecryptionShare) │ +│ Uses: sk_poly_sum, es_poly_sum, ciphertexts │ +│ │ │ +│ ▼ │ +│ ComputeResponse → d_share_poly (decryption share polynomial) │ +│ │ │ +│ ▼ │ +│ STATE: Decrypting ──► GeneratingDecryptionProof │ +│ │ +│ Publish ShareDecryptionProofPending │ +│ → ProofRequestActor generates C6 proof │ +│ → ProofType: C6ThresholdShareDecryption │ +│ → Public inputs: expected_sk_commitment, expected_e_sm_commitment │ +│ → Public output: d_commitment │ +│ → Sign with ECDSA │ +│ │ │ +│ ▼ │ +│ Publish DecryptionshareCreated: │ +│ { party_id, decryption_share, signed_decryption_proofs, │ +│ wrapped_proofs (for cross-node fold) } │ +│ │ +│ FAILURE MODES: │ +│ • Not in ReadyForDecryption state │ +│ → event ignored (wrong lifecycle phase) │ +│ • Decryption share computation fails │ +│ → ComputeRequestError, node stuck │ +│ • C6 proof generation fails │ +│ → DecryptionshareCreated not published │ +│ → aggregator won't receive this node's share │ +│ → may still succeed if enough other shares │ +└──────────────────────────────────────────────────────────────────────────┘ +``` + +--- + +## PHASE 7: Plaintext Reconstruction (Aggregator) + +``` +DecryptionshareCreated events from all N nodes + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ ThresholdPlaintextAggregator │ +│ aggregator/src/threshold_plaintext_aggregator.rs │ +├──────────────────────────────────────────────────────────────────────────┤ +│ │ +│ STATE: Collecting │ +│ Collect shares + C6 proofs until all N received │ +│ │ +│ STATE: Collecting ──► VerifyingC6 │ +│ │ +│ ══════════════════════════════════════════════════════════════ │ +│ ║ C4→C6 GATE (PRE-VERIFICATION) ║ │ +│ ║ share_verification.rs:164-225 ║ │ +│ ║ ║ │ +│ ║ Before dispatching ZK, for EACH party: ║ │ +│ ║ ║ │ +│ ║ Has cached C4 signals for this party? ║ │ +│ ║ │ ║ │ +│ ║ ├── NO ──► skip gate, ZK will still verify ║ │ +│ ║ │ (no cached data = can't compare) ║ │ +│ ║ │ ║ │ +│ ║ ▼ YES ║ │ +│ ║ ║ │ +│ ║ Is party already pre_dishonest? ║ │ +│ ║ ├── YES ──► skip (already flagged) ║ │ +│ ║ ▼ NO ║ │ +│ ║ ║ │ +│ ║ Check C4a→C6: sk_commitment ║ │ +│ ║ Extract sk_commitment from C4a public_signals ║ │ +│ ║ Extract expected_sk_commitment from C6 public_signals ║ │ +│ ║ Match? ──NO──► mismatch = true ║ │ +│ ║ ║ │ +│ ║ Check C4b→C6: e_sm_commitment ║ │ +│ ║ Extract e_sm_commitment from C4b public_signals ║ │ +│ ║ Extract expected_e_sm_commitment from C6 pub signals ║ │ +│ ║ Match? ──NO──► mismatch = true ║ │ +│ ║ ║ │ +│ ║ mismatch == true? ║ │ +│ ║ │ ║ │ +│ ║ ├── YES: ║ │ +│ ║ │ pre_dishonest.insert(party_id) ║ │ +│ ║ │ emit_signed_proof_failed() ║ │ +│ ║ │ → SignedProofFailed ║ │ +│ ║ │ → ProofVerificationFailed ║ │ +│ ║ │ → AccusationManager triggered ║ │ +│ ║ │ ║ │ +│ ║ ▼ NO: party passes gate ║ │ +│ ║ ║ │ +│ ══════════════════════════════════════════════════════════════ │ +│ │ +│ ShareVerificationDispatched { kind: ThresholdDecryptionProofs } │ +│ → pre_dishonest parties skip ECDSA + ZK entirely │ +│ → Same ECDSA + ZK flow for remaining parties │ +│ → c4_signals_cache EVICTED after verification (line 595) │ +│ │ │ +│ ▼ │ +│ ShareVerificationComplete { kind: ThresholdDecryptionProofs } │ +│ │ │ +│ ▼ │ +│ handle_c6_verification_complete() (line 292) │ +│ │ +│ Filter to honest shares only (line 323-328) │ +│ honest_shares.len() > threshold_m? (line 330-335) │ +│ ├── NO ──► error (cannot compute plaintext) │ +│ ▼ YES │ +│ │ +│ STATE: VerifyingC6 ──► Computing │ +│ │ +│ ComputeRequest::trbfv(CalculateThresholdDecryption) │ +│ Uses only honest shares │ +│ │ │ +│ ▼ │ +│ ComputeResponse → plaintext │ +│ │ +│ STATE: Computing ──► GeneratingC7Proof │ +│ │ +│ C7 proof generation (ProofRequestActor) │ +│ Proves: correct plaintext reconstruction │ +│ │ │ +│ ▼ │ +│ try_publish_complete() (line 536) │ +│ Preconditions: C7 proofs ready AND C6 fold done │ +│ │ │ +│ ▼ │ +│ PlaintextAggregated event: │ +│ { decrypted_output, aggregation_proofs (C7), │ +│ c6_aggregated_proof (cross-node fold) } │ +│ │ │ +│ ▼ │ +│ EnclaveSolWriter → publishPlaintextOutput() on-chain │ +│ │ +│ STATE: GeneratingC7Proof ──► Complete │ +│ │ +└──────────────────────────────────────────────────────────────────────────┘ +``` + +--- + +## ACCUSATION & SLASHING FLOW + +``` +ProofVerificationFailed event +(emitted by ShareVerificationActor or ProofVerificationActor) + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ AccusationManager::on_local_proof_failure() │ +│ zk-prover/src/actors/accusation_manager.rs:314 │ +├──────────────────────────────────────────────────────────────────────────┤ +│ │ +│ 1. Resolve accused address (from event or committee lookup) │ +│ 2. Cache in received_data[(accused, proof_type)] = { hash, failed } │ +│ 3. Already accused for (accused, proof_type)? ──YES──► return (dedup) │ +│ 4. Create ProofFailureAccusation: │ +│ accusation_id = keccak256(chainId, e3_id, accused, proof_type) │ +│ Sign with ECDSA (matches Solidity typehash) │ +│ 5. Broadcast via P2P gossip │ +│ 6. Cast own vote: agrees=true, signed │ +│ 7. Start 300s timeout │ +│ 8. check_quorum() immediately (in case threshold_m == 1) │ +│ │ +└──────────────────────────┬───────────────────────────────────────────────┘ + │ + P2P gossip to other committee members + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ AccusationManager::on_accusation_received() │ +│ zk-prover/src/actors/accusation_manager.rs:435 │ +├──────────────────────────────────────────────────────────────────────────┤ +│ │ +│ Verify accuser is committee member ──FAIL──► ignore │ +│ Verify accused is committee member ──FAIL──► ignore │ +│ Is it my own accusation? ──YES──► ignore (already voted) │ +│ Verify ECDSA signature on accusation ──FAIL──► ignore │ +│ Already pending for this accusation_id? ──YES──► ignore (dedup) │ +│ │ +│ DETERMINE VOTE: │ +│ ┌──────────────────────────────────────────────────────────────────┐ │ +│ │ │ │ +│ │ Have local cache for (accused, proof_type)? │ │ +│ │ │ │ │ +│ │ ├── YES, verification_passed == false │ │ +│ │ │ → vote agrees=true (our verification also failed) │ │ +│ │ │ │ │ +│ │ ├── YES, verification_passed == true │ │ +│ │ │ → vote agrees=false (our verification passed) │ │ +│ │ │ │ │ +│ │ └── NO (cache miss): │ │ +│ │ │ │ │ +│ │ ├── proof_type is C3a/C3b AND forwarded payload present │ │ +│ │ │ → validate forwarded ECDSA │ │ +│ │ │ ├── INVALID → abstain (return, no vote) │ │ +│ │ │ ▼ VALID │ │ +│ │ │ → dispatch async ZK re-verification │ │ +│ │ │ → DEFER vote (cast after ZK completes) │ │ +│ │ │ → on ZK result: agrees = !zk_passed │ │ +│ │ │ │ │ +│ │ └── other proof type, no forwarded payload │ │ +│ │ → ABSTAIN (return without voting) │ │ +│ │ │ │ +│ └──────────────────────────────────────────────────────────────────┘ │ +│ │ +│ Sign vote with ECDSA, broadcast via P2P │ +│ check_quorum() │ +│ │ +└──────────────────────────────────────────────────────────────────────────┘ + + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ check_quorum() │ +│ zk-prover/src/actors/accusation_manager.rs:740 │ +├──────────────────────────────────────────────────────────────────────────┤ +│ │ +│ agree_count >= threshold_m? │ +│ │ │ +│ ├── YES: │ +│ │ All agreeing voters saw same data_hash? │ +│ │ ├── YES → AccusedFaulted (SLASHABLE) │ +│ │ └── NO → Equivocation (SLASHABLE) │ +│ │ → emit AccusationQuorumReached immediately │ +│ │ │ +│ └── NO: │ +│ Can quorum still be reached (with remaining voters)? │ +│ ├── YES → wait for more votes │ +│ └── NO → resolve: │ +│ Multiple data_hashes across votes? │ +│ ├── YES → Equivocation (SLASHABLE) │ +│ └── NO → │ +│ Only accuser says bad, others say good? │ +│ ├── YES → AccuserLied (NOT slashable) │ +│ └── NO → Inconclusive (NOT slashable) │ +│ │ +│ ON TIMEOUT (300s, line 830-886): │ +│ Same resolution logic as "cannot reach quorum" │ +│ │ +└──────────────────────────────────────────────────────────────────────────┘ + │ + ▼ (only if SLASHABLE) +┌──────────────────────────────────────────────────────────────────────────┐ +│ SlashingManagerSolWriter │ +│ evm/src/slashing_manager_sol_writer.rs:91 │ +├──────────────────────────────────────────────────────────────────────────┤ +│ │ +│ AccusationQuorumReached { outcome = AccusedFaulted | Equivocation } │ +│ │ +│ Sort agreeing voters by address (ascending) │ +│ Am I in the top 3? │ +│ ├── NO ──► don't submit (leave to others) │ +│ ▼ YES │ +│ │ +│ Staggered submission (prevent wasted gas): │ +│ Rank 0 (lowest address): submit immediately │ +│ Rank 1: wait 30s, then submit │ +│ Rank 2: wait 60s, then submit │ +│ │ +│ On-chain: SlashingManager.proposeSlash(e3_id, operator, evidence) │ +│ Evidence = abi.encode(proofType, voters[], agrees[], hashes[], sigs[])│ +│ │ +│ Contract verifies: │ +│ • Array lengths match │ +│ • numVotes >= threshold_m │ +│ • Each voter: ascending order, no self-vote, active member │ +│ • Each ECDSA signature valid (matches Solidity typehash) │ +│ • Replay protection (no double-slash) │ +│ → ATOMIC EXECUTION: slash ticket + license + expel from committee │ +│ │ +└──────────────────────────────────────────────────────────────────────────┘ +``` + +--- + +## MEMBER EXPULSION (at any phase) + +``` +SlashExecuted event (on-chain slash confirmed) + │ + ▼ +┌──────────────────────────────────────────────────────────────────────────┐ +│ CommitteeMemberExpelled event emitted │ +│ Received by ALL actors simultaneously │ +├──────────────────────────────────────────────────────────────────────────┤ +│ │ +│ ThresholdKeyshare::handle_committee_member_expelled() │ +│ keyshare/src/threshold_keyshare.rs:519 │ +│ 1. Add to expelled_parties set │ +│ 2. Remove from honest_parties │ +│ 3. Remove from all collectors: │ +│ • EncryptionKeyCollector │ +│ • ThresholdShareCollector │ +│ • DecryptionKeySharedCollector │ +│ 4. If collector now considers "all collected" │ +│ → triggers next phase transition │ +│ 5. If threshold can't be met → E3Failed │ +│ │ +│ PublicKeyAggregator::handle_member_expelled() │ +│ aggregator/src/publickey_aggregator.rs:777 │ +│ 1. Remove keyshare and C1 proof │ +│ 2. Decrement threshold_n │ +│ 3. If in Collecting and now "all received" │ +│ → transition to VerifyingC1 │ +│ 4. If threshold can't be met → E3Failed │ +│ │ +│ AccusationManager: │ +│ 1. Purge votes from expelled member │ +│ 2. Remove from committee list │ +│ 3. Re-check pending quorums │ +│ │ +└──────────────────────────────────────────────────────────────────────────┘ +``` + +--- + +## ON-CHAIN TIMEOUTS + +``` +┌──────────────────────────────────────────────────────────────────────────┐ +│ TIMEOUT DEADLINES │ +├──────────────────────┬───────────────────────┬───────────────────────────┤ +│ Phase │ Deadline │ On Expiry │ +├──────────────────────┼───────────────────────┼───────────────────────────┤ +│ Committee Formation │ committeeDeadline │ markE3Failed() callable │ +│ (Requested→Finalized)│ │ → E3Failed │ +│ │ │ → Requester refunded │ +├──────────────────────┼───────────────────────┼───────────────────────────┤ +│ DKG │ dkgDeadline │ markE3Failed() callable │ +│ (Finalized→KeyPub) │ │ → E3Failed │ +│ │ │ → Partial refund │ +├──────────────────────┼───────────────────────┼───────────────────────────┤ +│ Computation │ computeDeadline │ markE3Failed() callable │ +│ (KeyPub→Ciphertext) │ │ → E3Failed │ +│ │ │ → Partial refund │ +├──────────────────────┼───────────────────────┼───────────────────────────┤ +│ Decryption │ decryptionDeadline │ markE3Failed() callable │ +│ (Ciphertext→Complete)│ │ → E3Failed │ +│ │ │ → Partial refund │ +└──────────────────────┴───────────────────────┴───────────────────────────┘ + +Anyone can call markE3Failed() after a deadline expires. +On failure: slashed funds go to E3RefundManager. +On success: fees split between CN rewards and protocol treasury. +``` + +--- + +## COMPLETE FAILURE CATALOG + +``` +┌──────────────────────────────────────────────────────────────────────────┐ +│ # │ WHERE │ WHAT │ CONSEQUENCE │ +├────┼──────────────────────────┼───────────────────────┼───────────────────┤ +│ 1 │ Step 1.1 │ BFV keygen fails │ Node can't join │ +│ 2 │ Step 1.3 │ Key collection timeout│ E3Failed │ +│ 3 │ Step 1.3 │ C0 ECDSA fails │ Accusation │ +│ 4 │ Step 1.3 │ C0 ZK fails │ Accusation │ +│ 5 │ Step 1.3 │ Member expelled │ Recheck threshold │ +│ 6 │ Step 1.4 │ TrBFV compute fails │ Node stuck │ +│ 7 │ Step 2.2 │ BFV encryption fails │ Missing share │ +│ 8 │ Step 2.2 │ ZK proof gen fails │ Incomplete proofs │ +│ 9 │ Step 3.1 │ Share collect timeout │ E3Failed │ +│ 10 │ Step 3.1 │ Member expelled │ Recheck threshold │ +│ 11 │ Step 3.2 │ No proofs from party │ pre_dishonest │ +│ 12 │ Step 3.2 │ Wrong proof count │ pre_dishonest │ +│ 13 │ Step 3.2 │ All pre_dishonest │ Skip to threshold │ +│ 14 │ Step 3.3 │ ECDSA e3_id mismatch │ ecdsa_dishonest │ +│ 15 │ Step 3.3 │ ECDSA sig invalid │ ecdsa_dishonest │ +│ 16 │ Step 3.3 │ ECDSA signer mismatch │ ecdsa_dishonest │ +│ 17 │ Step 3.3 │ Circuit name wrong │ ecdsa_dishonest │ +│ 18 │ Step 3.3 │ All ECDSA fail │ Skip ZK │ +│ 19 │ Step 3.3 │ ZK dispatch fails │ All dishonest │ +│ 20 │ Step 3.4 │ ZK verification fails │ Accusation │ +│ 21 │ Step 3.4 │ Missing from ZK result│ Treated dishonest │ +│ 22 │ Step 3.5 │ honest ≤ threshold_m │ E3Failed │ +│ 23 │ Step 4.1 │ Dimension mismatch │ Party excluded │ +│ 24 │ Step 4.1 │ All excluded by dims │ E3Failed │ +│ 25 │ Step 4.1 │ BFV decryption fails │ Node stuck │ +│ 26 │ Step 4.2 │ C4 proof gen fails │ Missing proofs │ +│ 27 │ Step 4.3 │ C4 collect timeout │ E3Failed │ +│ 28 │ Step 4.3 │ Wrong ESM proof count │ pre_dishonest │ +│ 29 │ Step 4.3 │ C4 ECDSA/ZK fails │ Accusation │ +│ 30 │ Step 4.3 │ honest ≤ threshold │ E3Failed │ +│ 31 │ Step 5.1-5.7 │ C1 ZK fails │ Accusation │ +│ 32 │ Step 5.1-5.7 │ C1 commitment≠keyshare│ Party excluded │ +│ 33 │ Step 5.1-5.7 │ Too few honest for agg│ E3Failed │ +│ 34 │ Step 5.1-5.7 │ C5 proof gen fails │ PK not published │ +│ 35 │ Step 5.1-5.7 │ Cross-node fold fails │ PK not published │ +│ 36 │ Phase 6 │ Not in ReadyForDecrypt│ Event ignored │ +│ 37 │ Phase 6 │ Decrypt share fails │ Node stuck │ +│ 38 │ Phase 6 │ C6 proof gen fails │ Share not sent │ +│ 39 │ Phase 7 │ C4→C6 gate mismatch │ Accusation │ +│ 40 │ Phase 7 │ C6 ECDSA/ZK fails │ Accusation │ +│ 41 │ Phase 7 │ Too few honest decrypt│ Cannot compute │ +│ 42 │ Phase 7 │ C7 proof gen fails │ Not published │ +│ 43 │ Phase 7 │ C6 fold fails │ Not published │ +│ 44 │ Any phase │ On-chain timeout │ markE3Failed() │ +│ 45 │ Any phase │ Member expelled │ Recheck threshold │ +└────┴──────────────────────────┴───────────────────────┴───────────────────┘ +``` diff --git a/crates/aggregator/src/ext.rs b/crates/aggregator/src/ext.rs index fd2b9cfbaa..7204022a19 100644 --- a/crates/aggregator/src/ext.rs +++ b/crates/aggregator/src/ext.rs @@ -27,15 +27,11 @@ use e3_sortition::Sortition; pub struct PublicKeyAggregatorExtension { bus: BusHandle, - params_preset: BfvPreset, } impl PublicKeyAggregatorExtension { - pub fn create(bus: &BusHandle, params_preset: BfvPreset) -> Box { - Box::new(Self { - bus: bus.clone(), - params_preset, - }) + pub fn create(bus: &BusHandle) -> Box { + Box::new(Self { bus: bus.clone() }) } } @@ -66,6 +62,7 @@ impl E3Extension for PublicKeyAggregatorExtension { threshold_n, threshold_m, seed, + params_preset, .. } = data.clone(); let repo = ctx.repositories().publickey(&e3_id); @@ -80,7 +77,7 @@ impl E3Extension for PublicKeyAggregatorExtension { self.bus.clone(), e3_id, sync_state, - self.params_preset.clone(), + params_preset, ); ctx.set_event_recipient("publickey", Some(value)); @@ -109,12 +106,16 @@ impl E3Extension for PublicKeyAggregatorExtension { return Ok(()); }; + let params_preset = ctx + .get_dependency(META_KEY) + .map(|meta| meta.params_preset) + .unwrap_or_default(); let value = create_publickey_aggregator( fhe.clone(), self.bus.clone(), ctx.e3_id.clone(), sync_state, - self.params_preset.clone(), + params_preset, ); // send to context @@ -151,19 +152,13 @@ fn create_publickey_aggregator( pub struct ThresholdPlaintextAggregatorExtension { bus: BusHandle, sortition: Addr, - params_preset: BfvPreset, } impl ThresholdPlaintextAggregatorExtension { - pub fn create( - bus: &BusHandle, - sortition: &Addr, - params_preset: BfvPreset, - ) -> Box { + pub fn create(bus: &BusHandle, sortition: &Addr) -> Box { Box::new(Self { bus: bus.clone(), sortition: sortition.clone(), - params_preset, }) } } @@ -213,7 +208,7 @@ impl E3Extension for ThresholdPlaintextAggregatorExtension { bus: self.bus.clone(), sortition: self.sortition.clone(), e3_id: e3_id.clone(), - params_preset: self.params_preset.clone(), + params_preset: meta.params_preset, }, sync_state, ) @@ -239,12 +234,16 @@ impl E3Extension for ThresholdPlaintextAggregatorExtension { return Ok(()); }; + let params_preset = ctx + .get_dependency(META_KEY) + .map(|meta| meta.params_preset) + .unwrap_or_default(); let value = ThresholdPlaintextAggregator::new( ThresholdPlaintextAggregatorParams { bus: self.bus.clone(), sortition: self.sortition.clone(), e3_id: ctx.e3_id.clone(), - params_preset: self.params_preset.clone(), + params_preset, }, sync_state, ) diff --git a/crates/ciphernode-builder/src/ciphernode_builder.rs b/crates/ciphernode-builder/src/ciphernode_builder.rs index 054965d17c..00c2b88008 100644 --- a/crates/ciphernode-builder/src/ciphernode_builder.rs +++ b/crates/ciphernode-builder/src/ciphernode_builder.rs @@ -23,7 +23,6 @@ use e3_evm::{ SlashingManagerSolWriter, }; use e3_fhe::ext::FheExtension; -use e3_fhe_params::{BfvPreset, DEFAULT_BFV_PRESET}; use e3_keyshare::ext::ThresholdKeyshareExtension; use e3_multithread::{Multithread, MultithreadReport, TaskPool}; use e3_net::{ @@ -466,11 +465,6 @@ impl CiphernodeBuilder { if let Some(KeyshareKind::Threshold) = self.keyshare { let _ = self.ensure_multithread(&bus); - // TODO: Make BfvPreset configurable via builder method (e.g., with_share_enc_preset()) - // Currently hardcoded to InsecureDkg512 for DKG operations. - // Production deployments should use BfvPreset::SecureDkg8192. - let share_enc_preset = BfvPreset::InsecureDkg512; - let backend = self .zk_backend .as_ref() @@ -486,7 +480,6 @@ impl CiphernodeBuilder { &bus, &self.cipher, &addr, - share_enc_preset, )); info!("Setting up ZK actors"); @@ -502,14 +495,7 @@ impl CiphernodeBuilder { info!("Setting up PublicKeyAggregationExtension"); // Ensure multithread worker is available for C1 verification and C5 proof generation let _ = self.ensure_multithread(&bus); - // TODO: Make BfvPreset configurable via builder method. - // Currently hardcoded to InsecureThreshold512 for C5 proof generation. - // Production deployments should use the appropriate threshold preset. - let aggregator_preset = DEFAULT_BFV_PRESET; - e3_builder = e3_builder.with(PublicKeyAggregatorExtension::create( - &bus, - aggregator_preset, - )); + e3_builder = e3_builder.with(PublicKeyAggregatorExtension::create(&bus)); if self.keyshare.is_none() { let backend = self @@ -525,11 +511,8 @@ impl CiphernodeBuilder { if self.threshold_plaintext_agg { info!("Setting up ThresholdPlaintextAggregatorExtension"); let _ = self.ensure_multithread(&bus); - let aggregator_preset = DEFAULT_BFV_PRESET; e3_builder = e3_builder.with(ThresholdPlaintextAggregatorExtension::create( - &bus, - &sortition, - aggregator_preset, + &bus, &sortition, )) } diff --git a/crates/events/src/enclave_event/ciphernode_selected.rs b/crates/events/src/enclave_event/ciphernode_selected.rs index d5b21c4e21..1ee333451f 100644 --- a/crates/events/src/enclave_event/ciphernode_selected.rs +++ b/crates/events/src/enclave_event/ciphernode_selected.rs @@ -6,6 +6,7 @@ use crate::{E3id, Seed}; use actix::Message; +use e3_fhe_params::BfvPreset; use e3_utils::utility_types::ArcBytes; use serde::{Deserialize, Serialize}; use std::fmt::{self, Display}; @@ -19,6 +20,7 @@ pub struct CiphernodeSelected { pub seed: Seed, pub error_size: ArcBytes, pub esi_per_ct: usize, + pub params_preset: BfvPreset, pub params: ArcBytes, pub party_id: u64, } @@ -29,6 +31,7 @@ impl Default for CiphernodeSelected { e3_id: E3id::new("0", 0), error_size: ArcBytes::from_bytes(&[]), esi_per_ct: 0, + params_preset: BfvPreset::InsecureThreshold512, params: ArcBytes::from_bytes(&[]), party_id: 0, seed: Seed([0u8; 32]), diff --git a/crates/events/src/enclave_event/e3_requested.rs b/crates/events/src/enclave_event/e3_requested.rs index 9d1d471033..83b830ebe7 100644 --- a/crates/events/src/enclave_event/e3_requested.rs +++ b/crates/events/src/enclave_event/e3_requested.rs @@ -6,6 +6,7 @@ use crate::{E3id, Seed}; use actix::Message; +use e3_fhe_params::BfvPreset; use e3_utils::utility_types::ArcBytes; use serde::{Deserialize, Serialize}; use std::fmt::{self, Display}; @@ -26,7 +27,11 @@ pub struct E3Requested { pub error_size: ArcBytes, /// The number of smudging noise per ciphertext. pub esi_per_ct: usize, - /// The FHE parameters + /// The threshold BFV preset selected on-chain. The DKG counterpart is + /// derived automatically via `BfvPreset::dkg_counterpart()`. + pub params_preset: BfvPreset, + /// ABI-encoded BFV parameters (derived from `params_preset`). + /// Kept for downstream code that needs the raw bytes (e.g. `TrBFVConfig`). pub params: ArcBytes, /// When true, ciphernodes generate wrapper/fold proofs for DKG proof /// aggregation (public verifiability). When false, wrapper/fold proofs @@ -45,6 +50,7 @@ impl Default for E3Requested { e3_id: E3id::new("99", 0), error_size: ArcBytes::from_bytes(&[]), esi_per_ct: 0, + params_preset: BfvPreset::InsecureThreshold512, params: ArcBytes::from_bytes(&[]), seed: Seed([0u8; 32]), threshold_m: 0, diff --git a/crates/evm/src/enclave_sol_reader.rs b/crates/evm/src/enclave_sol_reader.rs index 78b0018bf5..b999276904 100644 --- a/crates/evm/src/enclave_sol_reader.rs +++ b/crates/evm/src/enclave_sol_reader.rs @@ -12,7 +12,7 @@ use alloy::{sol, sol_types::SolEvent}; use e3_events::E3id; use e3_events::EnclaveEventData; use e3_events::{E3Failed, E3Stage, E3StageChanged, FailureReason}; -use e3_fhe_params::decode_bfv_params_arc; +use e3_fhe_params::{encode_bfv_params, BfvParamSet, BfvPreset}; use e3_trbfv::helpers::calculate_error_size; use e3_utils::ArcBytes; use e3_zk_helpers::CiphernodesCommitteeSize; @@ -29,8 +29,6 @@ struct E3RequestedWithChainId(pub IEnclave::E3Requested, pub u64); impl E3RequestedWithChainId { fn try_into_e3_requested(self) -> anyhow::Result { - let params_bytes = self.0.e3.e3ProgramParams.to_vec(); - // Derive threshold values from committee size enum let committee_size = match self.0.e3.committeeSize { 0 => CiphernodesCommitteeSize::Micro, @@ -43,7 +41,16 @@ impl E3RequestedWithChainId { let threshold_m = committee.threshold; let threshold_n = committee.n; - let params_arc = decode_bfv_params_arc(¶ms_bytes).expect("Failed to decode BFV params"); + // Map on-chain ParamSet enum to BfvPreset + let param_set_value: u8 = self.0.e3.paramSet.try_into().map_err(|_| { + anyhow::anyhow!("ParamSet enum value too large: {}", self.0.e3.paramSet) + })?; + let params_preset = BfvPreset::from_on_chain_param_set(param_set_value) + .ok_or_else(|| anyhow::anyhow!("Unknown ParamSet enum value: {}", param_set_value))?; + + // Build BFV parameters from the preset + let params_arc = BfvParamSet::from(params_preset).build_arc(); + let params_bytes = encode_bfv_params(¶ms_arc); // TODO: These should be delivered from the e3_program contract // For now, using defaults that match the test configuration: @@ -52,12 +59,7 @@ impl E3RequestedWithChainId { let lambda = 2; let esi_per_ct = 3; - let error_size = match calculate_error_size( - params_arc.clone(), - threshold_n, - threshold_m, - lambda, - ) { + let error_size = match calculate_error_size(params_arc, threshold_n, threshold_m, lambda) { Ok(size) => { let size_bytes = size.to_bytes_be(); info!( @@ -79,6 +81,7 @@ impl E3RequestedWithChainId { }; Ok(e3_events::E3Requested { + params_preset, params: ArcBytes::from_bytes(¶ms_bytes), threshold_m, threshold_n, diff --git a/crates/fhe-params/src/presets.rs b/crates/fhe-params/src/presets.rs index 54f2e7b7d6..6bc3ec1ed4 100644 --- a/crates/fhe-params/src/presets.rs +++ b/crates/fhe-params/src/presets.rs @@ -58,6 +58,18 @@ pub enum BfvPreset { SecureDkg8192, } +impl BfvPreset { + /// Convert an on-chain `ParamSet` enum value (uint8) to the corresponding + /// threshold `BfvPreset`. Returns `None` for unknown values. + pub fn from_on_chain_param_set(value: u8) -> Option { + match value { + 0 => Some(BfvPreset::InsecureThreshold512), + 1 => Some(BfvPreset::SecureThreshold8192), + _ => None, + } + } +} + /// Default BFV preset used across the workspace. /// /// This is the canonical preset for production (secure threshold 8192). diff --git a/crates/keyshare/src/ext.rs b/crates/keyshare/src/ext.rs index 4446f8203b..e22a85d42c 100644 --- a/crates/keyshare/src/ext.rs +++ b/crates/keyshare/src/ext.rs @@ -23,21 +23,14 @@ pub struct ThresholdKeyshareExtension { bus: BusHandle, cipher: Arc, address: String, - share_enc_preset: BfvPreset, } impl ThresholdKeyshareExtension { - pub fn create( - bus: &BusHandle, - cipher: &Arc, - address: &str, - share_enc_preset: BfvPreset, - ) -> Box { + pub fn create(bus: &BusHandle, cipher: &Arc, address: &str) -> Box { Box::new(Self { bus: bus.clone(), cipher: cipher.to_owned(), address: address.to_owned(), - share_enc_preset, }) } } @@ -84,7 +77,10 @@ impl E3Extension for ThresholdKeyshareExtension { bus: self.bus.clone(), cipher: self.cipher.clone(), state: container, - share_enc_preset: self.share_enc_preset, + share_enc_preset: meta + .params_preset + .dkg_counterpart() + .unwrap_or(meta.params_preset), }) .start() .into(), @@ -109,12 +105,18 @@ impl E3Extension for ThresholdKeyshareExtension { return Ok(()); }; + // Derive DKG preset from persisted E3Meta + let share_enc_preset = ctx + .get_dependency(META_KEY) + .and_then(|meta| meta.params_preset.dkg_counterpart()) + .unwrap_or(BfvPreset::InsecureThreshold512); + // Construct from snapshot let value = ThresholdKeyshare::new(ThresholdKeyshareParams { bus: self.bus.clone(), cipher: self.cipher.clone(), state, - share_enc_preset: self.share_enc_preset, + share_enc_preset, }) .start() .into(); diff --git a/crates/request/Cargo.toml b/crates/request/Cargo.toml index 440f66054a..422947311e 100644 --- a/crates/request/Cargo.toml +++ b/crates/request/Cargo.toml @@ -9,6 +9,7 @@ repository = "https://github.com/gnosisguild/enclave/crates/request" [dependencies] actix = { workspace = true } e3-events = { workspace = true } +e3-fhe-params = { workspace = true } e3-data = { workspace = true} e3-utils = { workspace = true} anyhow = { workspace = true } diff --git a/crates/request/src/meta.rs b/crates/request/src/meta.rs index adf3646ce0..3aef30ff09 100644 --- a/crates/request/src/meta.rs +++ b/crates/request/src/meta.rs @@ -9,6 +9,7 @@ use anyhow::*; use async_trait::async_trait; use e3_data::RepositoriesFactory; use e3_events::{E3Requested, EnclaveEvent, EnclaveEventData, Event, Seed}; +use e3_fhe_params::BfvPreset; use e3_utils::utility_types::ArcBytes; pub const META_KEY: TypedKey = TypedKey::new("meta"); @@ -18,6 +19,7 @@ pub struct E3Meta { pub threshold_m: usize, pub threshold_n: usize, pub seed: Seed, + pub params_preset: BfvPreset, pub params: ArcBytes, pub esi_per_ct: usize, pub error_size: ArcBytes, @@ -43,6 +45,7 @@ impl E3Extension for E3MetaExtension { threshold_n, seed, e3_id, + params_preset, params, esi_per_ct, error_size, @@ -55,6 +58,7 @@ impl E3Extension for E3MetaExtension { threshold_m, threshold_n, seed, + params_preset, params, esi_per_ct, error_size, diff --git a/crates/sortition/src/ciphernode_selector.rs b/crates/sortition/src/ciphernode_selector.rs index 3c2cf247dd..daa436a911 100644 --- a/crates/sortition/src/ciphernode_selector.rs +++ b/crates/sortition/src/ciphernode_selector.rs @@ -31,6 +31,7 @@ fn e3_meta_from(req: &E3Requested) -> E3Meta { seed: req.seed, threshold_n: req.threshold_n, threshold_m: req.threshold_m, + params_preset: req.params_preset, params: req.params.clone(), esi_per_ct: req.esi_per_ct, error_size: req.error_size.clone(), @@ -311,6 +312,7 @@ impl Handler> for CiphernodeSelector { threshold_n: e3_meta.threshold_n, esi_per_ct: e3_meta.esi_per_ct, error_size: e3_meta.error_size.clone(), + params_preset: e3_meta.params_preset, params: e3_meta.params.clone(), seed: e3_meta.seed, }, diff --git a/crates/tests/tests/integration.rs b/crates/tests/tests/integration.rs index 882fe101a3..8cdfd6c383 100644 --- a/crates/tests/tests/integration.rs +++ b/crates/tests/tests/integration.rs @@ -887,6 +887,7 @@ async fn test_trbfv_actor() -> Result<()> { seed: seed.clone(), error_size, esi_per_ct: esi_per_ct as usize, + params_preset: DEFAULT_BFV_PRESET, params, proof_aggregation_enabled, }; diff --git a/examples/CRISP/enclave.config.yaml b/examples/CRISP/enclave.config.yaml index 221ee71ca3..6d5d086065 100644 --- a/examples/CRISP/enclave.config.yaml +++ b/examples/CRISP/enclave.config.yaml @@ -3,23 +3,23 @@ chains: rpc_url: ws://localhost:8545 contracts: e3_program: - address: "0x36C02dA8a0983159322a80FFE9F24b1acfF8B570" - deploy_block: 33 + address: "0x4c5859f0F772848b2D91F1D83E2Fe57935348029" + deploy_block: 51 enclave: - address: "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e" - deploy_block: 15 + address: "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0" + deploy_block: 13 ciphernode_registry: - address: "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853" - deploy_block: 11 + address: "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6" + deploy_block: 9 bonding_registry: - address: "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318" - deploy_block: 12 - slashing_manager: - address: "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707" + address: "0x610178dA211FEF7D417bC0e6FeD39F05609AD788" deploy_block: 10 + slashing_manager: + address: "0x0165878A594ca255338adfa4d48449f69242Eb8F" + deploy_block: 8 fee_token: - address: "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512" - deploy_block: 6 + address: "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0" + deploy_block: 4 program: dev: true # risc0: diff --git a/examples/CRISP/packages/crisp-contracts/contracts/Mocks/MockEnclave.sol b/examples/CRISP/packages/crisp-contracts/contracts/Mocks/MockEnclave.sol index 8ca678f8e9..dbe342ee63 100644 --- a/examples/CRISP/packages/crisp-contracts/contracts/Mocks/MockEnclave.sol +++ b/examples/CRISP/packages/crisp-contracts/contracts/Mocks/MockEnclave.sol @@ -27,7 +27,7 @@ contract MockEnclave { inputWindow: [uint256(0), uint256(0)], encryptionSchemeId: bytes32(0), e3Program: IE3Program(address(0)), - e3ProgramParams: bytes(""), + paramSet: IEnclave.ParamSet.Insecure512, customParams: abi.encode(address(0), nextE3Id, 2, 0, 0), decryptionVerifier: IDecryptionVerifier(address(0)), pkVerifier: IPkVerifier(address(0)), @@ -64,7 +64,7 @@ contract MockEnclave { inputWindow: [uint256(0), block.timestamp + 100], encryptionSchemeId: bytes32(0), e3Program: IE3Program(address(0)), - e3ProgramParams: bytes(""), + paramSet: IEnclave.ParamSet.Insecure512, customParams: abi.encode(address(0), 0, 2, 0, 0), decryptionVerifier: IDecryptionVerifier(address(0)), pkVerifier: IPkVerifier(address(0)), diff --git a/examples/CRISP/packages/crisp-contracts/deployed_contracts.json b/examples/CRISP/packages/crisp-contracts/deployed_contracts.json index 998491cfd6..36cc43091f 100644 --- a/examples/CRISP/packages/crisp-contracts/deployed_contracts.json +++ b/examples/CRISP/packages/crisp-contracts/deployed_contracts.json @@ -1,7 +1,7 @@ { "sepolia": { "PoseidonT3": { - "blockNumber": 10395682, + "blockNumber": 10538633, "address": "0x3333333C0A88F9BE4fd23ed0536F9B6c427e3B93" }, "MockUSDC": { @@ -111,78 +111,78 @@ "address": "0xaa4d3F3d3482cbC51f013c7Eb1591BeD9e0187dc" }, "MockComputeProvider": { - "blockNumber": 10395672, - "address": "0x998749710fFB66F09565f6E9b213De2A682C0394" + "blockNumber": 10395623, + "address": "0x917961bF444FbaA90B3bd5A46097d7824823b805" }, "MockDecryptionVerifier": { - "blockNumber": 10395673, - "address": "0x79fcbaE7ffFA4D7EE5DBF29be284AcE20824F850" + "blockNumber": 10395624, + "address": "0x426e651f1e8a386d8F9B2d99C484d31726A0dE42" }, "MockE3Program": { - "blockNumber": 10395674, - "address": "0x6d255f8Bf699E4332c9A594F32bE1eC767321379" + "blockNumber": 10395625, + "address": "0xcE63E1EcAf3A7FeB69bA949d9Cd6681bB2C7eC88" }, "ZKTranscriptLib": { "blockNumber": 10395628, "address": "0xBf0A32A7D546944561a8773628e6c0036C16354C" - }, - "MockRISC0Verifier": { - "address": "0x1DdB8dc5d48CE8598bcb92759A33ab4350e85Ef5", - "blockNumber": 10395677 - }, - "HonkVerifier": { - "address": "0xD2c0428dF646c5DBa7bfFb2005378EBA67603783", - "blockNumber": 10395678 - }, - "CRISPProgram": { - "address": "0xb5172dED86714d302BC4434E54Dc010343580764", - "blockNumber": 10395678, + } + }, + "undefined": { + "PoseidonT3": { + "blockNumber": 3, + "address": "0x3333333C0A88F9BE4fd23ed0536F9B6c427e3B93" + } + }, + "default": { + "MockUSDC": { "constructorArgs": { - "enclave": "0x450015E41E1F6b6AfaEbf598E32a8d02a368c0A0", - "verifierAddress": "0x1DdB8dc5d48CE8598bcb92759A33ab4350e85Ef5", - "honkVerifierAddress": "0xD2c0428dF646c5DBa7bfFb2005378EBA67603783", - "imageId": "0x23734b77b0f76e85623a88d7a82f24c34c94834f2501964ea123b7a2027013a2" - } + "initialSupply": "1000000" + }, + "blockNumber": 1, + "address": "0x5FbDB2315678afecb367f032d93F642f64180aa3" }, - "MockVotingToken": { - "address": "0xCF32Da38ac52BadbFb278bc070B738C37D09a1E0", - "blockNumber": 10395680 + "EnclaveToken": { + "constructorArgs": { + "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" + }, + "blockNumber": 1, + "address": "0x5FbDB2315678afecb367f032d93F642f64180aa3" } }, "localhost": { "PoseidonT3": { - "blockNumber": 5, + "blockNumber": 3, "address": "0x3333333C0A88F9BE4fd23ed0536F9B6c427e3B93" }, "MockUSDC": { "constructorArgs": { "initialSupply": "1000000" }, - "blockNumber": 6, - "address": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512" + "blockNumber": 4, + "address": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0" }, "EnclaveToken": { "constructorArgs": { "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 7, - "address": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0" + "blockNumber": 5, + "address": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9" }, "EnclaveTicketToken": { "constructorArgs": { - "baseToken": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "baseToken": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", "registry": "0x0000000000000000000000000000000000000001", "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 9, - "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9" + "blockNumber": 7, + "address": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707" }, "SlashingManager": { "constructorArgs": { "admin": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 10, - "address": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707" + "blockNumber": 8, + "address": "0x0165878A594ca255338adfa4d48449f69242Eb8F" }, "CiphernodeRegistryOwnable": { "constructorArgs": { @@ -192,19 +192,19 @@ "proxyRecords": { "initData": "0xcd6dc687000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000000000000000000000000000000000000000000a", "initialOwner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "proxyAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", - "proxyAdminAddress": "0x9bd03768a7DCc129555dE410FF8E85528A4F88b5", - "implementationAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F" + "proxyAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "proxyAdminAddress": "0x94099942864EA81cCF197E9D71ac53310b1468D8", + "implementationAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853" }, - "blockNumber": 11, - "address": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853" + "blockNumber": 9, + "address": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6" }, "BondingRegistry": { "constructorArgs": { "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "ticketToken": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", - "licenseToken": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", - "registry": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "ticketToken": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "licenseToken": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "registry": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", "slashedFundsTreasury": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", "ticketPrice": "10000000", "licenseRequiredBond": "100000000000000000000", @@ -212,115 +212,112 @@ "exitDelay": "604800" }, "proxyRecords": { - "initData": "0x7333fa82000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000dc64a140aa3e981100a9beca4e685f962f0cf6c90000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c853000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb9226600000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000093a80", + "initData": "0x7333fa82000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb922660000000000000000000000005fc8d32690cc91d4c39d9d3abcbd16989f875707000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc90000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb9226600000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000093a80", "initialOwner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "proxyAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", - "proxyAdminAddress": "0x8aCd85898458400f7Db866d53FCFF6f0D49741FF", - "implementationAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6" + "proxyAddress": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788", + "proxyAdminAddress": "0x6F1216D1BFe15c98520CA1434FC1d9D57AC95321", + "implementationAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318" }, - "blockNumber": 12, - "address": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318" + "blockNumber": 10, + "address": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788" }, "Enclave": { "constructorArgs": { "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "registry": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", - "bondingRegistry": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "registry": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "bondingRegistry": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788", "e3RefundManager": "0x0000000000000000000000000000000000000001", - "feeToken": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "feeToken": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", "maxDuration": "2592000", - "timeoutConfig": "{\"committeeFormationWindow\":3600,\"dkgWindow\":7200,\"computeWindow\":86400,\"decryptionWindow\":3600}", - "params": [ - "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000ffffee0010000000000000000000000000000000000000000000000000000000ffffc400100000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000" - ] + "timeoutConfig": "{\"committeeFormationWindow\":3600,\"dkgWindow\":7200,\"computeWindow\":86400,\"decryptionWindow\":3600}" }, "proxyRecords": { - "initData": "0x01d12f1c000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c8530000000000000000000000008a791620dd6260079bf849dc5567adc3f2fdc3180000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f05120000000000000000000000000000000000000000000000000000000000278d000000000000000000000000000000000000000000000000000000000000001c2000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000e100000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000ffffee0010000000000000000000000000000000000000000000000000000000ffffc400100000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000", + "initData": "0x4d600e5d000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb922660000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad78800000000000000000000000000000000000000000000000000000000000000010000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e00000000000000000000000000000000000000000000000000000000000278d000000000000000000000000000000000000000000000000000000000000001c2000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000e10", "initialOwner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "proxyAddress": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", - "proxyAdminAddress": "0x8dAF17A20c9DBA35f005b6324F493785D239719d", - "implementationAddress": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788" + "proxyAddress": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", + "proxyAdminAddress": "0x1F708C24a0D3A740cD47cC0444E9480899f3dA7D", + "implementationAddress": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e" }, - "blockNumber": 15, - "address": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e" + "blockNumber": 13, + "address": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0" }, "E3RefundManager": { "constructorArgs": { "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "enclave": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", + "enclave": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", "treasury": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, "proxyRecords": { - "initData": "0xc0c53b8b000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000b7f8bc63bbcad18155201308c8f3540b07f84f5e000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "initData": "0xc0c53b8b000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000a51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "initialOwner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "proxyAddress": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82", - "proxyAdminAddress": "0x32467b43BFa67273FC7dDda0999Ee9A12F2AaA08", - "implementationAddress": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0" + "proxyAddress": "0x9A676e781A523b5d0C0e43731313A708CB607508", + "proxyAdminAddress": "0x8e80FFe6Dc044F4A766Afd6e5a8732Fe0977A493", + "implementationAddress": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82" }, - "blockNumber": 17, - "address": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82" + "blockNumber": 15, + "address": "0x9A676e781A523b5d0C0e43731313A708CB607508" }, "MockComputeProvider": { - "blockNumber": 19, - "address": "0xc3e53F4d16Ae77Db1c982e75a937B9f60FE63690" + "blockNumber": 35, + "address": "0x9E545E3C0baAB3E08CdfD552C960A1050f373042" }, "MockDecryptionVerifier": { - "blockNumber": 20, - "address": "0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB" + "blockNumber": 36, + "address": "0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9" }, "MockPkVerifier": { - "blockNumber": 21, - "address": "0x9E545E3C0baAB3E08CdfD552C960A1050f373042" + "blockNumber": 37, + "address": "0x1613beB3B2C4f22Ee086B2b38C1476A3cE7f78E8" }, "MockE3Program": { - "blockNumber": 22, - "address": "0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9" + "blockNumber": 38, + "address": "0x851356ae760d987E095750cCeb3bC6014560891C" }, "ZKTranscriptLib": { - "blockNumber": 24, - "address": "0x851356ae760d987E095750cCeb3bC6014560891C" + "blockNumber": 40, + "address": "0x95401dc811bb5740090279Ba06cfA8fcF6113778" }, "RecursiveAggregationFoldVerifier": { - "blockNumber": 25, - "address": "0xf5059a5D33d5853360D16C683c16e67980206f36" + "blockNumber": 41, + "address": "0x998abeb3E57409262aE5b751f60747921B33613E" }, "ThresholdDecryptedSharesAggregationVerifier": { - "blockNumber": 26, - "address": "0x95401dc811bb5740090279Ba06cfA8fcF6113778" + "blockNumber": 42, + "address": "0x70e0bA845a1A0F2DA3359C97E0285013525FFC49" }, "ThresholdPkAggregationVerifier": { - "blockNumber": 27, - "address": "0x998abeb3E57409262aE5b751f60747921B33613E" + "blockNumber": 43, + "address": "0x4826533B4897376654Bb4d4AD88B7faFD0C98528" }, "BfvDecryptionVerifier": { - "blockNumber": 28, - "address": "0x70e0bA845a1A0F2DA3359C97E0285013525FFC49" + "blockNumber": 44, + "address": "0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf" }, "BfvPkVerifier": { - "blockNumber": 30, - "address": "0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf" + "blockNumber": 46, + "address": "0x8f86403A4DE0BB5791fa46B8e795C547942fE4Cf" }, "MockRISC0Verifier": { - "address": "0x8f86403A4DE0BB5791fa46B8e795C547942fE4Cf", - "blockNumber": 32 + "address": "0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00", + "blockNumber": 48 }, "HonkVerifier": { - "address": "0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00", - "blockNumber": 33 + "address": "0x809d550fca64d94Bd9F66E60752A544199cfAC3D", + "blockNumber": 50 }, "CRISPProgram": { - "address": "0x36C02dA8a0983159322a80FFE9F24b1acfF8B570", - "blockNumber": 33, + "address": "0x4c5859f0F772848b2D91F1D83E2Fe57935348029", + "blockNumber": 51, "constructorArgs": { - "enclave": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", - "verifierAddress": "0x8f86403A4DE0BB5791fa46B8e795C547942fE4Cf", - "honkVerifierAddress": "0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00", + "enclave": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", + "verifierAddress": "0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00", + "honkVerifierAddress": "0x809d550fca64d94Bd9F66E60752A544199cfAC3D", "imageId": "0x23734b77b0f76e85623a88d7a82f24c34c94834f2501964ea123b7a2027013a2" } }, "MockVotingToken": { - "address": "0x4c5859f0F772848b2D91F1D83E2Fe57935348029", - "blockNumber": 35 + "address": "0x5f3f1dBD7B74C6B46e8c44f98792A1dAf8d69154", + "blockNumber": 53 } } } \ No newline at end of file diff --git a/examples/CRISP/server/.env.example b/examples/CRISP/server/.env.example index af56812859..83592f1226 100644 --- a/examples/CRISP/server/.env.example +++ b/examples/CRISP/server/.env.example @@ -13,10 +13,10 @@ ETHERSCAN_API_KEY="" CRON_API_KEY=1234567890 # Based on Default Anvil Deployments (Only for testing) -ENCLAVE_ADDRESS="0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e" -CIPHERNODE_REGISTRY_ADDRESS="0xa513E6E4b8f2a923D98304ec87F64353C4D5C853" -E3_PROGRAM_ADDRESS="0x36C02dA8a0983159322a80FFE9F24b1acfF8B570" -FEE_TOKEN_ADDRESS="0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512" +ENCLAVE_ADDRESS=0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0 +FEE_TOKEN_ADDRESS=0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +E3_PROGRAM_ADDRESS=0x4c5859f0F772848b2D91F1D83E2Fe57935348029 +CIPHERNODE_REGISTRY_ADDRESS=0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6 # E3 Config # Defines the time interval during which users can submit their inputs diff --git a/fhe.md b/fhe.md new file mode 100644 index 0000000000..41101f2f10 --- /dev/null +++ b/fhe.md @@ -0,0 +1,932 @@ +Fully Homomorphic Encryption — From Zero to Hero + +A complete lecture series covering every concept you need, built from the ground up. + +--- + +Lecture 1: What Problem Are We Solving? + +The Dream + +Imagine you have medical records. You want a cloud server to run analytics on them — but you don't +trust the server. You want to encrypt the data, send the encrypted data to the server, have the +server compute on the encrypted data, and get back an encrypted result that only you can decrypt. + +This is Fully Homomorphic Encryption (FHE). + +You: encrypt(x) ──────► Server: f(encrypt(x)) ──────► You: decrypt(result) = f(x) ↑ Server never +sees x! + +The server computes f on ciphertext and gets the same answer as if it computed f on plaintext. It +never learns what x is. + +Why Is This Hard? + +Normal encryption (like AES) scrambles data so thoroughly that you can't do math on it. FHE needs +encryption that is: + +1. Secure — can't break it +2. Structured — addition and multiplication "pass through" the encryption + +The trick: noise-based encryption. We hide the message behind random noise. But every operation +makes the noise grow. Eventually the noise overwhelms the message and decryption fails. The central +challenge of FHE is managing noise. + +--- + +Lecture 2: Modular Arithmetic & The Torus + +Modular Arithmetic (Clock Math) + +On a 12-hour clock, 10 + 5 = 3 (we wrap around). This is arithmetic modulo 12, written 10 + 5 ≡ 3 +(mod 12). + +More generally, a mod q means "the remainder when dividing a by q". All arithmetic happens in {0, 1, +..., q-1}. + +The Torus T = R/Z + +The Torus is like a clock, but continuous. Take the real number line and wrap it so that every +integer maps to the same point. What remains is just the fractional part of any real number: + +T = R/Z = the set of real numbers modulo 1 + +Examples: 3.7 → 0.7 -0.3 → 0.7 (same point!) 1.0 → 0.0 0.25 → 0.25 + +Think of it as a circle of circumference 1. Addition wraps around naturally: 0.8 + 0.4 = 0.2 (on the +Torus). + +Why the Torus? + +The Torus is the natural home for TFHE (Torus FHE). Messages are encoded as positions on the circle, +and noise is a small random jitter around that position. As long as the jitter is small enough, we +can round back to the correct position. + +Encoding 1 bit: + + 0.0 + | + 0 ──●── 1 0 maps to position 0.0 + | 1 maps to position 0.5 + 0.5 Noise moves us slightly off these points + Decryption: round to nearest {0.0, 0.5} + +Fixed-Point Representation + +Computers can't store real numbers exactly. We approximate Torus elements using fixed-point +integers. With k bits of precision: + +Torus element t ≈ round(t × 2^k) stored as a signed integer + +Example (k = 8 bits): t = 0.25 → 0.25 × 256 = 64 → stored as 64 t = 0.75 → 0.75 × + +--- + +Lecture 3: Polynomials & Polynomial Rings + +Polynomials + +A polynomial is just a list of coefficients: + +p(X) = 3 + 2X + 5X² + X³ + +Coefficients: [3, 2, 5, 1] Degree: 3 + +Adding polynomials: add corresponding coefficients. Multiplying polynomials: like multiplying +multi-digit numbers, but with powers of X instead of powers of 10. + +Polynomial Rings: Z[X]/(X^N + 1) + +We work in a special ring where: + +- Coefficients are integers (Z) +- After every operation, we reduce modulo X^N + 1 + +What does "modulo X^N + 1" mean? It means X^N = -1. So any power X^{N+k} wraps around: + +X^N = -1 X^{N+1} = -X X^{N+2} = -X² ...and so on + +This keeps all polynomials at degree < N. With N = 4 as a toy example: + +(1 + X²) × (X + X³) = X + X³ + X³ + X⁵ = X + 2X³ + X⁵ = X + 2X³ + X · X⁴ = X + 2X³ + X · (-1) [since +X⁴ = -1] = 2X³ + +Why This Ring? + +The ring Z[X]/(X^N + 1) (called a cyclotomic ring) has two crucial properties: + +1. Security: The Ring-LWE problem in this ring is believed to be as hard as worst-case lattice + problems. Quantum computers can't efficiently solve it (as far as we know). +2. Efficiency: Polynomial multiplication can be done in O(N log N) using the Number Theoretic + Transform (NTT) — a variant of the Fast Fourier Transform. Without this, multiplication would be + O(N²). + +--- + +Lecture 4: LWE — Learning With Errors + +The LWE Problem + +LWE (Learning With Errors) is the mathematical hardness assumption that makes FHE secure. + +Setup: Fix a secret vector s = (s₁, s₂, ..., sₙ) with small integer entries. + +Encryption of a message m: + +1. Pick a random vector a = (a₁, a₂, ..., aₙ) +2. Compute b = ⟨a, s⟩ + m + e where e is a small random error +3. Ciphertext = (a, b) + +⟨a, s⟩ means the dot product: a₁s₁ + a₂s₂ + ... + aₙsₙ + +Decryption (knowing s): b - ⟨a, s⟩ = m + e ≈ m (round away the small error) + +Security: Without knowing s, the pair (a, b) looks completely random. The error e is what makes this +hard — without it, you could solve a system of linear equations to find s. + +Why Is LWE Hard? + +Given many samples (aᵢ, bᵢ), distinguishing them from truly random pairs is (believed to be) +computationally intractable. This is related to hard problems on lattices — geometric structures in +high-dimensional space. + +Think of it like this: you're given noisy equations and asked to find the secret. The noise makes it +impossible to use Gaussian elimination or any efficient linear algebra technique. + +Noise: The Double-Edged Sword + +- Too little noise: encryption is insecure (solvable by linear algebra) +- Too much noise: decryption fails (can't round to correct message) +- Just right: secure AND decryptable + +Every homomorphic operation increases the noise. This is the fundamental tension of FHE. + +--- + +Lecture 5: Ring-LWE (RLWE) and GLWE + +From Vectors to Polynomials + +LWE works with vectors of integers. Ring-LWE replaces vectors with polynomials in Z[X]/(X^N + 1). +This gives us: + +- Compact ciphertexts: one polynomial of degree N replaces N individual integers +- Fast operations: polynomial multiplication via NTT is O(N log N) +- SIMD-like packing: N message slots in one ciphertext + +GLWE: Generalized (Ring-)LWE + +A GLWE ciphertext with rank k consists of k+1 polynomials: + +ct = (c₀, c₁, c₂, ..., cₖ) + +where: c₁, ..., cₖ are random mask polynomials c₀ = body = -∑(cᵢ · sᵢ) + m + e + + sᵢ are secret key polynomials + m is the plaintext polynomial + e is a small error polynomial + +Decryption: m + e = c₀ + ∑(cᵢ · sᵢ) = c₀ + c₁·s₁ + c₂·s₂ + ... + cₖ·sₖ + +Special cases: + +- rank = 0: trivial encryption (no mask, just ct = (m + e)) +- rank = 1: standard RLWE (most common — one mask polynomial) +- rank > 1: generalized form (more mask polynomials, different noise/security trade-offs) +- N = 1 (degree-0 polynomials = scalars): plain LWE + +The Encryption/Decryption Dance + +Let's trace through a concrete example with rank = 1, N = 4: + +Secret key: s₁(X) = 1 + X - X³ (small coefficients) + +ENCRYPT message m(X) = 5 + 3X²: 1. Sample random mask: c₁(X) = 7 - 2X + X² + 4X³ 2. Sample small +error: e(X) = 0 + 1 - 1 + 0 (tiny!) 3. Compute body: c₀ = -c₁ · s₁ + m + e (polynomial +multiplication mod X⁴+1, then add message and error) 4. Ciphertext: ct = (c₀, c₁) + +DECRYPT (knowing s₁): 1. Compute: c₀ + c₁ · s₁ = m + e 2. Round away e → m = 5 + 3X² ✓ + +--- + +Lecture 6: The Torus Representation in Detail + +Base-2^K Decomposition (Limbs) + +Here's where poulpy gets clever. Instead of storing each Torus coefficient as a single large +integer, poulpy decomposes it into limbs (digits in base 2^K): + +coefficient c = c₀ + c₁·2^{-K} + c₂·2^{-2K} + ... + c\_{d-1}·2^{-(d-1)K} + +Think of this like writing a number in a particular base: Decimal 1234 = 1×10³ + 2×10² + 3×10¹ + +4×10⁰ (base 10, 4 digits) Binary 1011 = 1×2³ + 0×2² + 1×2¹ + 1×2⁰ (base 2, 4 digits) Base-2^K: c₀ + +c₁·2^{-K} + ... (base 2^K, d limbs) + +Parameters: + +- base2k (K) — bits per limb (e.g., K = 17 means each limb holds a 17-bit value) +- size (d) — number of limbs +- Total precision = d × K bits + +The Bivariate View: Z[X, Y] + +Here's the mathematical elegance. If we treat the limb index as a second variable Y = 2^{-K}, then a +GLWE coefficient becomes a bivariate polynomial: + +c(X, Y) = c₀(X) + c₁(X)·Y + c₂(X)·Y² + ... + c\_{d-1}(X)·Y^{d-1} + +where each cⱼ(X) is a polynomial in X of degree < N + +So a single GLWE polynomial is really a 2D array: Limb 0 Limb 1 Limb 2 ... Coeff X⁰: c₀[0] c₁[0] +c₂[0] Coeff X¹: c₀[1] c₁[1] c₂[1] Coeff X²: c₀[2] c₁[2] c₂[2] ... Coeff X^{N-1}: c₀[N-1] c₁[N-1] +c₂[N-1] + +Why Limbs? — Normalization and Rescaling + +Normalization is the process of propagating carries between limbs, just like carrying in decimal +addition: + +Base-10 example: [3, 15, 7] → [3, 5, 8] (carry the 1 from 15) Base-2^K: [c₀, c₁, c₂] where cⱼ might +overflow 2^K → propagate carries → all cⱼ in [-2^{K-1}, 2^{K-1}) + +Rescaling (changing precision) is just bit-shifting — you drop or add limbs. Compare this to +RNS-based systems where rescaling requires expensive basis conversion. This is one of poulpy's key +advantages. + +--- + +Lecture 7: Fast Polynomial Multiplication + +The Bottleneck + +GLWE encryption, decryption, and every homomorphic operation require polynomial multiplication in +Z[X]/(X^N + 1). Naive multiplication is O(N²). With N = 1024 or 2048, this is too slow. + +The FFT/NTT Trick + +The Discrete Fourier Transform converts a polynomial from coefficient representation to evaluation +representation (values at specific points): + +Coefficient domain: p(X) = [a₀, a₁, a₂, ..., a_{N-1}] ↓ Forward FFT/NTT Evaluation domain: [p(ω⁰), +p(ω¹), p(ω²), ..., p(ω^{N-1})] where ω is a primitive root of unity + +The key insight: multiplication of polynomials in coefficient domain becomes pointwise +multiplication in evaluation domain: + +Coefficient: p(X) × q(X) — O(N²) Evaluation: p(ωⁱ) × q(ωⁱ) — O(N) pointwise, each i independently! + +Total: O(N log N) for FFT + O(N) pointwise + O(N log N) for inverse FFT = O(N log N) ≪ O(N²) + +Negacyclic Convolution + +We need multiplication mod (X^N + 1), not just mod X^N. This requires a negacyclic transform — we +use roots of X^{2N} - 1 that satisfy ω^N = -1, which automatically handles the negation when +wrapping around. + +Two Backend Implementations + +FFT64 (Floating-Point): + +- Uses f64 (64-bit doubles) for the transform +- Fast, simple, but introduces small rounding errors +- Works for moderate precision requirements +- ScalarPrep = f64, ScalarBig = i64 + +NTT120 (Exact Integer via CRT): + +- Uses Number Theoretic Transform — FFT but in modular arithmetic (integers mod a prime) +- Works over 4 primes simultaneously: Q = Q₀ × Q₁ × Q₂ × Q₃ ≈ 2^{120} +- Each prime is ~30 bits, so NTT fits in 32-bit arithmetic +- Chinese Remainder Theorem (CRT) reconstructs the full result +- Exact — no floating-point error whatsoever + +NTT120 Pipeline: + +Coefficient (i64) ↓ encode CRT residues: [c mod Q₀, c mod Q₁, c mod Q₂, c mod Q₃] (Q120a format) ↓ +forward NTT (independently on each prime) NTT domain: [ĉ mod Q₀, ĉ mod Q₁, ĉ mod Q₂, ĉ mod Q₃] +(Q120b format) ↓ pointwise multiply ↓ inverse NTT CRT residues of product ↓ CRT reconstruction +(Barrett reduction, no division) Exact result (i128) + +The Three Domains + +Every polynomial lives in one of three representations: + +┌───────────────────┬───────────┬──────────────┬──────────────────────────────────┐ │ Domain │ Type +│ Scalar │ Purpose │ +├───────────────────┼───────────┼──────────────┼──────────────────────────────────┤ │ Coefficient │ +VecZnx │ i64 │ Storage, addition, serialization │ +├───────────────────┼───────────┼──────────────┼──────────────────────────────────┤ │ DFT/NTT │ +VecZnxDft │ f64 or Q120b │ Fast multiplication │ +├───────────────────┼───────────┼──────────────┼──────────────────────────────────┤ │ Big +(accumulator) │ VecZnxBig │ i64 or i128 │ IDFT output before normalization │ +└───────────────────┴───────────┴──────────────┴──────────────────────────────────┘ + +Lifecycle: VecZnx ──[forward DFT]──► VecZnxDft ──[pointwise ops]──► VecZnxDft │ VecZnx +◄──[normalize]── VecZnxBig ◄──[inverse DFT]───────────┘ + +--- + +Lecture 8: SVP, VMP — The Building Blocks + +SVP: Scalar-Vector Product + +What: Multiply one polynomial (scalar) against a vector of polynomials. + +Where it's used: Encryption and decryption — multiplying by the secret key polynomial. + +Setup: scalar s(X) ──[prepare]──► SvpPPol (s in DFT domain, stored once) + +Operation: SvpPPol × VecZnxDft ──[pointwise mul per column]──► VecZnxDft + + Conceptually: [v₁, v₂, ..., vₖ] × s = [v₁·s, v₂·s, ..., vₖ·s] + But done in DFT domain, so each multiplication is O(N) pointwise. + +The "prepare" step (one-time DFT of the scalar) amortizes the cost across many multiplications. + +VMP: Vector-Matrix Product + +What: Multiply a vector of polynomials against a prepared matrix of polynomials. + +Where it's used: Keyswitching and external products — the core FHE operations. + +Setup: Matrix M ──[prepare]──► VmpPMat (each row in DFT domain) + +Operation: VecZnxDft × VmpPMat ──[frequency-domain mat-vec product]──► VecZnxDft + + This is like standard matrix-vector multiplication, + but each "scalar multiply" is a pointwise DFT multiplication, + and each "addition" is pointwise DFT addition. + +Think of it as: the gadget decomposition digits of the input vector are multiplied against the rows +of the keyswitching/GGSW matrix, all in DFT domain for speed. + +--- + +Lecture 9: Gadget Decomposition — Controlling Noise + +The Noise Growth Problem + +When you multiply two ciphertexts naively, the noise squares. After a few multiplications, it +overwhelms the message: + +After 1 multiplication: noise ≈ e² After 2 multiplications: noise ≈ e⁴ After k multiplications: +noise ≈ e^{2^k} + +This grows astronomically fast! + +The Gadget Trick + +Instead of multiplying ciphertexts directly, we use gadget decomposition to keep noise linear. + +Idea: Decompose one operand into small digits, multiply each digit by a pre-encrypted version of the +other operand at the corresponding scale, and sum up. + +Analogy — multiplication by decomposition in decimal: Instead of: 1234 × secret + +Decompose: 1234 = 1×1000 + 2×100 + 3×10 + 4×1 + +Compute: 1 × (secret × 1000) ← pre-computed and encrypted + 2 × (secret × 100) ← pre-computed and +encrypted + 3 × (secret × 10) ← pre-computed and encrypted + 4 × (secret × 1) ← pre-computed and +encrypted + +The crucial point: the multipliers (1, 2, 3, 4) are small (single digits), so they contribute very +little noise. The pre-encrypted scaled versions of secret are computed once during key generation. + +Formal Gadget Decomposition + +Parameters: + +- dnum — number of digits +- dsize — limbs per digit (each limb is base2k bits) +- Digit width = dsize × base2k bits +- Total precision covered = dnum × dsize × base2k bits + +Decomposition of value v with precision k bits: + +v = d₀ · β⁰ + d₁ · β¹ + ... + d\_{dnum-1} · β^{dnum-1} + +where β = 2^{dsize × base2k} (the digit base) and each dᵢ ∈ [-β/2, β/2) (small!) + +Noise analysis: Noise per digit: proportional to dᵢ ≤ β/2 = 2^{dsize·base2k - 1} Total noise: +proportional to dnum × β/2 + +Trade-off: + +- More digits (dnum ↑) → smaller digits (β ↓) → less noise per digit +- But more digits → more additions → more total accumulated noise +- Sweet spot depends on the specific parameters and operation + +--- + +Lecture 10: GGSW and the External Product + +GGSW Ciphertext + +A GGSW ciphertext encrypts a message m in a special matrix form that enables the external product. +It's a dnum × (rank+1) matrix of GLWE ciphertexts: + +GGSW(m) = | GLWE(m · 1 · β⁰) GLWE(m · s₁ · β⁰) ... | ← digit 0 | GLWE(m · 1 · β¹) GLWE(m · s₁ · β¹) +... | ← digit 1 | ... ... ... | | GLWE(m · 1 · β^{d-1}) GLWE(m · s₁ · β^{d-1}) | ← digit d-1 + +Each row encrypts the message m scaled by the gadget power β^i Each column encrypts m multiplied by +a different component (1, s₁, s₂, ...) + +The External Product: GGSW × GLWE + +This is the most important operation in TFHE. It multiplies a GLWE ciphertext by a GGSW-encrypted +message: + +Input: GLWE(a) and GGSW(m) Output: GLWE(a · m) + +Algorithm: + +1. Decompose GLWE(a) into digits: a = d₀ + d₁·β + d₂·β² + ... + d\_{dnum-1}·β^{dnum-1} + +2. Multiply each digit by the corresponding GGSW row: result = Σᵢ dᵢ × GGSW[i] + +3. The gadget powers cancel out: Σᵢ dᵢ × GLWE(m · β^i) = GLWE(m · Σᵢ dᵢ · β^i) = GLWE(m · a) + +Why noise stays small: Each digit dᵢ is small (bounded by β/2), so the noise contribution of each +row is proportional to a small number times the GGSW encryption noise. Much better than multiplying +two full-size ciphertexts! + +Implementation (how poulpy does it): + +1. For each digit dᵢ of the GLWE: dᵢ_dft = FFT(dᵢ) ← coefficient → DFT domain res_dft += VMP(dᵢ_dft, + GGSW_prepared[i]) ← vector-matrix product in DFT domain +2. res_big = IFFT(res_dft) ← DFT → big accumulator +3. result = normalize(res_big) ← big → coefficient domain + +--- + +Lecture 11: Keyswitching + +Why Keyswitching? + +Sometimes we need to convert a ciphertext from one secret key to another. This happens when: + +- Changing the ring dimension (e.g., LWE ↔ GLWE) +- Changing the rank (e.g., rank 2 → rank 1) +- After bootstrapping (which uses a different key internally) + +How It Works + +We need a keyswitching key — a GGLWE that encrypts the old secret key s₀ under the new secret key +s₁: + +KSK = GGLWE\_{s₁}(s₀) + += for each digit i, for each component j of s₀: GLWE\_{s₁}(s₀[j] · β^i) + +Keyswitching operation: Input: ct = (c₀, c₁, ..., c\_{rank_in}) under s₀ Output: ct' under s₁ + +1. Take the mask components c₁, ..., c\_{rank_in} +2. Decompose them into digits +3. Multiply against the KSK (vector-matrix product): result_dft = VMP(decompose(masks), KSK) +4. Add the body: result = IDFT(result_dft) + c₀ +5. Normalize + +Intuition: The mask components cᵢ were originally multiplied by sᵢ₀ (old key). The KSK encrypts sᵢ₀ +under the new key, so we're effectively re-encrypting the contribution of each mask component. + +--- + +Lecture 12: The CMux Gate + +What Is CMux? + +CMux (Controlled Multiplexer) is the fundamental gate for homomorphic circuits. It selects between +two values based on an encrypted bit: + +CMux(selector, true_val, false_val): if selector = 1: output true_val if selector = 0: output +false_val + +Algebraically: result = (true_val - false_val) · selector + false_val = selector · true_val + (1 - +selector) · false_val + +Implementation with External Product + +- selector is a GGSW ciphertext (encrypting 0 or 1) +- true_val and false_val are GLWE ciphertexts + +1. diff = true_val - false_val ← GLWE subtraction (trivial, no noise growth) +2. product = ExternalProduct(selector, diff) ← GGSW × GLWE +3. result = product + false_val ← GLWE addition (trivial) + +If selector = 1: result = diff · 1 + false_val = true_val If selector = 0: result = diff · 0 + +false_val = false_val + +The beauty: the selector is encrypted. The server doesn't know which value was selected. And the +noise growth is controlled by the gadget decomposition. + +--- + +Lecture 13: Blind Rotation (Programmable Bootstrapping) + +The Noise Problem, Revisited + +Every homomorphic operation adds noise. After enough operations, the noise overwhelms the message +and decryption fails. We need a way to reset the noise while keeping the data encrypted. + +This is bootstrapping — the most expensive but most critical operation in FHE. + +What Blind Rotation Does + +It evaluates an arbitrary function f on an encrypted input, producing a fresh (low-noise) +ciphertext: + +Input: LWE(x) — noisy encryption of x Output: GLWE(f(x)) — fresh encryption of f(x) + +The function f is encoded as a Lookup Table (LUT) polynomial. + +The word "blind" means the rotation happens without knowing x — everything is done on ciphertexts. + +The Algorithm (CGGI Method) + +Step 0 — Encode the LUT: Encode the function f as a polynomial where coefficient j stores f(j): + +LUT(X) = f(0) + f(1)·X + f(2)·X² + ... + f(2N-1)·X^{2N-1} + +To evaluate f(x), we need to rotate this polynomial by x positions so that f(x) appears at +position 0. + +Step 1 — Initial rotation by the body: ACC = X^{-b} · LUT (rotate by b, the LWE body, which is +public in the ciphertext) + +Step 2 — Accumulate mask contributions: For each LWE mask coefficient aᵢ (there are n_lwe of them): + +ACC = ACC + (X^{aᵢ} - 1) · ExternalProduct(BRK[i], ACC) + +where BRK[i] is a Blind Rotation Key — a GGSW encryption of the i-th secret key bit sᵢ. + +What happens here? Let's trace the logic: + +ExternalProduct(BRK[i], ACC) = ACC · sᵢ (homomorphically) + +(X^{aᵢ} - 1) · ACC · sᵢ: - If sᵢ = 1: adds (X^{aᵢ} - 1) · ACC to the accumulator → net effect: ACC +gets rotated by aᵢ (because ACC + (X^{aᵢ} - 1)·ACC = X^{aᵢ}·ACC) - If sᵢ = 0: adds 0 (no change) + +After all n_lwe iterations: ACC has been rotated by: b + Σ(aᵢ · sᵢ) = b + ⟨a,s⟩ = m + e + +Total rotation ≈ m (plus small error from rounding) + +Step 3 — Extract result: Coefficient 0 of the final ACC polynomial contains f(m). + +Why It's Called "Programmable" + +By changing the LUT polynomial, you can compute any function of the encrypted input. Want to compute +AND? Put the AND truth table in the LUT. Want square root? Put square root values in the LUT. This +is incredibly flexible. + +Block-Binary Optimization + +The standard algorithm does one external product per LWE coefficient (n_lwe products). The +block-binary variant batches multiple coefficients together: + +Instead of processing aᵢ one at a time, process block_size coefficients together. + +This works when the secret key has a special structure (binary block distribution: exactly one 1 per +block of coefficients). + +Result: fewer external products → faster bootstrapping. + +--- + +Lecture 14: Circuit Bootstrapping (GLWE → GGSW) + +Why Do We Need This? + +After blind rotation, we get a GLWE ciphertext. But for CMux gates, we need GGSW ciphertexts. +Circuit bootstrapping bridges this gap: + +Input: GLWE(bit) or LWE(bit) Output: GGSW(bit) — ready for use in CMux gates + +The Three-Stage Pipeline + +Stage 1: Blind Rotation Run blind rotation with a special LUT that encodes the GGSW row structure: + +For each GGSW row i: LUT[j] = j × 2^{base2k × (dnum - 1 - i)} + +This produces a GLWE ciphertext whose coefficients encode the scaled message values needed for each +GGSW row. + +Stage 2: Trace (Coefficient Extraction via Automorphisms) + +The GLWE from Stage 1 has the values we need scattered across different coefficients. We need to +isolate them. + +Automorphism σₚ maps X → X^p in the ring. The trace operation applies several automorphisms and +averages the results, which zeros out certain coefficients while preserving others: + +Trace*gap(c) = (1/gap) · Σ*{j=0}^{gap-1} σ\_{1+j·(N/gap)}(c) + +This keeps every gap-th coefficient and zeros out the rest. Using automorphism keys (pre-computed +GGLWE ciphertexts), this is done homomorphically. + +Stage 3: GGLWE-to-GGSW Key-Switch + +The trace output is in GGLWE form. A final keyswitching step (using a tensor key) converts it to the +proper GGSW format: + +GGLWE intermediate → [tensor key-switch] → GGSW(bit) + +End Result + +We now have a GGSW ciphertext with fresh noise, ready to be used as a CMux selector. This is the key +enabler for arbitrary circuits. + +--- + +Lecture 15: BDD Arithmetic — Computing on Encrypted Integers + +The Goal + +We want to perform word-level arithmetic on encrypted integers (u8, u16, u32, u64): + +encrypt(a) + encrypt(b) → encrypt(a + b) encrypt(a) × encrypt(b) → encrypt(a × b) encrypt(a) & +encrypt(b) → encrypt(a & b) ...all without decrypting! + +Binary Decision Diagrams (BDDs) + +A BDD is a compact representation of a Boolean function as a directed acyclic graph. Each internal +node tests one input bit and branches left (0) or right (1): + +Example: f(x₁, x₂) = x₁ AND x₂ + + x₁ + / \ + 0 x₂ + / \ + 0 1 + +Any Boolean function (including addition carry chains, comparisons, etc.) can be represented as a +BDD. Multi-output functions (like 32-bit addition with 32 output bits) are represented as shared +BDDs where different outputs share internal nodes. + +The Three-Phase Pipeline + +Phase 1: Pack & Encrypt + +Each bit of the plaintext integer is encrypted separately, then packed into a single GLWE polynomial +using clever bit interleaving: + +FheUint: 32 bits packed in one GLWE polynomial + +Bit layout (interleaved for efficient byte extraction): bit_index(i) = ((i & 7) << LOG_BYTES) | +(i >> 3) + +This layout enables extracting whole bytes with a single polynomial rotation + trace. + +Phase 2: Prepare (Circuit Bootstrap Each Bit) + +For each of the 32 bits: + +1. Extract the bit as an LWE ciphertext (GLWE-to-LWE keyswitching) +2. Circuit bootstrap it to a GGSW ciphertext +3. Prepare (DFT-transform) the GGSW + +FheUint (packed GLWE) → FheUintPrepared (32 independent GGSWs in DFT domain) + +This is embarrassingly parallel — each bit is independent. Poulpy uses multi-threading here, with +dedicated scratch arenas per thread. + +Phase 3: Evaluate BDD Circuit + +Walk the BDD level by level. At each node: + +- CMux node: result = CMux(input_bit[selector], high_child, low_child) +- Copy node: pass through unchanged +- None: unused slot + +For each BDD level (top to bottom): For each node in level: if Cmux(bit_idx, hi, lo): state[j] = +CMux(bits[bit_idx], state[hi], state[lo]) if Copy: state[j] = state[j] (unchanged) Swap level +buffers + +The final level writes directly into the output GLWE polynomial, producing a fresh FheUint result. + +Supported Operations + +Each operation has a statically compiled BDD (generated at compile time): + +┌───────────────┬───────────────────────────────────────┐ │ Operation │ Description │ +├───────────────┼───────────────────────────────────────┤ │ Add │ 32-bit addition with carry chain │ +├───────────────┼───────────────────────────────────────┤ │ Sub │ 32-bit subtraction │ +├───────────────┼───────────────────────────────────────┤ │ Sll, Srl, Sra │ Shift left/right +(logical/arithmetic) │ ├───────────────┼───────────────────────────────────────┤ │ And, Or, Xor │ +Bitwise operations │ ├───────────────┼───────────────────────────────────────┤ │ Slt, Sltu │ +Signed/unsigned less-than comparison │ └───────────────┴───────────────────────────────────────┘ + +Blind Selection + +An additional primitive: select from 2^k encrypted values based on an encrypted index: + +glwe_blind_selection(index_bits, values[0..2^k]): Uses a tree of CMux gates (log₂ depth) Output: +values[index] — without revealing which index was selected + +This enables oblivious array access — critical for privacy-preserving computation. + +--- + +Lecture 16: Putting It All Together — End-to-End Flow + +The Complete Pipeline + + ┌─────────────────────────────────────┐ + │ KEY GENERATION │ + │ │ + │ Secret Key (s) │ + │ ↓ │ + │ Blind Rotation Keys (BRK) │ + │ = GGSW encryptions of s bits │ + │ ↓ │ + │ Automorphism Keys (ATK) │ + │ = GGLWE for trace operations │ + │ ↓ │ + │ Tensor Switch Key (TSK) │ + │ = for GGLWE→GGSW conversion │ + │ ↓ │ + │ Keyswitching Keys (KSK) │ + │ = for GLWE↔LWE conversion │ + └─────────────────────────────────────┘ + │ + ┌───────────────┴───────────────┐ + ▼ ▼ + ┌──────────────┐ ┌──────────────┐ + │ CLIENT │ │ SERVER │ + │ │ │ │ + │ plaintext │ │ │ + │ = 42 (u32) │ │ │ + │ ↓ │ send ct │ │ + │ encrypt │ ────────────► │ FheUint │ + │ each bit │ send keys │ (packed) │ + │ │ ────────────► │ ↓ │ + │ │ │ prepare │ + │ │ │ (circuit │ + │ │ │ bootstrap │ + │ │ │ each bit) │ + │ │ │ ↓ │ + │ │ │ FheUint- │ + │ │ │ Prepared │ + │ │ │ (32 GGSWs) │ + │ │ │ ↓ │ + │ │ │ evaluate │ + │ │ │ BDD circuit │ + │ │ │ (CMux gates)│ + │ │ │ ↓ │ + │ decrypt ◄──────────────────│ FheUint │ + │ = 84 │ send result │ (result) │ + │ │ │ │ + └───────────┘ └──────────────┘ + +Noise Budget Through the Pipeline + +Operation Noise Level ────────────────────────────────────────────── Fresh encryption █░░░░░░░░░ +(tiny: σ = 3.2) + After GLWE addition █░░░░░░░░░ (adds linearly) + After external product ██░░░░░░░░ (controlled by gadget) + After blind rotation ████░░░░░░ (n_lwe external products) + After circuit bootstrapping ██░░░░░░░░ (REFRESHED! lower noise) + After BDD circuit evaluation ████░░░░░░ (CMux chain) + After another bootstrapping ██░░░░░░░░ (REFRESHED again) + ────────── + Decryption threshold: past here → errors + +The key insight: bootstrapping resets the noise. As long as the noise before bootstrapping stays +below the threshold, computation can continue indefinitely. + +--- + +Lecture 17: Memory & Performance Architecture + +Three-Layer Layout System + +Every ciphertext exists in three forms, optimized for different use cases: + +┌─────────────┐ ┌─────────────┐ ┌─────────────┐ + │ STANDARD │ │ COMPRESSED │ │ PREPARED │ │ │ │ │ │ │ + │ VecZnx │ │ VecZnx + │ │ VecZnxDft │ │ (i64 limbs) │ │ 32-byte │ │ (DFT domain)│ + │ │ │ seed │ │ │ + │ Full size │ │ ~½ size │ │ Backend- │ + │ Portable │ │ Portable │ │ specific │ + │ Serializable│ │ Serializable│ │ Fast ops │ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ + │ │ │ + │ For computation │ For storage │ For multiplication + │ and I/O │ and transfer │ and keyswitching + +Compressed form: the random mask polynomials are replaced by a 32-byte seed. The mask can be +regenerated from the seed using a PRNG. This nearly halves storage + cost. + +Prepared form: polynomials are transformed to DFT/NTT domain. This is the form used during +computation — all multiplications become pointwise and fast. + +Scratch Allocation (Zero Heap Allocation) + +Poulpy never allocates heap memory during cryptographic operations. Instead, it uses arena-style +scratch allocation: + +1. Before computation: allocate one big scratch buffer + let scratch = module.scratch_alloc(required_bytes); + +2. During computation: carve temporary slices from the buffer + let (tmp, remaining_scratch) = scratch.take_slice(size); + // use tmp... + // tmp is automatically "freed" when this operation returns + +3. Reuse the same buffer for the next operation + +Why? Memory allocation is slow and unpredictable. In cryptographic workloads with many repeated +operations (thousands of external products during bootstrapping), avoiding allocation overhead is +critical for performance. + +Backend Abstraction + +The entire architecture is backend-agnostic: + +┌──────────────────────────────────────────────┐ + │ poulpy-schemes │ │ (blind rotation, CMux, BDD) │ + ├──────────────────────────────────────────────┤ │ poulpy-core │ + │ (GLWE, GGSW, external product, keyswitch) │ ├──────────────────────────────────────────────┤ + │ poulpy-hal │ │ (API traits: VecZnxAdd, VmpApply, ...) │ + ├───────────────────┬──────────────────────────┤ + │ poulpy-cpu-ref │ poulpy-cpu-avx │ │ (portable f64 │ (AVX2 + FMA │ + │ or NTT120) │ accelerated) │ + └───────────────────┴──────────────────────────┘ + +Write your FHE scheme code once. Swap the backend by changing a type parameter. Future GPU or FPGA +backends can be added without touching the scheme code. + +--- + +Lecture 18: Exam Review — Key Concepts Cheat Sheet + +┌───────────────────────┬──────────────────────────────────────────────────────────────────────┐ │ +Concept │ One-Line Summary │ + ├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ Torus │ Real numbers mod 1; wrapping arithmetic for FHE │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ Base-2^K limbs │ Decompose Torus elements into small digits for precision control │ + ├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ LWE │ b = ⟨a,s⟩ + m + e; hardness from noise │ + ├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ GLWE │ Polynomial-ring LWE; N message slots per ciphertext │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ GGSW │ Matrix of GLWE encrypting scaled message; enables external product │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ Gadget decomposition │ Break values into small digits to control noise growth │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ External product │ GGSW × GLWE → GLWE; core FHE multiply with controlled noise │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ Keyswitching │ Convert ciphertext from one key to another via GGLWE │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ CMux │ sel ? t : f on encrypted data; uses external product │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ NTT/FFT │ Fast polynomial multiplication in O(N log N) │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ Blind rotation │ Evaluate LUT on encrypted input; refreshes noise │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ Circuit bootstrapping │ GLWE → GGSW conversion via blind rotation + trace │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ BDD arithmetic │ Word-level ops via decision diagrams of CMux gates │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ Normalization │ Carry propagation between base-2^K limbs │ +├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ + │ Three layouts │ Standard (storage) → Compressed (transport) → Prepared (computation) │ +└───────────────────────┴──────────────────────────────────────────────────────────────────────┘ + +Common Exam Questions + +Q: Why does FHE need noise? + A: Without noise, LWE reduces to a system of linear equations, solvable in polynomial time. Noise +makes the problem equivalent to hard lattice problems. + +Q: Why does noise grow during computation? A: Addition increases noise linearly. Multiplication +(external product) multiplies the noise by the decomposed digits. The gadget decomposition keeps +these + digits small, but noise still accumulates. + +Q: How does bootstrapping solve the noise problem? + A: Bootstrapping evaluates the decryption function homomorphically, producing a fresh ciphertext +with low noise. The output encrypts the same message but with reset noise, enabling unlimited +further computation. + +Q: What is the advantage of the bivariate polynomial representation over RNS? + A: (1) Rescaling is a simple bit-shift, not an expensive basis conversion. (2) Digit decomposition +is O(n), not O(n²). (3) Deterministic computation — no floating-point non-determinism. (4) Unified +plaintext space across all operations. + +Q: Why separate FFT64 and NTT120 backends? + A: FFT64 (floating-point) is faster but approximate — fine for moderate precision. NTT120 (integer +CRT) is exact — needed when precision requirements are strict or when deterministic results are +mandatory. + +Q: What makes the external product efficient? + A: Gadget decomposition limits each digit's size, the GGSW pre-stores scaled encryptions at each +gadget level, VMP in DFT domain makes the actual multiplication O(N log N), and scratch allocation +avoids heap overhead. + +--- + +Good luck on the exam! The key to understanding FHE is following the noise: every design decision — +from gadget decomposition to bootstrapping to the bivariate representation — exists to keep noise +under control while enabling computation on encrypted data. diff --git a/logs.txt b/logs.txt new file mode 100644 index 0000000000..c8ff0138b1 --- /dev/null +++ b/logs.txt @@ -0,0 +1,2770 @@ + +> enclave-example@0.0.0 test:integration /Users/ctrlc03/Documents/zk/enclave/templates/default +> ./scripts/test_integration.sh + +[SERVER] +[SERVER] > enclave-example@0.0.0 dev:server /Users/ctrlc03/Documents/zk/enclave/templates/default +[SERVER] > ./scripts/dev_server.sh +[SERVER] +[CIPHER] +[CIPHER] > enclave-example@0.0.0 dev:ciphernodes /Users/ctrlc03/Documents/zk/enclave/templates/default +[CIPHER] > ./scripts/dev_ciphernodes.sh +[CIPHER] +[PROGRAM] +[PROGRAM] > enclave-example@0.0.0 dev:program /Users/ctrlc03/Documents/zk/enclave/templates/default +[PROGRAM] > ./scripts/dev_program.sh +[PROGRAM] +[SERVER] Waiting for evm node... +[PROGRAM] enclave rev = 90bb5fedd +[PROGRAM] Waiting on ciphernodes to be ready... +[CIPHER] Waiting for local evm node... +[SERVER] Waiting for contracts to be deployed... +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Setting up ZK prover... +[CIPHER] Setting up ZK prover... +[CIPHER] +[CIPHER] target bb version: 3.0.0-nightly.20260102 +[CIPHER] target circuits version: 0.1.15 +[CIPHER] +[CIPHER] ZK prover is already set up and up to date. +[CIPHER] bb version: 3.0.0-nightly.20260102 +[CIPHER] circuits version: 0.1.15 +[CIPHER] Use --force to reinstall. +[CIPHER] 2026-03-31T14:38:31.578582Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] 2026-03-31T14:38:31.583804Z  INFO execute:execute: actix_server::builder: starting 1 workers +[CIPHER] 2026-03-31T14:38:31.583837Z  INFO execute:execute: actix_server::server: Actix runtime found; starting in Actix runtime +[CIPHER] 2026-03-31T14:38:31.583860Z  INFO execute:execute: actix_server::server: starting service: "actix-web-service-127.0.0.1:13415", workers: 1, listening on: 127.0.0.1:13415 +[CIPHER] [cn3] 2026-03-31T14:38:31.588400Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [cn1] 2026-03-31T14:38:31.588405Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] ___ ___ ___ ___ ___ +[CIPHER] [cn1] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [cn1] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [cn1] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [cn1] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [cn1] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [cn1] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [cn1] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [cn1] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [cn1] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] ___ ___ ___ ___ ___ +[CIPHER] [cn3] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [cn3] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [cn3] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [cn3] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [cn3] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [cn3] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [cn3] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn1] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn3] +[CIPHER] [cn3] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [cn3] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [cn3] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [ag] 2026-03-31T14:38:31.589044Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] ___ ___ ___ ___ ___ +[CIPHER] [ag] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [ag] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [ag] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [ag] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [ag] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [ag] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [ag] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [ag] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [ag] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [cn5] 2026-03-31T14:38:31.589101Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [cn5] +[CIPHER] [ag] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [ag] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [cn5] +[CIPHER] [cn5] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [cn5] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [cn5] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [cn5] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [cn5] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [cn5] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [cn5] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [cn5] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn4] 2026-03-31T14:38:31.589164Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] ___ ___ ___ ___ ___ +[CIPHER] [cn4] +[CIPHER] [cn4] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [cn4] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [cn4] +[CIPHER] [cn4] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [cn4] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [cn4] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [cn4] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn2] 2026-03-31T14:38:31.589231Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] ___ ___ ___ ___ ___ +[CIPHER] [cn2] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [cn2] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [cn2] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [cn2] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [cn2] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [cn2] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [cn2] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [cn2] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [cn2] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [cn5] ___ ___ ___ ___ ___ +[CIPHER] [cn5] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [cn4] +[CIPHER] [cn4] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [cn4] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [cn4] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [cn4] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [cn2] +[CIPHER] [cn5] 2026-03-31T14:38:31.644932Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/db" +[CIPHER] [cn4] 2026-03-31T14:38:31.645025Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/db" +[CIPHER] [cn2] 2026-03-31T14:38:31.645026Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/db" +[CIPHER] [cn1] 2026-03-31T14:38:31.648010Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/db" +[CIPHER] [cn2] 2026-03-31T14:38:31.650700Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.0") +[CIPHER] [cn4] 2026-03-31T14:38:31.650701Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.31337") +[CIPHER] [cn2] 2026-03-31T14:38:31.650753Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn2] 2026-03-31T14:38:31.650772Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.0/00000000000000000000.index" +[CIPHER] [cn1] 2026-03-31T14:38:31.650780Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.0") +[CIPHER] [cn1] 2026-03-31T14:38:31.650822Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn1] 2026-03-31T14:38:31.650827Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.0/00000000000000000000.index" +[CIPHER] [cn5] 2026-03-31T14:38:31.650783Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.31337") +[CIPHER] [cn5] 2026-03-31T14:38:31.650830Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn5] 2026-03-31T14:38:31.650870Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.31337/00000000000000000000.index" +[CIPHER] [cn4] 2026-03-31T14:38:31.650810Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn4] 2026-03-31T14:38:31.650817Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.31337/00000000000000000000.index" +[CIPHER] [cn3] 2026-03-31T14:38:31.650985Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/db" +[CIPHER] [ag] 2026-03-31T14:38:31.652105Z  INFO execute: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/db" +[CIPHER] [cn3] 2026-03-31T14:38:31.652524Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.0") +[CIPHER] [cn3] 2026-03-31T14:38:31.652684Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn3] 2026-03-31T14:38:31.652696Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.0/00000000000000000000.index" +[CIPHER] [ag] 2026-03-31T14:38:31.655283Z  INFO execute: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.0") +[CIPHER] [cn2] 2026-03-31T14:38:31.655366Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.31337") +[CIPHER] [cn2] 2026-03-31T14:38:31.655550Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn2] 2026-03-31T14:38:31.655556Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.31337/00000000000000000000.index" +[CIPHER] [ag] 2026-03-31T14:38:31.655565Z  INFO execute: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [ag] 2026-03-31T14:38:31.655579Z  INFO execute: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.0/00000000000000000000.index" +[CIPHER] [cn4] 2026-03-31T14:38:31.655697Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.0") +[CIPHER] [cn1] 2026-03-31T14:38:31.655741Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.31337") +[CIPHER] [cn1] 2026-03-31T14:38:31.655786Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn1] 2026-03-31T14:38:31.655789Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.31337/00000000000000000000.index" +[CIPHER] [cn4] 2026-03-31T14:38:31.655749Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn4] 2026-03-31T14:38:31.655752Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.0/00000000000000000000.index" +[CIPHER] [cn3] 2026-03-31T14:38:31.655919Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.31337") +[CIPHER] [cn3] 2026-03-31T14:38:31.655955Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn3] 2026-03-31T14:38:31.655958Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.31337/00000000000000000000.index" +[CIPHER] [cn4] 2026-03-31T14:38:31.656079Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [cn2] from_sled_store_with_buffer... +[CIPHER] [cn4] 2026-03-31T14:38:31.656094Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/db" +[CIPHER] [cn1] 2026-03-31T14:38:31.656126Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [cn2] 2026-03-31T14:38:31.656002Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/db" +[CIPHER] [cn4] from_sled_store_with_buffer... +[CIPHER] [cn1] 2026-03-31T14:38:31.656157Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/db" +[CIPHER] [cn5] 2026-03-31T14:38:31.656172Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.0") +[CIPHER] [cn1] from_sled_store_with_buffer... +[CIPHER] [cn2] 2026-03-31T14:38:31.655974Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [ag] 2026-03-31T14:38:31.656303Z  INFO execute: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [ag] 2026-03-31T14:38:31.656266Z  INFO execute: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.31337") +[CIPHER] [ag] 2026-03-31T14:38:31.656306Z  INFO execute: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.31337/00000000000000000000.index" +[CIPHER] [cn5] 2026-03-31T14:38:31.656292Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn5] 2026-03-31T14:38:31.656299Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.0/00000000000000000000.index" +[CIPHER] [cn2] 2026-03-31T14:38:31.656345Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [cn4] 2026-03-31T14:38:31.656358Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [cn1] 2026-03-31T14:38:31.656446Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [cn3] 2026-03-31T14:38:31.656469Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [cn5] 2026-03-31T14:38:31.656558Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [cn3] from_sled_store_with_buffer... +[CIPHER] [cn5] 2026-03-31T14:38:31.656684Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/db" +[CIPHER] [cn3] 2026-03-31T14:38:31.656481Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/db" +[CIPHER] [cn5] from_sled_store_with_buffer... +[CIPHER] [cn3] 2026-03-31T14:38:31.656790Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [cn4] 2026-03-31T14:38:31.656878Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [cn5] 2026-03-31T14:38:31.656927Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [cn2] 2026-03-31T14:38:31.656931Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [cn1] 2026-03-31T14:38:31.656993Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [cn5] 2026-03-31T14:38:31.657194Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [cn3] 2026-03-31T14:38:31.657218Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [cn4] 2026-03-31T14:38:31.663377Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [cn4] 2026-03-31T14:38:31.663401Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [cn3] 2026-03-31T14:38:31.663377Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [cn3] 2026-03-31T14:38:31.663405Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [cn3] 2026-03-31T14:38:31.663596Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [cn1] 2026-03-31T14:38:31.663429Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [cn1] 2026-03-31T14:38:31.663440Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [cn1] 2026-03-31T14:38:31.663666Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [cn2] 2026-03-31T14:38:31.663518Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [cn2] 2026-03-31T14:38:31.663547Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [cn2] 2026-03-31T14:38:31.663684Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [cn4] 2026-03-31T14:38:31.663581Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [cn5] 2026-03-31T14:38:31.663640Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [cn5] 2026-03-31T14:38:31.663663Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [cn5] 2026-03-31T14:38:31.663714Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [cn3] 2026-03-31T14:38:31.663781Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [cn4] 2026-03-31T14:38:31.663813Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [cn1] 2026-03-31T14:38:31.663860Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [cn5] 2026-03-31T14:38:31.663871Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [cn2] 2026-03-31T14:38:31.664144Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [ag] 2026-03-31T14:38:31.674985Z  INFO execute: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [ag] 2026-03-31T14:38:31.675036Z  INFO execute: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/db" +[CIPHER] [ag] from_sled_store_with_buffer... +[CIPHER] [ag] 2026-03-31T14:38:31.675499Z  INFO execute: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [ag] 2026-03-31T14:38:31.675728Z  INFO execute:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [ag] 2026-03-31T14:38:31.680145Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [ag] 2026-03-31T14:38:31.680160Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Attaching CommitteeFinalizer for score sortition +[CIPHER] [ag] 2026-03-31T14:38:31.680331Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [ag] 2026-03-31T14:38:31.680387Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up FheExtension +[CIPHER] [ag] 2026-03-31T14:38:31.680433Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up PublicKeyAggregationExtension +[CIPHER] [ag] 2026-03-31T14:38:31.680436Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [ag] 2026-03-31T14:38:31.680593Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [ag] 2026-03-31T14:38:31.680632Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors for aggregator +[CIPHER] [ag] 2026-03-31T14:38:31.680876Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdPlaintextAggregatorExtension +[CIPHER] [ag] 2026-03-31T14:38:31.680883Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [ag] 2026-03-31T14:38:31.680887Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [ag] 2026-03-31T14:38:31.680890Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [ag] 2026-03-31T14:38:31.681216Z  INFO execute: e3_net: Found keypair in repository +[CIPHER] [ag] 2026-03-31T14:38:31.683919Z  INFO execute: libp2p_swarm: local_peer_id=12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By +[CIPHER] [ag] 2026-03-31T14:38:31.684059Z  INFO execute: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [ag] 2026-03-31T14:38:31.684721Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [ag] 2026-03-31T14:38:31.684728Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [ag] 2026-03-31T14:38:31.684746Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [ag] 2026-03-31T14:38:31.684748Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [ag] 2026-03-31T14:38:31.684749Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [ag] 2026-03-31T14:38:31.684750Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [ag] 2026-03-31T14:38:31.685261Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [ag] 2026-03-31T14:38:31.685309Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [ag] 2026-03-31T14:38:31.685313Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [ag] 2026-03-31T14:38:31.685316Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [ag] 2026-03-31T14:38:31.685318Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [ag] 2026-03-31T14:38:31.685333Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [ag] 2026-03-31T14:38:31.685414Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [ag] 2026-03-31T14:38:31.685421Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [ag] 2026-03-31T14:38:31.685425Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [ag] 2026-03-31T14:38:31.685433Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [ag] 2026-03-31T14:38:31.686669Z  INFO execute: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [ag] 2026-03-31T14:38:31.686679Z  INFO execute: e3_sync::sync: Loading EventStore events... +[CIPHER] [ag] 2026-03-31T14:38:31.686716Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending +[CIPHER] [ag] 2026-03-31T14:38:31.686720Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending +[CIPHER] [ag] 2026-03-31T14:38:31.686721Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [ag] 2026-03-31T14:38:31.686753Z  INFO execute: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [ag] 2026-03-31T14:38:31.686756Z  INFO execute: e3_sync::sync: Replaying events to actors... +[CIPHER] [ag] 2026-03-31T14:38:31.686760Z  INFO execute: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [ag] 2026-03-31T14:38:31.686759Z  INFO execute: e3_sync::sync: Events replayed. +[CIPHER] [ag] 2026-03-31T14:38:31.688680Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x12dcf67df19a566d4775f5232aeff5834e6269f96c56cd51b107665e65c2e630), causation_id: EventId(0x12dcf67df19a566d4775f5232aeff5834e6269f96c56cd51b107665e65c2e630), origin_id: EventId(0x12dcf67df19a566d4775f5232aeff5834e6269f96c56cd51b107665e65c2e630), seq: 1, ts: 32742378805932451046379334612169053, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:38:31.690200Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [ag] 2026-03-31T14:38:31.690216Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [ag] 2026-03-31T14:38:31.690324Z  INFO execute: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [ag] 2026-03-31T14:38:31.690333Z  INFO execute: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [ag] 2026-03-31T14:38:31.690337Z  INFO execute: e3_sync::sync: Waiting until NetReady... +[CIPHER] [ag] 2026-03-31T14:38:31.693243Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn3] 2026-03-31T14:38:31.696314Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +[CIPHER] [cn3] 2026-03-31T14:38:31.696336Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +[CIPHER] [cn3] 2026-03-31T14:38:31.696368Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [cn3] 2026-03-31T14:38:31.696371Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [cn3] 2026-03-31T14:38:31.696373Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [cn3] 2026-03-31T14:38:31.696423Z  INFO execute:app: e3_net: Found keypair in repository +[CIPHER] [cn3] 2026-03-31T14:38:31.696943Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd +[CIPHER] [cn3] 2026-03-31T14:38:31.697008Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [cn3] 2026-03-31T14:38:31.697221Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [cn3] 2026-03-31T14:38:31.697223Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn3] 2026-03-31T14:38:31.697225Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn3] 2026-03-31T14:38:31.697226Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn3] 2026-03-31T14:38:31.697227Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn3] 2026-03-31T14:38:31.697227Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn3] 2026-03-31T14:38:31.697294Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn3] 2026-03-31T14:38:31.697304Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn3] 2026-03-31T14:38:31.697305Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn3] 2026-03-31T14:38:31.697307Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn3] 2026-03-31T14:38:31.697308Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn3] 2026-03-31T14:38:31.697313Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-03-31T14:38:31.697328Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-03-31T14:38:31.697333Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-03-31T14:38:31.697337Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-03-31T14:38:31.697331Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-03-31T14:38:31.697691Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [cn3] 2026-03-31T14:38:31.697697Z  INFO execute:app: e3_sync::sync: Loading EventStore events... +[CIPHER] [cn3] 2026-03-31T14:38:31.697717Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending +[CIPHER] [cn3] 2026-03-31T14:38:31.697719Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending +[CIPHER] [cn3] 2026-03-31T14:38:31.697721Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [cn3] 2026-03-31T14:38:31.697732Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [cn3] 2026-03-31T14:38:31.697734Z  INFO execute:app: e3_sync::sync: Replaying events to actors... +[CIPHER] [cn3] 2026-03-31T14:38:31.697735Z  INFO execute:app: e3_sync::sync: Events replayed. +[CIPHER] [cn3] 2026-03-31T14:38:31.697736Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [cn5] 2026-03-31T14:38:31.697684Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +[CIPHER] [cn5] 2026-03-31T14:38:31.697702Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +[CIPHER] [cn5] 2026-03-31T14:38:31.697763Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [cn5] 2026-03-31T14:38:31.697767Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [cn5] 2026-03-31T14:38:31.697770Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [cn1] 2026-03-31T14:38:31.697695Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +[CIPHER] [cn1] 2026-03-31T14:38:31.697703Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +[CIPHER] [cn1] 2026-03-31T14:38:31.697739Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [cn1] 2026-03-31T14:38:31.697741Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [cn1] 2026-03-31T14:38:31.697743Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [cn1] 2026-03-31T14:38:31.697786Z  INFO execute:app: e3_net: Found keypair in repository +[CIPHER] [cn5] 2026-03-31T14:38:31.697896Z  INFO execute:app: e3_net: Found keypair in repository +[CIPHER] [cn4] 2026-03-31T14:38:31.698397Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +[CIPHER] [cn4] 2026-03-31T14:38:31.698413Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +[CIPHER] [cn1] 2026-03-31T14:38:31.698472Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 +[CIPHER] [cn4] 2026-03-31T14:38:31.698485Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [cn4] 2026-03-31T14:38:31.698491Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [cn4] 2026-03-31T14:38:31.698494Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [cn1] 2026-03-31T14:38:31.698524Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [cn4] 2026-03-31T14:38:31.698560Z  INFO execute:app: e3_net: Found keypair in repository +[CIPHER] [cn5] 2026-03-31T14:38:31.698563Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 +[CIPHER] [cn5] 2026-03-31T14:38:31.698611Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [cn2] 2026-03-31T14:38:31.698608Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +[CIPHER] [cn2] 2026-03-31T14:38:31.698622Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +[CIPHER] [cn2] 2026-03-31T14:38:31.698700Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [cn2] 2026-03-31T14:38:31.698709Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [cn2] 2026-03-31T14:38:31.698713Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [cn1] 2026-03-31T14:38:31.698704Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [cn1] 2026-03-31T14:38:31.698708Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698712Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698711Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698772Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698780Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698782Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698797Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn1] 2026-03-31T14:38:31.698800Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn1] 2026-03-31T14:38:31.698806Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-03-31T14:38:31.698683Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xe8dabff44837ac971c548bab3c02a30d4009c256da74ab04a64fd37ea167282d), causation_id: EventId(0xe8dabff44837ac971c548bab3c02a30d4009c256da74ab04a64fd37ea167282d), origin_id: EventId(0xe8dabff44837ac971c548bab3c02a30d4009c256da74ab04a64fd37ea167282d), seq: 1, ts: 32742378806134885615844226005960545, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:38:31.698976Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.698977Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.698978Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.698980Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698710Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698713Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698778Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698781Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn1] 2026-03-31T14:38:31.698787Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn1] 2026-03-31T14:38:31.698803Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn2] 2026-03-31T14:38:31.698795Z  INFO execute:app: e3_net: Found keypair in repository +[CIPHER] [cn5] 2026-03-31T14:38:31.698971Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [cn5] 2026-03-31T14:38:31.698974Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.699049Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.699057Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.699059Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.699060Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.699061Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.699068Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn5] 2026-03-31T14:38:31.699077Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn5] 2026-03-31T14:38:31.699081Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn5] 2026-03-31T14:38:31.699083Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn5] 2026-03-31T14:38:31.699086Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn1] 2026-03-31T14:38:31.699108Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [cn1] 2026-03-31T14:38:31.699111Z  INFO execute:app: e3_sync::sync: Loading EventStore events... +[CIPHER] [cn1] 2026-03-31T14:38:31.699149Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 1 pending +[CIPHER] [cn1] 2026-03-31T14:38:31.699151Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +[CIPHER] [cn1] 2026-03-31T14:38:31.699152Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [cn1] 2026-03-31T14:38:31.699176Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [cn1] 2026-03-31T14:38:31.699178Z  INFO execute:app: e3_sync::sync: Replaying events to actors... +[CIPHER] [cn1] 2026-03-31T14:38:31.699179Z  INFO execute:app: e3_sync::sync: Events replayed. +[CIPHER] [cn1] 2026-03-31T14:38:31.699180Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [cn2] 2026-03-31T14:38:31.699335Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr +[CIPHER] [cn2] 2026-03-31T14:38:31.699378Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [cn4] 2026-03-31T14:38:31.699390Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH +[CIPHER] [cn4] 2026-03-31T14:38:31.699449Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [cn2] 2026-03-31T14:38:31.699550Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [cn2] 2026-03-31T14:38:31.699553Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn2] 2026-03-31T14:38:31.699560Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn2] 2026-03-31T14:38:31.699561Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn2] 2026-03-31T14:38:31.699562Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn2] 2026-03-31T14:38:31.699562Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.699610Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [cn5] 2026-03-31T14:38:31.699613Z  INFO execute:app: e3_sync::sync: Loading EventStore events... +[CIPHER] [cn5] 2026-03-31T14:38:31.699632Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending +[CIPHER] [cn5] 2026-03-31T14:38:31.699633Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending +[CIPHER] [cn5] 2026-03-31T14:38:31.699634Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [cn4] 2026-03-31T14:38:31.699629Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [cn4] 2026-03-31T14:38:31.699632Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn4] 2026-03-31T14:38:31.699634Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn4] 2026-03-31T14:38:31.699635Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn4] 2026-03-31T14:38:31.699636Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn4] 2026-03-31T14:38:31.699637Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn5] 2026-03-31T14:38:31.699641Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [cn5] 2026-03-31T14:38:31.699643Z  INFO execute:app: e3_sync::sync: Replaying events to actors... +[CIPHER] [cn5] 2026-03-31T14:38:31.699644Z  INFO execute:app: e3_sync::sync: Events replayed. +[CIPHER] [cn5] 2026-03-31T14:38:31.699646Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [cn2] 2026-03-31T14:38:31.699742Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn2] 2026-03-31T14:38:31.699750Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn2] 2026-03-31T14:38:31.699752Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn2] 2026-03-31T14:38:31.699753Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn2] 2026-03-31T14:38:31.699754Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn2] 2026-03-31T14:38:31.699760Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-03-31T14:38:31.699777Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn4] 2026-03-31T14:38:31.699834Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn4] 2026-03-31T14:38:31.699836Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn4] 2026-03-31T14:38:31.699837Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn4] 2026-03-31T14:38:31.699838Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn4] 2026-03-31T14:38:31.699843Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn2] 2026-03-31T14:38:31.699845Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn2] 2026-03-31T14:38:31.699855Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn2] 2026-03-31T14:38:31.699859Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn2] 2026-03-31T14:38:31.699863Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-03-31T14:38:31.699885Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-03-31T14:38:31.699892Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-03-31T14:38:31.699894Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-03-31T14:38:31.699896Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-03-31T14:38:31.699977Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 1) +[CIPHER] [cn4] 2026-03-31T14:38:31.700401Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [cn4] 2026-03-31T14:38:31.700417Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending +[CIPHER] [cn4] 2026-03-31T14:38:31.700419Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending +[CIPHER] [cn4] 2026-03-31T14:38:31.700405Z  INFO execute:app: e3_sync::sync: Loading EventStore events... +[CIPHER] [cn4] 2026-03-31T14:38:31.700420Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [cn4] 2026-03-31T14:38:31.700428Z  INFO execute:app: e3_sync::sync: Replaying events to actors... +[CIPHER] [cn4] 2026-03-31T14:38:31.700431Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [cn4] 2026-03-31T14:38:31.700427Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [ag] 2026-03-31T14:38:31.700441Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 1) +[CIPHER] [cn4] 2026-03-31T14:38:31.700429Z  INFO execute:app: e3_sync::sync: Events replayed. +[CIPHER] [cn3] 2026-03-31T14:38:31.700495Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn3] 2026-03-31T14:38:31.700504Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [cn3] 2026-03-31T14:38:31.700512Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [cn3] 2026-03-31T14:38:31.700628Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [cn3] 2026-03-31T14:38:31.700635Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... +[CIPHER] [cn3] 2026-03-31T14:38:31.700633Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [cn2] 2026-03-31T14:38:31.700856Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 1) +[CIPHER] [ag] 2026-03-31T14:38:31.700894Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn2] 2026-03-31T14:38:31.700909Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [cn2] 2026-03-31T14:38:31.700911Z  INFO execute:app: e3_sync::sync: Loading EventStore events... +[CIPHER] [cn2] 2026-03-31T14:38:31.700916Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn2] 2026-03-31T14:38:31.700924Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending +[CIPHER] [cn2] 2026-03-31T14:38:31.700926Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending +[CIPHER] [cn2] 2026-03-31T14:38:31.700927Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [cn3] 2026-03-31T14:38:31.701041Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn3] 2026-03-31T14:38:31.701558Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2) +[CIPHER] [cn2] 2026-03-31T14:38:31.701661Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [cn2] 2026-03-31T14:38:31.701664Z  INFO execute:app: e3_sync::sync: Replaying events to actors... +[CIPHER] [cn2] 2026-03-31T14:38:31.701666Z  INFO execute:app: e3_sync::sync: Events replayed. +[CIPHER] [cn2] 2026-03-31T14:38:31.701667Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [cn2] 2026-03-31T14:38:31.701692Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 2) +[CIPHER] [cn2] 2026-03-31T14:38:31.701712Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 3) +[CIPHER] [ag] 2026-03-31T14:38:31.701911Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2) +[CIPHER] [cn2] 2026-03-31T14:38:31.703737Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x65dfb533a11f894b7bfbb44f5239934459790bbe4a6eb490f48ada95c63b77d9), causation_id: EventId(0x65dfb533a11f894b7bfbb44f5239934459790bbe4a6eb490f48ada95c63b77d9), origin_id: EventId(0x65dfb533a11f894b7bfbb44f5239934459790bbe4a6eb490f48ada95c63b77d9), seq: 1, ts: 32742378806207399766797978445043941, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-03-31T14:38:31.703739Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x044b395665d9fa36a21ee215c6ab660a99ccd241606ea1448e06ed4e1c522bc9), causation_id: EventId(0x044b395665d9fa36a21ee215c6ab660a99ccd241606ea1448e06ed4e1c522bc9), origin_id: EventId(0x044b395665d9fa36a21ee215c6ab660a99ccd241606ea1448e06ed4e1c522bc9), seq: 1, ts: 32742378806161522714286661181798716, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:38:31.703805Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xe067701efbfdd9b3e621da30c14ca84bc28a8fe5c6c2092eb5248c682cf8de87), causation_id: EventId(0xe067701efbfdd9b3e621da30c14ca84bc28a8fe5c6c2092eb5248c682cf8de87), origin_id: EventId(0xe067701efbfdd9b3e621da30c14ca84bc28a8fe5c6c2092eb5248c682cf8de87), seq: 1, ts: 32742378806184581144378800481115905, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:38:31.703847Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xad41790703603750cc9a89e740b776570c8c2b05a58c4b4a4e532ff4c7d1f3bf), causation_id: EventId(0xad41790703603750cc9a89e740b776570c8c2b05a58c4b4a4e532ff4c7d1f3bf), origin_id: EventId(0xad41790703603750cc9a89e740b776570c8c2b05a58c4b4a4e532ff4c7d1f3bf), seq: 1, ts: 32742378806170100450280938511990853, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-03-31T14:38:31.704329Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [cn2] 2026-03-31T14:38:31.704336Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [cn2] 2026-03-31T14:38:31.704809Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [cn2] 2026-03-31T14:38:31.704816Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [cn2] 2026-03-31T14:38:31.704819Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... +[CIPHER] [ag] 2026-03-31T14:38:31.705052Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 3) +[CIPHER] [cn3] 2026-03-31T14:38:31.705382Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 3) +[CIPHER] [cn3] 2026-03-31T14:38:31.705842Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 4) +[CIPHER] [cn2] 2026-03-31T14:38:31.705554Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn4] 2026-03-31T14:38:31.705966Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 1) +[CIPHER] [cn4] 2026-03-31T14:38:31.705999Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 2) +[CIPHER] [cn4] 2026-03-31T14:38:31.706016Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 3) +[CIPHER] [cn4] 2026-03-31T14:38:31.706142Z  INFO e3_net::net_interface: Peer disconnected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2, cause: Some(KeepAliveTimeout)) +[CIPHER] [cn4] 2026-03-31T14:38:31.706150Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn4] 2026-03-31T14:38:31.706155Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [cn4] 2026-03-31T14:38:31.706163Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [cn4] 2026-03-31T14:38:31.706338Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [cn4] 2026-03-31T14:38:31.706353Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [cn4] 2026-03-31T14:38:31.706357Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... +[CIPHER] [cn3] 2026-03-31T14:38:31.706205Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 5) +[CIPHER] [cn1] 2026-03-31T14:38:31.706274Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 1) +[CIPHER] [cn1] 2026-03-31T14:38:31.706301Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 2) +[CIPHER] [cn1] 2026-03-31T14:38:31.706320Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 3) +[CIPHER] [cn5] 2026-03-31T14:38:31.706456Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 1) +[CIPHER] [cn5] 2026-03-31T14:38:31.706482Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 2) +[CIPHER] [cn5] 2026-03-31T14:38:31.706500Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 3) +[CIPHER] [cn2] 2026-03-31T14:38:31.706544Z  INFO e3_net::net_interface: Peer disconnected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 2, cause: Some(IO(Custom { kind: Other, error: Connection(ConnectionError(ApplicationClosed(ApplicationClose { error_code: 0, reason: b"" }))) }))) +[CIPHER] [cn1] 2026-03-31T14:38:31.706917Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn1] 2026-03-31T14:38:31.706933Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [cn1] 2026-03-31T14:38:31.706923Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [cn1] 2026-03-31T14:38:31.706985Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [cn1] 2026-03-31T14:38:31.706991Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [cn1] 2026-03-31T14:38:31.706993Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... +[CIPHER] [cn5] 2026-03-31T14:38:31.707056Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn5] 2026-03-31T14:38:31.707073Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [cn5] 2026-03-31T14:38:31.707096Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [cn1] 2026-03-31T14:38:31.707558Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 4) +[CIPHER] [cn2] 2026-03-31T14:38:31.707605Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 3) +[CIPHER] [cn4] 2026-03-31T14:38:31.707633Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 3) +[CIPHER] [cn2] 2026-03-31T14:38:31.707646Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 4) +[CIPHER] [cn2] 2026-03-31T14:38:31.707756Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [cn2] 2026-03-31T14:38:31.707759Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [cn2] 2026-03-31T14:38:31.707873Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378806319758884950943323936997, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:38:31.708018Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 4) +[CIPHER] [cn2] 2026-03-31T14:38:31.708047Z  INFO execute:app: e3_sync::sync: NetReady! +[CIPHER] [ag] 2026-03-31T14:38:31.708064Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 5) +[CIPHER] [cn2] 2026-03-31T14:38:31.708051Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [cn2] 2026-03-31T14:38:31.708120Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378806325219121196761351215333, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-03-31T14:38:31.708145Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [cn2] 2026-03-31T14:38:31.708157Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [cn2] 2026-03-31T14:38:31.708160Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [cn2] 2026-03-31T14:38:31.708161Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [cn2] 2026-03-31T14:38:31.708164Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [cn2] 2026-03-31T14:38:31.708183Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [cn2] 2026-03-31T14:38:31.708243Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378806327838558855228107544805, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn2] 2026-03-31T14:38:31.708270Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [cn2] 2026-03-31T14:38:31.708272Z  INFO execute:app: e3_sync::sync: Historical events sorted. +[CIPHER] [cn2] 2026-03-31T14:38:31.708274Z  INFO execute:app: e3_sync::sync: Effects enabled +[CIPHER] [cn2] 2026-03-31T14:38:31.708276Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [cn2] 2026-03-31T14:38:31.708277Z  INFO execute:app: e3_sync::sync: Historical events published. +[CIPHER] [cn2] 2026-03-31T14:38:31.708279Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [cn2] 2026-03-31T14:38:31.708281Z  INFO execute:app: e3_sync::sync: Sync finished. +[CIPHER] [cn2] 2026-03-31T14:38:31.708292Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn2/0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC/12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr) +[CIPHER] [cn2] 2026-03-31T14:38:31.708330Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378806329222064660756323916005, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-03-31T14:38:31.708345Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378806329332745125198581225701, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-03-31T14:38:31.708386Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [cn2] 2026-03-31T14:38:31.708441Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] [cn4] 2026-03-31T14:38:31.708552Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 4) +[CIPHER] [cn1] 2026-03-31T14:38:31.708579Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 5) +[CIPHER] [cn4] 2026-03-31T14:38:31.708696Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn4] 2026-03-31T14:38:31.708702Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [cn4] 2026-03-31T14:38:31.708703Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [cn4] 2026-03-31T14:38:31.708729Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378806337154164612452182531841, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:38:31.708902Z  INFO execute:app: e3_sync::sync: NetReady! +[CIPHER] [cn4] 2026-03-31T14:38:31.708905Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [cn4] 2026-03-31T14:38:31.708948Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378806340917300403488931061505, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:38:31.708966Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [cn4] 2026-03-31T14:38:31.708973Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [cn4] 2026-03-31T14:38:31.708975Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [cn4] 2026-03-31T14:38:31.708976Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [cn4] 2026-03-31T14:38:31.708977Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [cn4] 2026-03-31T14:38:31.708981Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [cn4] 2026-03-31T14:38:31.709000Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378806342337699697164566535937, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn1] 2026-03-31T14:38:31.709089Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn4] 2026-03-31T14:38:31.709105Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [cn4] 2026-03-31T14:38:31.709107Z  INFO execute:app: e3_sync::sync: Historical events sorted. +[CIPHER] [cn4] 2026-03-31T14:38:31.709192Z  INFO execute:app: e3_sync::sync: Effects enabled +[CIPHER] [cn4] 2026-03-31T14:38:31.709224Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [cn4] 2026-03-31T14:38:31.709225Z  INFO execute:app: e3_sync::sync: Historical events published. +[CIPHER] [cn4] 2026-03-31T14:38:31.709226Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [cn4] 2026-03-31T14:38:31.709229Z  INFO execute:app: e3_sync::sync: Sync finished. +[CIPHER] [cn4] 2026-03-31T14:38:31.709266Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn4/0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65/12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH) +[CIPHER] [cn4] 2026-03-31T14:38:31.709428Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378806345971708279685348204289, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:38:31.709445Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378806346820258507075987578625, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:38:31.709498Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [cn4] 2026-03-31T14:38:31.709510Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] [cn5] 2026-03-31T14:38:31.709687Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [cn5] 2026-03-31T14:38:31.709694Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [cn5] 2026-03-31T14:38:31.709697Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... +[CIPHER] [cn5] 2026-03-31T14:38:31.709777Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 4) +[CIPHER] [cn5] 2026-03-31T14:38:31.709806Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 5) +[CIPHER] [cn5] 2026-03-31T14:38:31.710762Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn2] 2026-03-31T14:38:31.711381Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 5) +[CIPHER] [cn4] 2026-03-31T14:38:31.711722Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 5) +[CIPHER] [ag] 2026-03-31T14:38:32.695566Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [ag] 2026-03-31T14:38:32.695591Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [ag] 2026-03-31T14:38:32.695800Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378824542061423515667859386717, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:38:32.696274Z  INFO execute: e3_sync::sync: NetReady! +[CIPHER] [ag] 2026-03-31T14:38:32.696284Z  INFO execute: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [ag] 2026-03-31T14:38:32.696453Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378824554918804135043416863069, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:38:32.696499Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [ag] 2026-03-31T14:38:32.696527Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [ag] 2026-03-31T14:38:32.696530Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [ag] 2026-03-31T14:38:32.696532Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [ag] 2026-03-31T14:38:32.696535Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [ag] 2026-03-31T14:38:32.696548Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [ag] 2026-03-31T14:38:32.696635Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378824559751851082355319386461, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:38:32.696736Z  INFO execute: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [ag] 2026-03-31T14:38:32.696743Z  INFO execute: e3_sync::sync: Historical events sorted. +[CIPHER] [ag] 2026-03-31T14:38:32.696749Z  INFO execute: e3_sync::sync: Effects enabled +[CIPHER] [ag] 2026-03-31T14:38:32.696751Z  INFO execute: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [ag] 2026-03-31T14:38:32.696753Z  INFO execute: e3_sync::sync: Historical events published. +[CIPHER] [ag] 2026-03-31T14:38:32.696755Z  INFO execute: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [ag] 2026-03-31T14:38:32.696758Z  INFO execute: e3_sync::sync: Sync finished. +[CIPHER] [ag] 2026-03-31T14:38:32.696786Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (ag/0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266/12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By) +[CIPHER] [ag] 2026-03-31T14:38:32.696873Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378824563312072688581262848349, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:38:32.696915Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378824563514986873392067916125, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:38:32.697071Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [ag] 2026-03-31T14:38:32.697108Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] [cn3] 2026-03-31T14:38:32.703403Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [cn3] 2026-03-31T14:38:32.703429Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [cn5] 2026-03-31T14:38:32.703450Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [cn5] 2026-03-31T14:38:32.703463Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [cn3] 2026-03-31T14:38:32.703648Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378824686647003565406099310433, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:38:32.703648Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378824687274192863913196060741, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-03-31T14:38:32.704012Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [cn5] 2026-03-31T14:38:32.704035Z  INFO execute:app: e3_sync::sync: NetReady! +[CIPHER] [cn5] 2026-03-31T14:38:32.704047Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [cn1] 2026-03-31T14:38:32.704036Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [cn3] 2026-03-31T14:38:32.704131Z  INFO execute:app: e3_sync::sync: NetReady! +[CIPHER] [cn3] 2026-03-31T14:38:32.704144Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [cn5] 2026-03-31T14:38:32.704144Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378824698176218611475541065797, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:38:32.704212Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [cn5] 2026-03-31T14:38:32.704215Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [cn5] 2026-03-31T14:38:32.704217Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [cn5] 2026-03-31T14:38:32.704237Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [cn1] 2026-03-31T14:38:32.704215Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378824697825730474072670894396, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:38:32.704268Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378824699910212554403266922337, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:38:32.704309Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [cn5] 2026-03-31T14:38:32.704288Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378824701607313009185517666373, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:38:32.704331Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [cn5] 2026-03-31T14:38:32.704189Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [cn3] 2026-03-31T14:38:32.704333Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [cn3] 2026-03-31T14:38:32.704335Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [cn5] 2026-03-31T14:38:32.704221Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [cn3] 2026-03-31T14:38:32.704347Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [cn3] 2026-03-31T14:38:32.704337Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [cn5] 2026-03-31T14:38:32.704339Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [cn5] 2026-03-31T14:38:32.704344Z  INFO execute:app: e3_sync::sync: Historical events sorted. +[CIPHER] [cn5] 2026-03-31T14:38:32.704349Z  INFO execute:app: e3_sync::sync: Effects enabled +[CIPHER] [cn5] 2026-03-31T14:38:32.704352Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [cn5] 2026-03-31T14:38:32.704355Z  INFO execute:app: e3_sync::sync: Historical events published. +[CIPHER] [cn5] 2026-03-31T14:38:32.704358Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [cn5] 2026-03-31T14:38:32.704361Z  INFO execute:app: e3_sync::sync: Sync finished. +[CIPHER] [cn5] 2026-03-31T14:38:32.704396Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn5/0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc/12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1) +[CIPHER] [cn3] 2026-03-31T14:38:32.704390Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378824703618008113218886797153, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:38:32.704455Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378824703525774392851311034437, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:38:32.704495Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378824703765582065809535205445, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-03-31T14:38:32.704586Z  INFO execute:app: e3_sync::sync: NetReady! +[CIPHER] [cn1] 2026-03-31T14:38:32.704599Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [cn5] 2026-03-31T14:38:32.704623Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] [cn5] 2026-03-31T14:38:32.704589Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [cn3] 2026-03-31T14:38:32.704733Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [cn3] 2026-03-31T14:38:32.704742Z  INFO execute:app: e3_sync::sync: Historical events sorted. +[CIPHER] [cn3] 2026-03-31T14:38:32.704747Z  INFO execute:app: e3_sync::sync: Effects enabled +[CIPHER] [cn3] 2026-03-31T14:38:32.704750Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [cn3] 2026-03-31T14:38:32.704773Z  INFO execute:app: e3_sync::sync: Historical events published. +[CIPHER] [cn3] 2026-03-31T14:38:32.704781Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [cn3] 2026-03-31T14:38:32.704788Z  INFO execute:app: e3_sync::sync: Sync finished. +[CIPHER] [cn1] 2026-03-31T14:38:32.704788Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378824708321927852013405763900, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:38:32.704815Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn3/0x90F79bf6EB2c4f870365E785982E1f101E93b906/12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd) +[CIPHER] [cn1] 2026-03-31T14:38:32.704838Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [cn1] 2026-03-31T14:38:32.704857Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [cn1] 2026-03-31T14:38:32.704865Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [cn1] 2026-03-31T14:38:32.704875Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [cn1] 2026-03-31T14:38:32.704861Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [cn1] 2026-03-31T14:38:32.704863Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [cn3] 2026-03-31T14:38:32.704947Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378824710867578534186740582241, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:38:32.704989Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378824711605448297135122646881, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:38:32.705054Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [cn3] 2026-03-31T14:38:32.705081Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] [cn1] 2026-03-31T14:38:32.705091Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378824713339442240062403803452, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn1] 2026-03-31T14:38:32.705617Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [cn1] 2026-03-31T14:38:32.705629Z  INFO execute:app: e3_sync::sync: Historical events sorted. +[CIPHER] [cn1] 2026-03-31T14:38:32.705634Z  INFO execute:app: e3_sync::sync: Effects enabled +[CIPHER] [cn1] 2026-03-31T14:38:32.705638Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [cn1] 2026-03-31T14:38:32.705645Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [cn1] 2026-03-31T14:38:32.705648Z  INFO execute:app: e3_sync::sync: Sync finished. +[CIPHER] [cn1] 2026-03-31T14:38:32.705674Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn1/0x70997970C51812dc3A010C7d01b50e0d17dc79C8/12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3) +[CIPHER] [cn1] 2026-03-31T14:38:32.705641Z  INFO execute:app: e3_sync::sync: Historical events published. +[CIPHER] [cn1] 2026-03-31T14:38:32.705801Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378824727229840527565696170300, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-03-31T14:38:32.705845Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378824727506541688671339444540, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-03-31T14:38:32.705906Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [cn1] 2026-03-31T14:38:32.705930Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] +[CIPHER] > enclave-example@0.0.0 deploy /Users/ctrlc03/Documents/zk/enclave/templates/default +[CIPHER] > pnpm clean:deployments && hardhat run scripts/deploy-local.ts --network localhost +[CIPHER] +[CIPHER] +[CIPHER] > enclave-example@0.0.0 clean:deployments /Users/ctrlc03/Documents/zk/enclave/templates/default +[CIPHER] > hardhat utils:clean-deployments +[CIPHER] +[CIPHER] Compiled 7 Solidity files with solc 0.8.28 (evm target: cancun) +[CIPHER] Nothing to compile +[CIPHER] +[CIPHER] 🚀 Deploying Enclave protocol locally... +[CIPHER] Deploying with account: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Account balance: 10000.0 +[CIPHER] Detected local network 'localhost', auto-cleaning stale deployment state... +[CIPHER] PoseidonT3 deployed to: 0x3333333C0A88F9BE4fd23ed0536F9B6c427e3B93 +[CIPHER] Deploying mock Fee token... +[CIPHER] MockFeeToken deployed to: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 +[CIPHER] Deploying ENCL token... +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Transfer restrictions disabled for local development +[CIPHER] EnclaveToken deployed to: 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Deploying EnclaveTicketToken... +[CIPHER] EnclaveTicketToken deployed to: 0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9 +[CIPHER] Deploying SlashingManager... +[CIPHER] SlashingManager deployed to: 0x5FC8d32690cc91D4c39d9d3abcBD16989F875707 +[CIPHER] Deploying CiphernodeRegistry... +[CIPHER] CiphernodeRegistry deployed to: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 +[CIPHER] Deploying BondingRegistry... +[CIPHER] [cn5] 2026-03-31T14:38:47.548179Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098515613163443956705591365, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:38:47.548339Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32742379098515945204837283477520453, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:38:47.548295Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32742379098515908311349136058417221, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:38:47.548384Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32742379098515982098325430896623685, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:38:47.548425Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32742379098516018991813578315726917, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:38:47.548175Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098515539376467658121032029, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:38:47.548301Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32742379098515908311349132312064349, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:38:47.548363Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32742379098515945204837279731167581, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:38:47.548427Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32742379098515982098325427150270813, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:38:47.548486Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32742379098516018991813574569374045, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:38:47.548698Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 +[CIPHER] [cn4] 2026-03-31T14:38:47.548174Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098515428696003219581181697, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:38:47.548337Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32742379098515945204837283448626945, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:38:47.548400Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32742379098515982098325430867730177, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:38:47.548441Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32742379098516018991813578286833409, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:38:47.548174Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098515889864605061376870241, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:38:47.548361Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32742379098516037438557651053283169, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:38:47.548448Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32742379098516129672278019601041249, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:38:47.549031Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 +[CIPHER] [cn2] 2026-03-31T14:38:47.548244Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098516959775761336722544869, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:38:47.548484Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32742379098516148119022093310592865, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:38:47.548746Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32742379098517144243202073818061029, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:38:47.548802Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32742379098517181136690221237164261, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:38:47.548403Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32742379098516074332045798472386401, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:38:47.548553Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098517218030178367047891260, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:38:47.549040Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 +[CIPHER] [cn1] 2026-03-31T14:38:47.548870Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 +[CIPHER] BondingRegistry deployed to: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 +[CIPHER] Deploying Enclave... +[CIPHER] Enclave deployed to: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e +[CIPHER] Deploying E3RefundManager... +[CIPHER] E3RefundManager deployed to: 0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82 +[CIPHER] Setting E3RefundManager in Enclave... +[CIPHER] Configuring cross-contract dependencies... +[CIPHER] Setting Enclave address in CiphernodeRegistry... +[CIPHER] Setting BondingRegistry address in CiphernodeRegistry... +[CIPHER] Setting Submission Window in CiphernodeRegistry... +[CIPHER] SORTITION_SUBMISSION_WINDOW: 10 +[CIPHER] Setting BondingRegistry address in EnclaveTicketToken... +[CIPHER] Setting CiphernodeRegistry address in BondingRegistry... +[CIPHER] Setting Enclave address in SlashingManager... +[CIPHER] Setting BondingRegistry address in SlashingManager... +[CIPHER] Setting CiphernodeRegistry address in SlashingManager... +[CIPHER] Setting E3RefundManager address in SlashingManager... +[CIPHER] Setting SlashingManager address in Enclave... +[CIPHER] Setting SlashingManager address in BondingRegistry... +[CIPHER] Setting SlashingManager address in CiphernodeRegistry... +[CIPHER] Setting Enclave as reward distributor in BondingRegistry... +[CIPHER] Setting committee thresholds... +[CIPHER] Committee thresholds set (Micro=[1,3], Small=[2,5]) +[CIPHER] Setting pricing config... +[CIPHER] Pricing config set (treasury: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 ) +[CIPHER] Deploying Compute Provider +[CIPHER] Deploying Mock Decryption Verifier +[CIPHER] Deploying Mock Pk Verifier +[CIPHER] Deploying E3 Program +[CIPHER] +[CIPHER] MockDeployments: +[CIPHER] ---------------------------------------------------------------------- +[CIPHER] MockComputeProvider:0xc3e53F4d16Ae77Db1c982e75a937B9f60FE63690 +[CIPHER] MockDecryptionVerifier:0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB +[CIPHER] MockPkVerifier:0x9E545E3C0baAB3E08CdfD552C960A1050f373042 +[CIPHER] MockE3Program:0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9 +[CIPHER] +[CIPHER] encryptionSchemeId 0x2c2a814a0495f913a3a312fc4771e37552bc14f8a2d4075a08122d356f0849c6 +[CIPHER] Successfully enabled E3 Program in Enclave contract +[CIPHER] Deploying circuit verifiers... +[CIPHER] Deploying to network: localhost +[CIPHER] Found 3 verifier contract(s) +[CIPHER] Deploying ZKTranscriptLib... +[CIPHER] ZKTranscriptLib deployed to: 0x851356ae760d987E095750cCeb3bC6014560891C +[CIPHER] RecursiveAggregationFoldVerifier deployed to: 0xf5059a5D33d5853360D16C683c16e67980206f36 +[CIPHER] ThresholdDecryptedSharesAggregationVerifier deployed to: 0x95401dc811bb5740090279Ba06cfA8fcF6113778 +[CIPHER] ThresholdPkAggregationVerifier deployed to: 0x998abeb3E57409262aE5b751f60747921B33613E +[CIPHER] Deploying BfvDecryptionVerifier and registering for prod... +[CIPHER] BfvDecryptionVerifier deployed to: 0x70e0bA845a1A0F2DA3359C97E0285013525FFC49 +[CIPHER] Successfully set BfvDecryptionVerifier in Enclave contract +[CIPHER] Deploying BfvPkVerifier and registering for prod... +[CIPHER] BfvPkVerifier deployed to: 0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf +[CIPHER] Successfully set BfvPkVerifier in Enclave contract +[CIPHER] +[CIPHER] ============================================ +[CIPHER] Deployment Complete! +[CIPHER] ============================================ +[CIPHER] MockFeeToken: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 +[CIPHER] EnclaveToken (ENCL): 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] EnclaveTicketToken: 0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9 +[CIPHER] SlashingManager: 0x5FC8d32690cc91D4c39d9d3abcBD16989F875707 +[CIPHER] BondingRegistry: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 +[CIPHER] CiphernodeRegistry: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 +[CIPHER] E3RefundManager: 0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82 +[CIPHER] Enclave: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e +[CIPHER] DecryptionVerifier (BFV): 0x70e0bA845a1A0F2DA3359C97E0285013525FFC49 +[CIPHER] PkVerifier (BFV): 0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf +[CIPHER] Circuit Verifiers: +[CIPHER] RecursiveAggregationFoldVerifier: 0xf5059a5D33d5853360D16C683c16e67980206f36 +[CIPHER] ThresholdDecryptedSharesAggregationVerifier: 0x95401dc811bb5740090279Ba06cfA8fcF6113778 +[CIPHER] ThresholdPkAggregationVerifier: 0x998abeb3E57409262aE5b751f60747921B33613E +[CIPHER] ============================================ +[CIPHER] +[CIPHER] E3 Program enabled for Enclave's template +[CIPHER] +[CIPHER] Deployed MyProgram at address: 0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00 +[CIPHER] Deployed MockRISC0Verifier at address: 0x8f86403A4DE0BB5791fa46B8e795C547942fE4Cf +[CIPHER] +[CIPHER] +[CIPHER] Updating contracts for chain: localhost +[CIPHER] ✓ Updated enclave: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e (block 18) +[CIPHER] ✓ Updated ciphernode_registry: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 (block 14) +[CIPHER] ✓ Updated bonding_registry: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 (block 15) +[CIPHER] ✓ Updated fee_token: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 (block 9) +[CIPHER] ✓ Updated e3_program: 0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00 (block 38) +[CIPHER] +[CIPHER] ✓ enclave.config.yaml updated successfully! +[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Registering ciphernode: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... +[CIPHER] 1000 ENCL transferred to ciphernode +[CIPHER] Step 2: Minting USDC to admin... +[CIPHER] 1000 USDC minted to admin +[CIPHER] Step 3: Impersonating ciphernode for license operations... +[CIPHER] License bonded: 1000 ENCL +[CIPHER] [ag] 2026-03-31T14:39:16.547665Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633466542721514375016231261, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:16.547660Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633466542721514376373893436, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:16.547660Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633466837869419557143414625, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:16.547660Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633466819422675484376964865, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:16.547869Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [cn5] 2026-03-31T14:39:16.547865Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [cn2] 2026-03-31T14:39:16.547919Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [ag] 2026-03-31T14:39:16.547906Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [cn2] 2026-03-31T14:39:16.547733Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633467557292438432007608549, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:16.547926Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [cn3] 2026-03-31T14:39:16.547857Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [cn5] 2026-03-31T14:39:16.547660Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633467151464068811177787461, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } +[CIPHER] Operator registered (automatically added to CiphernodeRegistry) +[CIPHER] Step 4: Adding ticket balance via admin... +[CIPHER] [ag] 2026-03-31T14:39:20.549031Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707277499783648403897332061, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:20.549168Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32742379707277610464112846154641757, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:20.549031Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707276392979003984098592609, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:20.549155Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32742379707276485212724352646350689, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:20.549244Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn1] 2026-03-31T14:39:20.549031Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707276190064819171876829500, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:20.549158Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32742379707276319192027687843690812, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:20.549267Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true +[CIPHER] [cn1] 2026-03-31T14:39:20.549244Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn3] 2026-03-31T14:39:20.549267Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true +[CIPHER] [cn5] 2026-03-31T14:39:20.549244Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707282037682690540193382469, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:39:20.549444Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn5] 2026-03-31T14:39:20.549461Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true +[CIPHER] [cn4] 2026-03-31T14:39:20.549528Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32742379707285302756391586755124993, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:20.549466Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707275433748312151393589477, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:20.549633Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn4] 2026-03-31T14:39:20.549593Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn4] 2026-03-31T14:39:20.549439Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707285173629183070788263681, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:20.549647Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true +[CIPHER] [cn2] 2026-03-31T14:39:20.549560Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32742379707275784236449551875070181, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:20.549364Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] Ticket balance added: 1000 USDC worth +[CIPHER] +[CIPHER] === Registration Complete === +[CIPHER] Ciphernode: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 +[CIPHER] Registered: true +[CIPHER] Active: true +[CIPHER] License Bond: 1000.0 ENCL +[CIPHER] Ticket Balance: 1000.0 USDC worth +[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Registering ciphernode: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... +[CIPHER] 1000 ENCL transferred to ciphernode +[CIPHER] Step 2: Minting USDC to admin... +[CIPHER] 1000 USDC minted to admin +[CIPHER] Step 3: Impersonating ciphernode for license operations... +[CIPHER] License bonded: 1000 ENCL +[CIPHER] [cn5] 2026-03-31T14:39:26.549212Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817961173959374542801666117, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:39:26.549421Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] [cn3] 2026-03-31T14:39:26.549206Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817961118619142320701015905, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:26.549420Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] [ag] 2026-03-31T14:39:26.549211Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817959845793801231967596893, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:26.549420Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] [cn2] 2026-03-31T14:39:26.549206Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817959605986128276709464293, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:26.549421Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] [cn1] 2026-03-31T14:39:26.549420Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] [cn1] 2026-03-31T14:39:26.549253Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817961173959374540412975420, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:26.549206Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817959753560080867137298177, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:26.549587Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] Operator registered (automatically added to CiphernodeRegistry) +[CIPHER] Step 4: Adding ticket balance via admin... +[CIPHER] [cn5] 2026-03-31T14:39:30.549207Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891742099722156572532736069, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:39:30.549361Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891742265742853235918700613, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:39:30.549617Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] [cn5] 2026-03-31T14:39:30.549634Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [ag] 2026-03-31T14:39:30.549307Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891743907503075792322441565, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:30.549637Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891750271629781222117749085, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:30.549684Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-03-31T14:39:30.549694Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [cn2] 2026-03-31T14:39:30.549816Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891741011364256222888876261, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:30.549926Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] [cn2] 2026-03-31T14:39:30.549937Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [cn2] 2026-03-31T14:39:30.549882Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891741324958905475951253733, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:30.549971Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891741140491464739607158529, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:30.550024Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891741324958905476702674689, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:30.550070Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [cn3] 2026-03-31T14:39:30.550032Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891764401835741686408644449, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:30.550080Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891764512516206128665954145, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:30.550122Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] [cn3] 2026-03-31T14:39:30.550133Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [cn1] 2026-03-31T14:39:30.550498Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891771079557096367849634108, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:30.550631Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891771264024537104945150268, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:30.550766Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [cn4] 2026-03-31T14:39:30.550061Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] [cn1] 2026-03-31T14:39:30.550741Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] Ticket balance added: 1000 USDC worth +[CIPHER] +[CIPHER] === Registration Complete === +[CIPHER] Ciphernode: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC +[CIPHER] Registered: true +[CIPHER] Active: true +[CIPHER] License Bond: 1000.0 ENCL +[CIPHER] Ticket Balance: 1000.0 USDC worth +[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Registering ciphernode: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... +[CIPHER] 1000 ENCL transferred to ciphernode +[CIPHER] Step 2: Minting USDC to admin... +[CIPHER] 1000 USDC minted to admin +[CIPHER] Step 3: Impersonating ciphernode for license operations... +[CIPHER] License bonded: 1000 ENCL +[CIPHER] [cn5] 2026-03-31T14:39:36.548689Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002417712670722496616661061, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:39:36.548883Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] [cn1] 2026-03-31T14:39:36.548685Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002417214608632504070076732, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:36.548980Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] [cn2] 2026-03-31T14:39:36.548686Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002417325289096947935762661, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:36.548883Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] [cn4] 2026-03-31T14:39:36.548682Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002417897138163233683283713, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:36.548883Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] [cn3] 2026-03-31T14:39:36.548682Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002418450540485444026730337, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:36.548888Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] [ag] 2026-03-31T14:39:36.548715Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002417435969561387227033949, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:36.548883Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] Operator registered (automatically added to CiphernodeRegistry) +[CIPHER] Step 4: Adding ticket balance via admin... +[CIPHER] [cn5] 2026-03-31T14:39:40.548985Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32742380076204283137191081470525509, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:40.549165Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32742380076206386066015480613056861, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:40.549240Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32742380076204430711143670366623973, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:40.549369Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32742380076204578285096260043036901, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:40.549515Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn2] 2026-03-31T14:39:40.549544Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true +[CIPHER] [cn3] 2026-03-31T14:39:40.549412Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32742380076203489927195910987810657, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:40.549567Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32742380076203951095797753726601057, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:40.549697Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn3] 2026-03-31T14:39:40.549723Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true +[CIPHER] [cn4] 2026-03-31T14:39:40.549502Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32742380076203803521845164993289985, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:40.549621Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32742380076203969542541828379254529, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:40.549724Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn4] 2026-03-31T14:39:40.549749Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true +[CIPHER] [ag] 2026-03-31T14:39:40.549455Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32742380076206552086712143999021405, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:40.549737Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 +[CIPHER] Ticket balance added: 1000 USDC worth +[CIPHER] +[CIPHER] === Registration Complete === +[CIPHER] Ciphernode: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 +[CIPHER] Registered: true +[CIPHER] Active: true +[CIPHER] License Bond: 1000.0 ENCL +[CIPHER] Ticket Balance: 1000.0 USDC worth +[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Registering ciphernode: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... +[CIPHER] 1000 ENCL transferred to ciphernode +[CIPHER] Step 2: Minting USDC to admin... +[CIPHER] 1000 USDC minted to admin +[CIPHER] Step 3: Impersonating ciphernode for license operations... +[CIPHER] License bonded: 1000 ENCL +[CIPHER] [ag] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186908875920696799513686365, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [cn3] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186909835151388635184727905, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186909595343715675543861564, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [cn5] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186908931260929024388694085, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [cn4] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186909927385109004675587841, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [cn5] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [cn2] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186909558450227529733134565, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] Operator registered (automatically added to CiphernodeRegistry) +[CIPHER] Step 4: Adding ticket balance via admin... +[CIPHER] [cn4] 2026-03-31T14:39:50.548706Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32742380260673144273580273237106433, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:50.548801Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32742380260673476314973600009035521, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:50.548896Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn4] 2026-03-31T14:39:50.548912Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true +[CIPHER] [cn2] 2026-03-31T14:39:50.548746Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32742380260673162720324346195237093, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:50.548823Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32742380260673457868229525548062949, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:50.548882Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn2] 2026-03-31T14:39:50.548899Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true +[CIPHER] [ag] 2026-03-31T14:39:50.549096Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32742380260682791920730819615142237, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:50.549184Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32742380260682902601195261872451933, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:50.549253Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-03-31T14:39:50.549266Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true +[CIPHER] [cn3] 2026-03-31T14:39:50.549268Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32742380260673236507300640841762657, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:50.549373Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn3] 2026-03-31T14:39:50.549441Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true +[CIPHER] [cn3] 2026-03-31T14:39:50.549325Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32742380260673476314973599065933665, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:50.549364Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32742380260688657985346260610218300, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:50.549429Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32742380260688787112554776577079612, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:50.549482Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 +[CIPHER] Ticket balance added: 1000 USDC worth +[CIPHER] +[CIPHER] === Registration Complete === +[CIPHER] Ciphernode: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 +[CIPHER] Registered: true +[CIPHER] Active: true +[CIPHER] License Bond: 1000.0 ENCL +[CIPHER] Ticket Balance: 1000.0 USDC worth +[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Registering ciphernode: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... +[CIPHER] 1000 ENCL transferred to ciphernode +[CIPHER] Step 2: Minting USDC to admin... +[CIPHER] 1000 USDC minted to admin +[CIPHER] Step 3: Impersonating ciphernode for license operations... +[CIPHER] License bonded: 1000 ENCL +[CIPHER] [cn1] 2026-03-31T14:39:56.547909Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371341710565910037912516924, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:39:56.548015Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] [cn5] 2026-03-31T14:39:56.547939Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371343426113108895289507909, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:39:56.548016Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] [ag] 2026-03-31T14:39:56.547960Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371343997962175176539255133, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:39:56.548046Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] [cn2] 2026-03-31T14:39:56.547993Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371344514471009243372738789, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:39:56.548075Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] [cn4] 2026-03-31T14:39:56.548061Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371344090195895548804472577, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:39:56.548140Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] [cn3] 2026-03-31T14:39:56.548293Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371349605772373587017303905, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:39:56.548388Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] Operator registered (automatically added to CiphernodeRegistry) +[CIPHER] Step 4: Adding ticket balance via admin... +[CIPHER] [cn1] 2026-03-31T14:40:00.548339Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32742380445133501460951482569488700, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:00.548440Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32742380445133833502344809341417788, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:00.548514Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-03-31T14:40:00.548464Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32742380445136379153026979901878621, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:00.548424Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32742380445136600513955867190855521, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:00.548553Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true +[CIPHER] [cn5] 2026-03-31T14:40:00.548887Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true +[CIPHER] [cn4] 2026-03-31T14:40:00.548793Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32742380445144753974836447755771649, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:00.548994Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32742380445148166622490083271399653, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:00.549131Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 +[CIPHER] [cn1] 2026-03-31T14:40:00.548532Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true +[CIPHER] [ag] 2026-03-31T14:40:00.548532Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true +[CIPHER] [cn3] 2026-03-31T14:40:00.548495Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32742380445136674300932162029061985, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:00.548734Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32742380445142780173220560862642245, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:00.548817Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32742380445142909300429076829503557, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:00.548906Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 +[CIPHER] Ticket balance added: 1000 USDC worth +[CIPHER] +[CIPHER] === Registration Complete === +[CIPHER] Ciphernode: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc +[CIPHER] Registered: true +[CIPHER] Active: true +[CIPHER] License Bond: 1000.0 ENCL +[CIPHER] Ticket Balance: 1000.0 USDC worth +[CIPHER] [cn5] 2026-03-31T14:40:01.508884Z  INFO enclave::start: CMD: {"name":null,"otel":null,"quiet":false,"config":null,"verbose":0,"command":{"PrintEnv":{"vite":false,"chain":"localhost"}}} +[CIPHER] [cn5] 2026-03-31T14:40:01.509190Z  INFO execute: enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[PROGRAM] Compiling e3-polynomial v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/polynomial) +[PROGRAM] Compiling e3-zk-helpers v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/zk-helpers) +[SERVER] 📡 Setting up event listeners... +[SERVER] ✅ Event listeners set up successfully +[SERVER] 🚀 Enclave Server listening on port 8080 +[SERVER] 📡 Event listeners active +[SERVER] 📊 Sessions: http://localhost:8080/sessions +[PROGRAM] Compiling e3-bfv-client v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/bfv-client) +[PROGRAM] Compiling e3-compute-provider v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/compute-provider) +[PROGRAM] Compiling e3-program-server v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/program-server) +[PROGRAM] Compiling e3-user-program v0.1.0 (/Users/ctrlc03/Documents/zk/enclave/templates/default/program) +[PROGRAM] Compiling e3-support-scripts-dev v0.1.0 (/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/support/dev) +[PROGRAM] Finished `dev` profile [unoptimized + debuginfo] target(s) in 3.96s +[PROGRAM] Running `target/debug/e3-support-scripts-dev` +[PROGRAM] 🚀 E3 Program Server listening on http://0.0.0.0:13151 +[TEST] +[TEST] RUN v1.6.1 /Users/ctrlc03/Documents/zk/enclave/templates/default +[TEST] +[TEST] stdout | tests/integration.spec.ts:159:11 +[TEST] Testing... +[TEST] +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] E3 quote: 5206960n +[TEST] Approving fee token... +[TEST] +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] Fee token approved: 0x29f0c9b9bccf0c3429811559d674b86a02ed436f7668a10088449d2159c64456 +[TEST] +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] Requested E3... +[TEST] +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] E3 Sucessfully Requested! +[TEST] +[CIPHER] [cn3] 2026-03-31T14:40:09.568347Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [ag] 2026-03-31T14:40:09.569124Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [ag] 2026-03-31T14:40:09.569750Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611546449690320805661389149, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:09.569457Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [cn4] 2026-03-31T14:40:09.570016Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611552389541912543854468865, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:09.570166Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611552518669121059821330177, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:09.570277Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [cn4] 2026-03-31T14:40:09.570292Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [cn4] 2026-03-31T14:40:09.571130Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] +[CIPHER] [cn4] 2026-03-31T14:40:09.571145Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 index=2 ticket_id=Some(43) +[CIPHER] [cn4] 2026-03-31T14:40:09.571484Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn4] 2026-03-31T14:40:09.571503Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" ticket_id=43 +[CIPHER] [cn5] 2026-03-31T14:40:09.569780Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [cn4] 2026-03-31T14:40:09.570087Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611552500222376986111778561, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:09.570522Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611558642988153531421360197, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:09.570594Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611558753668617973678669893, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:09.570677Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611558790562106121097773125, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:09.571245Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [cn5] 2026-03-31T14:40:09.571258Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [cn5] 2026-03-31T14:40:09.572561Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] +[CIPHER] [cn5] 2026-03-31T14:40:09.572583Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc index=0 ticket_id=Some(60) +[CIPHER] [cn5] 2026-03-31T14:40:09.572726Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn5] 2026-03-31T14:40:09.572775Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" ticket_id=60 +[CIPHER] [cn3] 2026-03-31T14:40:09.569747Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611533038907379221591721825, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:09.569827Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611533370948772548363650913, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:09.569907Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611533407842260695782754145, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:09.570204Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [cn3] 2026-03-31T14:40:09.570221Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [cn3] 2026-03-31T14:40:09.571133Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] +[CIPHER] [cn3] 2026-03-31T14:40:09.571148Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x90F79bf6EB2c4f870365E785982E1f101E93b906 index=1 ticket_id=Some(60) +[CIPHER] [cn3] 2026-03-31T14:40:09.572043Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn3] 2026-03-31T14:40:09.572055Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x90F79bf6EB2c4f870365E785982E1f101E93b906" ticket_id=60 +[CIPHER] [cn2] 2026-03-31T14:40:09.570225Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [cn2] 2026-03-31T14:40:09.570865Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611567239170891879292098789, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:09.570928Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611567349851356321549408485, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:09.571009Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611567386744844468968511717, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:09.571127Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [cn2] 2026-03-31T14:40:09.571140Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [cn2] 2026-03-31T14:40:09.573083Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] +[CIPHER] [cn2] 2026-03-31T14:40:09.573104Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC index=3 ticket_id=Some(47) +[CIPHER] [cn2] 2026-03-31T14:40:09.573179Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn2] 2026-03-31T14:40:09.573192Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" ticket_id=47 +[CIPHER] [cn1] 2026-03-31T14:40:09.570357Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [cn1] 2026-03-31T14:40:09.571140Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611569139185531469767539004, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:09.571249Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [cn1] 2026-03-31T14:40:09.571260Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [cn1] 2026-03-31T14:40:09.572645Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 index=4 ticket_id=Some(47) +[CIPHER] [cn1] 2026-03-31T14:40:09.572726Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn1] 2026-03-31T14:40:09.572745Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x70997970C51812dc3A010C7d01b50e0d17dc79C8" ticket_id=47 +[CIPHER] [ag] 2026-03-31T14:40:09.569835Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611546560370785247918698845, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:09.572631Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] +[CIPHER] [cn1] 2026-03-31T14:40:09.571001Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611569028505067027510229308, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:09.571063Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611569102292043322348435772, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:40:09.570692Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611546597264273395337802077, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:09.576703Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(43), node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" }), ctx: EventContext { id: EventId(0x666fdc1f214c31b682bebd56055639c5192c2c7dd79b45da8ac9eca925d9a799), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 4, ts: 32742380611587253888211854907023105, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:09.576815Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract +[CIPHER] [cn4] 2026-03-31T14:40:09.576858Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 43 for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn4] 2026-03-31T14:40:09.576867Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) +[CIPHER] [cn3] 2026-03-31T14:40:09.577935Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(60), node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906" }), ctx: EventContext { id: EventId(0x68fff20d942b0b851c11b5be48450b149306e58199142e8ae5358619e341ad4b), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 4, ts: 32742380611597510277916836474619745, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } +[CIPHER] [cn1] 2026-03-31T14:40:09.577947Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(47), node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8" }), ctx: EventContext { id: EventId(0x6ecb373f5e58588749293a5f8d320cacad4de78aca996c9f14a2f0ed72f7b069), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 4, ts: 32742380611610164744351399810332988, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } +[CIPHER] [cn1] 2026-03-31T14:40:09.578054Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract +[CIPHER] [cn3] 2026-03-31T14:40:09.578072Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) +[CIPHER] [cn3] 2026-03-31T14:40:09.578045Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract +[CIPHER] [cn3] 2026-03-31T14:40:09.578068Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 60 for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn1] 2026-03-31T14:40:09.578083Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) +[CIPHER] [cn1] 2026-03-31T14:40:09.578080Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 47 for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn5] 2026-03-31T14:40:09.580556Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(60), node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" }), ctx: EventContext { id: EventId(0x8f3e028f9f530cf132ff51db7a96073693d2491dbbec4c3e35844ed5c841e7f5), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 4, ts: 32742380611610699699929539776020549, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:09.580698Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract +[CIPHER] [cn2] 2026-03-31T14:40:09.580556Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(47), node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" }), ctx: EventContext { id: EventId(0xd1dbc720f54aa06b4932f2cd3ac3d6c5b605034ee69972210fdca9609b3f9e26), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 4, ts: 32742380611618391992208275878729957, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } +[CIPHER] [cn2] 2026-03-31T14:40:09.580696Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract +[CIPHER] [cn2] 2026-03-31T14:40:09.580718Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 47 for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn2] 2026-03-31T14:40:09.580722Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) +[CIPHER] [cn5] 2026-03-31T14:40:09.580754Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 60 for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn5] 2026-03-31T14:40:09.580762Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) +[CIPHER] [ag] 2026-03-31T14:40:09.581392Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [ag] 2026-03-31T14:40:09.581409Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [ag] 2026-03-31T14:40:09.581752Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] +[CIPHER] [ag] 2026-03-31T14:40:09.581760Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=31337:0 node=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] [ag] 2026-03-31T14:40:09.581798Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [ag] 2026-03-31T14:40:09.581803Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" +[CIPHER] [ag] 2026-03-31T14:40:09.583032Z  INFO e3_aggregator::committee_finalizer: Scheduling committee finalization e3_id=31337:0 committee_deadline=1774968019 current_timestamp=1774968009 seconds_to_wait=11 +[CIPHER] [ag] 2026-03-31T14:40:09.583064Z  INFO alloy_pubsub::service: Pubsub service request channel closed. Shutting down. +[CIPHER] [cn1] 2026-03-31T14:40:10.549987Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 5, ts: 32742380629630881263678629331761468, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:10.550080Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 6, ts: 32742380629630991944143071589071164, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:10.550247Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 7, ts: 32742380629631010390887145298622780, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:10.550311Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 8, ts: 32742380629631047284375292717726012, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:10.550338Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 9, ts: 32742380629631065731119366427277628, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:10.549987Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 5, ts: 32742380629629626885081618690627813, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:10.550095Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 6, ts: 32742380629629958926474945462556901, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:10.550138Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 7, ts: 32742380629629995819963092881660133, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:10.550219Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 8, ts: 32742380629630069606939387719866597, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:10.550507Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 9, ts: 32742380629630124947171608848521445, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:10.549987Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 5, ts: 32742380629630290967868272042805089, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:10.550299Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 6, ts: 32742380629630420095076788009666401, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:10.550336Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 7, ts: 32742380629630438541820861719218017, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:10.550388Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 9, ts: 32742380629630493882053082847872865, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:40:10.550020Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 4, ts: 32742380629631194858327881036476765, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:40:10.550092Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 5, ts: 32742380629631287092048249584234845, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:40:10.550138Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 6, ts: 32742380629631305538792323293786461, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:40:10.550291Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 7, ts: 32742380629631342432280470712889693, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:40:10.550327Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 8, ts: 32742380629631360879024544422441309, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:10.549987Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 5, ts: 32742380629629645331825693180493893, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:10.550089Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 6, ts: 32742380629629958926474946242871365, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:10.550137Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 7, ts: 32742380629629977373219019952422981, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:10.550223Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 8, ts: 32742380629630014266707167371526213, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:10.550508Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 9, ts: 32742380629630032713451241081077829, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:10.550362Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 8, ts: 32742380629630475435309009138321249, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:10.550854Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 5, ts: 32742380629646192061259810619399937, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:10.551020Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 6, ts: 32742380629646339635212400295812865, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:10.551095Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 7, ts: 32742380629646376528700547714916097, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:10.551123Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 8, ts: 32742380629646394975444621424467713, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:10.551158Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 9, ts: 32742380629646413422188695134019329, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:16.583621Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0xb27a70189fd5d32ccaf40e8f8f6f617c90b2405fbedb387525daf037d9b3071b +[CIPHER] [cn1] 2026-03-31T14:40:16.583643Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x0e1587df22362bbcc2c5af3a0d23808c2c68487299b811e128883bbe04946858 +[CIPHER] [cn4] 2026-03-31T14:40:16.584214Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x666bc7f01a87132e43c3359a68c08320a56f398098940173b9ea43aa0202c8f3 +[CIPHER] [cn5] 2026-03-31T14:40:16.586902Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x8c774b827980664206e4540c02fb0b09df450af838cb1701b70d889ccb8b1bef +[CIPHER] [cn2] 2026-03-31T14:40:16.586917Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x561314145447ee98df55011278e338e4f493a72523e390785ac39044eaf1e6cf +[CIPHER] [ag] 2026-03-31T14:40:20.585430Z  INFO e3_aggregator::committee_finalizer: Dispatching CommitteeFinalizeRequested event e3_id=31337:0 +[CIPHER] [ag] 2026-03-31T14:40:20.586022Z  INFO e3_events::eventbus: >>> CommitteeFinalizeRequested EnclaveEvent { payload: CommitteeFinalizeRequested(CommitteeFinalizeRequested { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x03fa318dc6ec43edd2bbef83cf33e379c8c498207236842c76f050715c9d2dc4), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 9, ts: 32742380814759139713726641401639261, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } +[CIPHER] [ag] 2026-03-31T14:40:20.586384Z  INFO e3_evm::ciphernode_registry_sol: Finalizing committee for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [ag] 2026-03-31T14:40:20.586478Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.finalizeCommittee(..) +[CIPHER] [ag] 2026-03-31T14:40:21.548454Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832519093058827912701423965, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:40:21.548601Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832519314419756797216043357, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:40:21.548770Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn2] 2026-03-31T14:40:21.548535Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832519295973012726472530149, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:21.548611Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832519351313244947601184997, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:40:21.549161Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn2] 2026-03-31T14:40:21.549221Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn2] 2026-03-31T14:40:21.549273Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [cn2] 2026-03-31T14:40:21.549285Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [cn2] 2026-03-31T14:40:21.549288Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn2] 2026-03-31T14:40:21.549290Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [cn2] 2026-03-31T14:40:21.549292Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" +[CIPHER] [cn2] 2026-03-31T14:40:21.549325Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [cn5] 2026-03-31T14:40:21.548588Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832523077555547837710925893, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:21.548646Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832523188236012279968235589, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:40:21.548858Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:21.549048Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [cn5] 2026-03-31T14:40:21.549073Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn5] 2026-03-31T14:40:21.549076Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [cn5] 2026-03-31T14:40:21.549078Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" party_id=0 +[CIPHER] [cn5] 2026-03-31T14:40:21.549166Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [cn5] 2026-03-31T14:40:21.549836Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 0 }), ctx: EventContext { id: EventId(0xd49614c7a12ba8db3e0eabace9e6d23e8213285509090a99ea22bd999ff86593), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 12, ts: 32742380832534496090129463923376197, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:21.549070Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [cn4] 2026-03-31T14:40:21.549007Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832528556238537729418862337, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:21.549081Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn4] 2026-03-31T14:40:21.549104Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:21.548768Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn4] 2026-03-31T14:40:21.548910Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832528464004817360871104257, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:40:21.549218Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn4] 2026-03-31T14:40:21.549220Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [cn4] 2026-03-31T14:40:21.549235Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" party_id=2 +[CIPHER] [cn4] 2026-03-31T14:40:21.549270Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [cn4] 2026-03-31T14:40:21.549838Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 2 }), ctx: EventContext { id: EventId(0xdf046433053a3a8bc89fbc19e6534d27b1992d2901130099acac77b2f1fbba80), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 12, ts: 32742380832537355335460888874983169, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:21.549215Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [cn5] 2026-03-31T14:40:21.551946Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. +[CIPHER] [cn5] 2026-03-31T14:40:21.551971Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes +[CIPHER] [cn4] 2026-03-31T14:40:21.551928Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. +[CIPHER] [cn4] 2026-03-31T14:40:21.551938Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes +[CIPHER] [cn4] 2026-03-31T14:40:21.549201Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [cn5] 2026-03-31T14:40:21.551958Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes +[CIPHER] [cn3] 2026-03-31T14:40:21.549242Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832533204818044303282767713, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:21.549145Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832533094137579861025458017, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:40:21.549340Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:21.549371Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [cn3] 2026-03-31T14:40:21.549382Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [cn3] 2026-03-31T14:40:21.549384Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn3] 2026-03-31T14:40:21.549387Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [cn3] 2026-03-31T14:40:21.549389Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x90F79bf6EB2c4f870365E785982E1f101E93b906" party_id=1 +[CIPHER] [cn3] 2026-03-31T14:40:21.549419Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [cn3] 2026-03-31T14:40:21.549871Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 1 }), ctx: EventContext { id: EventId(0xcbec2f089505096c8bbf46e9ad5296c1a4177d591a0db3424678b332f289cd1a), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 12, ts: 32742380832540196134048239202830177, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:21.551835Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. +[CIPHER] [cn3] 2026-03-31T14:40:21.551876Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-03-31T14:40:21.551918Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-03-31T14:40:21.549317Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [ag] 2026-03-31T14:40:21.549376Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [ag] 2026-03-31T14:40:21.549396Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [ag] 2026-03-31T14:40:21.549398Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [ag] 2026-03-31T14:40:21.549400Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [ag] 2026-03-31T14:40:21.549403Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" +[CIPHER] [ag] 2026-03-31T14:40:21.549441Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [cn1] 2026-03-31T14:40:21.549525Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832540140793816016657479996, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:21.549599Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832540214580792311495686460, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:40:21.549703Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn1] 2026-03-31T14:40:21.549733Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn1] 2026-03-31T14:40:21.549777Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [cn1] 2026-03-31T14:40:21.549796Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [cn1] 2026-03-31T14:40:21.549799Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn1] 2026-03-31T14:40:21.549802Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [cn1] 2026-03-31T14:40:21.549804Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x70997970C51812dc3A010C7d01b50e0d17dc79C8" +[CIPHER] [cn1] 2026-03-31T14:40:21.549846Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [ag] 2026-03-31T14:40:21.549334Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:21.551950Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes +[CIPHER] [cn4] 2026-03-31T14:40:21.560266Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:21.560309Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:21.560266Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:21.560309Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:21.560501Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:21.560519Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:21.560732Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x2ef3b376c61bd5dc3a123ee93f4513f19b401daf1aab6aa160e23a3c79a942c1), causation_id: EventId(0xcbec2f089505096c8bbf46e9ad5296c1a4177d591a0db3424678b332f289cd1a), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 13, ts: 32742380832738480186096543173150561, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:21.560814Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x11815f5310e45fea279a8c22cd3d5235b50f4604fca335f9c0323bed7b0001c1), causation_id: EventId(0xdf046433053a3a8bc89fbc19e6534d27b1992d2901130099acac77b2f1fbba80), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 13, ts: 32742380832738387952376175568494337, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:21.561516Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation +[CIPHER] [cn4] 2026-03-31T14:40:21.561574Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation +[CIPHER] [cn5] 2026-03-31T14:40:21.562612Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x9977eb667fb1b8f57508db209f2e6f829e0651fad1378ae01b2fb69108b66b91), causation_id: EventId(0xd49614c7a12ba8db3e0eabace9e6d23e8213285509090a99ea22bd999ff86593), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 13, ts: 32742380832743626827693109110046789, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:21.563093Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation +[CIPHER] [cn3] 2026-03-31T14:40:21.565691Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x2bf272600091b26d6801c0bb3d0d24cb2256c57115a55e8674c65864c9058018), causation_id: EventId(0x2ef3b376c61bd5dc3a123ee93f4513f19b401daf1aab6aa160e23a3c79a942c1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 27, ts: 32742380832764656115937137026893665, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:21.566290Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(204)` +[CIPHER] [cn5] 2026-03-31T14:40:21.568129Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5946b42a48f5cb4e6bad90d9cd795619153e85fd061bd3b3fb644a0e505bb57c), causation_id: EventId(0x9977eb667fb1b8f57508db209f2e6f829e0651fad1378ae01b2fb69108b66b91), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 27, ts: 32742380832793082548554724417929285, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:21.568115Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0e4e355122a1ae90dceed34abcde646fd2cb09776c1f830d75b0588b79abb647), causation_id: EventId(0x11815f5310e45fea279a8c22cd3d5235b50f4604fca335f9c0323bed7b0001c1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 27, ts: 32742380832765633793373044576231169, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:21.568772Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(110)` +[CIPHER] [cn4] 2026-03-31T14:40:21.568773Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(93)` +[CIPHER] [cn5] 2026-03-31T14:40:21.910412Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:21.940249Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:21.940827Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 +[CIPHER] [ag] 2026-03-31T14:40:27.601561Z  INFO e3_evm::ciphernode_registry_sol: Committee finalized on registry tx=0x75c55f4c6b7c4debb2bcb078aca3fe3a5d9827fbbff0694cdcb2067fb392b633 +[CIPHER] [cn5] 2026-03-31T14:40:29.689261Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:29.689505Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(110) in 8.120729125s +[CIPHER] [cn5] 2026-03-31T14:40:29.690271Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0df040fc728b6612a3f9e7b20713878fbf4f16afbebcce26f6bc558f33bad863), causation_id: EventId(0x5946b42a48f5cb4e6bad90d9cd795619153e85fd061bd3b3fb644a0e505bb57c), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 14, ts: 32742380982700511370067248206250053, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.691602Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 0 (signer: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc) +[CIPHER] [cn5] 2026-03-31T14:40:29.691845Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x1cfb291291fff0572b3a6519896ff5740b304293ab2df06ac10a7e4f53118c63), causation_id: EventId(0x0df040fc728b6612a3f9e7b20713878fbf4f16afbebcce26f6bc558f33bad863), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 15, ts: 32742380982737570878911330695446597, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.693398Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C0PkBfv, data_hash: [18, 93, 108, 54, 183, 76, 81, 161, 253, 177, 209, 204, 227, 253, 53, 218, 124, 217, 63, 155, 145, 95, 201, 118, 176, 210, 42, 131, 197, 91, 92, 89], public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), ctx: EventContext { id: EventId(0xcee96f346ec0a3d23e364d7f8f4d97e77983e1ac8dc3db0e9c4c00fd2e71acd0), causation_id: EventId(0x0df040fc728b6612a3f9e7b20713878fbf4f16afbebcce26f6bc558f33bad863), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 16, ts: 32742380982738290301930205367959621, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.693542Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 +[CIPHER] [cn5] 2026-03-31T14:40:29.693590Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn5] 2026-03-31T14:40:29.693595Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes +[CIPHER] [cn5] 2026-03-31T14:40:29.693604Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn5] 2026-03-31T14:40:29.693605Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 +[CIPHER] [cn5] 2026-03-31T14:40:29.693607Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 +[CIPHER] [cn5] 2026-03-31T14:40:29.693608Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.875µs +[CIPHER] [cn3] 2026-03-31T14:40:29.697777Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:29.695763Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29.693504Z }, value: }), ctx: EventContext { id: EventId(0x1ea44040c33621b3f4157fd7824107a474e6d604a01cb8d4ca66491c4fb943b3), causation_id: EventId(0x1cfb291291fff0572b3a6519896ff5740b304293ab2df06ac10a7e4f53118c63), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 28, ts: 32742380982773339115670253516030021, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.698011Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(204) in 8.131693708s +[CIPHER] [cn3] 2026-03-31T14:40:29.699258Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd40f8ede87e35ad948c9afc0aa2da0d3a2c803ace096d844484a16055cb281d8), causation_id: EventId(0x2bf272600091b26d6801c0bb3d0d24cb2256c57115a55e8674c65864c9058018), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 14, ts: 32742380982856884419580083103303521, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.700510Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 1 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) +[CIPHER] [cn3] 2026-03-31T14:40:29.704824Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x39cf625b361d37c8b69294943709a74d2a61697a1bffac3a7f1f134887632152), causation_id: EventId(0xd40f8ede87e35ad948c9afc0aa2da0d3a2c803ace096d844484a16055cb281d8), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 15, ts: 32742380982901894475119934409246561, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.705930Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [130, 195, 76, 115, 129, 2, 138, 195, 64, 33, 61, 199, 128, 253, 152, 238, 108, 32, 45, 203, 171, 84, 105, 222, 78, 118, 50, 133, 169, 106, 12, 36], public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), ctx: EventContext { id: EventId(0xc10e9e923000c4a6b8ed3367ea0b1f49481f6177d9fdc6ce09f9590a5d753230), causation_id: EventId(0xd40f8ede87e35ad948c9afc0aa2da0d3a2c803ace096d844484a16055cb281d8), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 16, ts: 32742380982902595451394735372207969, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.706023Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 +[CIPHER] [cn3] 2026-03-31T14:40:29.706066Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn3] 2026-03-31T14:40:29.706076Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn3] 2026-03-31T14:40:29.706078Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 +[CIPHER] [cn3] 2026-03-31T14:40:29.706083Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 7.25µs +[CIPHER] [cn3] 2026-03-31T14:40:29.706068Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-03-31T14:40:29.706077Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 +[CIPHER] [cn3] 2026-03-31T14:40:29.711107Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29.705996Z }, value: }), ctx: EventContext { id: EventId(0xdea2af7bf1b8501d114b0222a19b879b344076ae47b93cab69de29a443add730), causation_id: EventId(0x39cf625b361d37c8b69294943709a74d2a61697a1bffac3a7f1f134887632152), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 28, ts: 32742380983003554481710147748202337, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.719237Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), causation_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 29, ts: 32742380983245409743260553679439713, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:40:29.720464Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c } }, signature: }) } }), ctx: EventContext { id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), causation_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 17, ts: 32742380983268744874513796262233953, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.720420Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), causation_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 28, ts: 32742380983261716665021713866170113, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:40:29.721758Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc for key from party 0 +[CIPHER] [cn4] 2026-03-31T14:40:29.721912Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c } }, signature: }) } }), ctx: EventContext { id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), causation_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 14, ts: 32742380983292227579719629464542977, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.723119Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc for key from party 0 +[CIPHER] [cn3] 2026-03-31T14:40:29.758144Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key +[CIPHER] [cn4] 2026-03-31T14:40:29.759068Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key +[CIPHER] [cn3] 2026-03-31T14:40:29.761958Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xf8d0b48f8bebba37e55e899a37d3ca40c158ae37e68952874db0c35f1c3551bf), causation_id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 18, ts: 32742380983965183250272626673944417, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.763054Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C0PkBfv, data_hash: [18, 93, 108, 54, 183, 76, 81, 161, 253, 177, 209, 204, 227, 253, 53, 218, 124, 217, 63, 155, 145, 95, 201, 118, 176, 210, 42, 131, 197, 91, 92, 89], public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), ctx: EventContext { id: EventId(0xcee96f346ec0a3d23e364d7f8f4d97e77983e1ac8dc3db0e9c4c00fd2e71acd0), causation_id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 19, ts: 32742380983966677436542597147625313, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.763256Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn3] 2026-03-31T14:40:29.763259Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-03-31T14:40:29.763268Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn3] 2026-03-31T14:40:29.763270Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 +[CIPHER] [cn3] 2026-03-31T14:40:29.763271Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 +[CIPHER] [cn3] 2026-03-31T14:40:29.763273Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 5µs +[CIPHER] [cn4] 2026-03-31T14:40:29.764885Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xf8d0b48f8bebba37e55e899a37d3ca40c158ae37e68952874db0c35f1c3551bf), causation_id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 15, ts: 32742380983982117361332292985429761, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.765959Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C0PkBfv, data_hash: [18, 93, 108, 54, 183, 76, 81, 161, 253, 177, 209, 204, 227, 253, 53, 218, 124, 217, 63, 155, 145, 95, 201, 118, 176, 210, 42, 131, 197, 91, 92, 89], public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), ctx: EventContext { id: EventId(0xcee96f346ec0a3d23e364d7f8f4d97e77983e1ac8dc3db0e9c4c00fd2e71acd0), causation_id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 16, ts: 32742380983982947464815609915252481, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.766015Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn4] 2026-03-31T14:40:29.766022Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn4] 2026-03-31T14:40:29.766023Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 +[CIPHER] [cn4] 2026-03-31T14:40:29.766024Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 +[CIPHER] [cn4] 2026-03-31T14:40:29.766026Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.292µs +[CIPHER] [cn4] 2026-03-31T14:40:29.766017Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes +[CIPHER] [cn5] 2026-03-31T14:40:29.768533Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), causation_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 29, ts: 32742380984064998582455470029733957, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:40:29.768505Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), causation_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 29, ts: 32742380984122902912102844283363073, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:40:29.772940Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 } }, signature: }) } }), ctx: EventContext { id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), causation_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 17, ts: 32742380984176730511309928754978561, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.774189Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x90F79bf6EB2c4f870365E785982E1f101E93b906 for key from party 1 +[CIPHER] [cn5] 2026-03-31T14:40:29.776041Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 } }, signature: }) } }), ctx: EventContext { id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), causation_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 17, ts: 32742380984176988765726960717594693, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.777284Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x90F79bf6EB2c4f870365E785982E1f101E93b906 for key from party 1 +[CIPHER] [cn4] 2026-03-31T14:40:29.798561Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:29.798642Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(93) in 8.229869958s +[CIPHER] [cn5] 2026-03-31T14:40:29.811607Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key +[CIPHER] [cn4] 2026-03-31T14:40:29.811629Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key +[CIPHER] [cn5] 2026-03-31T14:40:29.813919Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x7493640f9e49dcd7e21d2771bc180af4bc32cf7736f5410f24dbd31fcc807fea), causation_id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 18, ts: 32742380984951290848220919146676293, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.814967Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [130, 195, 76, 115, 129, 2, 138, 195, 64, 33, 61, 199, 128, 253, 152, 238, 108, 32, 45, 203, 171, 84, 105, 222, 78, 118, 50, 133, 169, 106, 12, 36], public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), ctx: EventContext { id: EventId(0xc10e9e923000c4a6b8ed3367ea0b1f49481f6177d9fdc6ce09f9590a5d753230), causation_id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 19, ts: 32742380984952213185424604624257093, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.815039Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn5] 2026-03-31T14:40:29.815049Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn5] 2026-03-31T14:40:29.815042Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes +[CIPHER] [cn5] 2026-03-31T14:40:29.815051Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 +[CIPHER] [cn5] 2026-03-31T14:40:29.815052Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 +[CIPHER] [cn5] 2026-03-31T14:40:29.815053Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.333µs +[CIPHER] [cn4] 2026-03-31T14:40:29.816939Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3e92efae104a313dba761a0a333413dd84ccf6776ec594f7c78162597ce7de7a), causation_id: EventId(0x0e4e355122a1ae90dceed34abcde646fd2cb09776c1f830d75b0588b79abb647), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 18, ts: 32742380984951143274268329441369857, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.817872Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x7493640f9e49dcd7e21d2771bc180af4bc32cf7736f5410f24dbd31fcc807fea), causation_id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 19, ts: 32742380984951641336358319599263489, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.818902Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [130, 195, 76, 115, 129, 2, 138, 195, 64, 33, 61, 199, 128, 253, 152, 238, 108, 32, 45, 203, 171, 84, 105, 222, 78, 118, 50, 133, 169, 106, 12, 36], public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), ctx: EventContext { id: EventId(0xc10e9e923000c4a6b8ed3367ea0b1f49481f6177d9fdc6ce09f9590a5d753230), causation_id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 20, ts: 32742380984952323865889046852673281, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.819025Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 2 (signer: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65) +[CIPHER] [cn4] 2026-03-31T14:40:29.819093Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn4] 2026-03-31T14:40:29.819096Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes +[CIPHER] [cn4] 2026-03-31T14:40:29.819210Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn4] 2026-03-31T14:40:29.819211Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 +[CIPHER] [cn4] 2026-03-31T14:40:29.819212Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 +[CIPHER] [cn4] 2026-03-31T14:40:29.819214Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.292µs +[CIPHER] [cn4] 2026-03-31T14:40:29.822895Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x5710f35abc3f3e91e7b388fff2c7e76aa2ceab2e41bf95771ba894c88188f1db), causation_id: EventId(0x3e92efae104a313dba761a0a333413dd84ccf6776ec594f7c78162597ce7de7a), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 21, ts: 32742380985088073455527475443015425, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.823975Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C0PkBfv, data_hash: [146, 78, 116, 210, 59, 116, 60, 76, 189, 49, 156, 156, 52, 98, 31, 213, 54, 222, 129, 185, 77, 135, 244, 17, 247, 179, 15, 51, 228, 146, 223, 57], public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), ctx: EventContext { id: EventId(0x03a09f2dff296e582140c44b4a091b5f410bdbcfbfa5a482ca2c19883b1ceff2), causation_id: EventId(0x3e92efae104a313dba761a0a333413dd84ccf6776ec594f7c78162597ce7de7a), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 22, ts: 32742380985088811325290423825080065, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.824033Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 +[CIPHER] [cn4] 2026-03-31T14:40:29.824053Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn4] 2026-03-31T14:40:29.824055Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes +[CIPHER] [cn4] 2026-03-31T14:40:29.824061Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 +[CIPHER] [cn4] 2026-03-31T14:40:29.824062Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 +[CIPHER] [cn4] 2026-03-31T14:40:29.824060Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn4] 2026-03-31T14:40:29.824063Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! +[CIPHER] [cn4] 2026-03-31T14:40:29.824065Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.875µs +[CIPHER] [cn4] 2026-03-31T14:40:29.824069Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received +[CIPHER] [cn4] 2026-03-31T14:40:29.824144Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare +[CIPHER] [cn4] 2026-03-31T14:40:29.829890Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29.824011Z }, value: }), ctx: EventContext { id: EventId(0xbc2c576079be7a55d4b08112126861b5878cea62b6d151f274275c147cfcb744), causation_id: EventId(0x5710f35abc3f3e91e7b388fff2c7e76aa2ceab2e41bf95771ba894c88188f1db), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 30, ts: 32742380985180436303104539167956737, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.834041Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 81, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x60bf23503c31c074bd6964ea0a7e4944accca87c3b3336ce58302c6070133ee4), causation_id: EventId(0x5710f35abc3f3e91e7b388fff2c7e76aa2ceab2e41bf95771ba894c88188f1db), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 31, ts: 32742380985251013545930551912439553, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.834259Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(69)` +[CIPHER] [cn4] 2026-03-31T14:40:29.834262Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss +[CIPHER] [cn3] 2026-03-31T14:40:29.838901Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), causation_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 30, ts: 32742380985423232348602703343224673, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:40:29.838901Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), causation_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 30, ts: 32742380985417606091660222901977157, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:40:29.841798Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 +[CIPHER] [cn4] 2026-03-31T14:40:29.842053Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... +[CIPHER] [cn3] 2026-03-31T14:40:29.841521Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f } }, signature: }) } }), ctx: EventContext { id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), causation_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 20, ts: 32742380985474864785265016378197857, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.841512Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f } }, signature: }) } }), ctx: EventContext { id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), causation_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 20, ts: 32742380985475602655027965732257861, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.842787Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 for key from party 2 +[CIPHER] [cn3] 2026-03-31T14:40:29.842787Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 for key from party 2 +[CIPHER] [cn4] 2026-03-31T14:40:29.845903Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(69) in 11.640458ms +[CIPHER] [cn4] 2026-03-31T14:40:29.846001Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 81, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x25d6eff14ecdff333bf5fcdce6622e73c8a63daed568b9b218205662eeab83ee), causation_id: EventId(0x60bf23503c31c074bd6964ea0a7e4944accca87c3b3336ce58302c6070133ee4), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 23, ts: 32742380985584124850413598995521281, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.847407Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss +[CIPHER] [cn4] 2026-03-31T14:40:29.847498Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare +[CIPHER] [cn4] 2026-03-31T14:40:29.847546Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7cfb9d36157d32f8ca2616b8059c0c1efd308fc7cb8a99af64baf6530f21b21f), causation_id: EventId(0x25d6eff14ecdff333bf5fcdce6622e73c8a63daed568b9b218205662eeab83ee), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 32, ts: 32742380985613307599538207506177793, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.847735Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(58)` +[CIPHER] [cn4] 2026-03-31T14:40:29.847738Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss +[CIPHER] [cn4] 2026-03-31T14:40:29.851789Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... +[CIPHER] [cn4] 2026-03-31T14:40:29.851801Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... +[CIPHER] [cn4] 2026-03-31T14:40:29.855208Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... +[CIPHER] [cn4] 2026-03-31T14:40:29.855428Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(58) in 7.689959ms +[CIPHER] [cn4] 2026-03-31T14:40:29.855508Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb5c856907d5f61615da63cbd1d2fbec9404b337bd4c9a4849797b56a2e2344fa), causation_id: EventId(0x7cfb9d36157d32f8ca2616b8059c0c1efd308fc7cb8a99af64baf6530f21b21f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 24, ts: 32742380985759830087715682474663681, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.856269Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss +[CIPHER] [cn4] 2026-03-31T14:40:29.856360Z  INFO e3_keyshare::threshold_keyshare: esi stored +[CIPHER] [cn5] 2026-03-31T14:40:29.874623Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key +[CIPHER] [cn3] 2026-03-31T14:40:29.874688Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key +[CIPHER] [cn4] 2026-03-31T14:40:29.874963Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) +[CIPHER] [cn5] 2026-03-31T14:40:29.874767Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xd4d523cac9853a220d0ff93e525c297efa2ecfeaed17c2528e59df8230d8227a), causation_id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 21, ts: 32742380986113712426025726541758533, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.875976Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C0PkBfv, data_hash: [146, 78, 116, 210, 59, 116, 60, 76, 189, 49, 156, 156, 52, 98, 31, 213, 54, 222, 129, 185, 77, 135, 244, 17, 247, 179, 15, 51, 228, 146, 223, 57], public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), ctx: EventContext { id: EventId(0x03a09f2dff296e582140c44b4a091b5f410bdbcfbfa5a482ca2c19883b1ceff2), causation_id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 22, ts: 32742380986114468742532748633374789, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.876054Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn5] 2026-03-31T14:40:29.876057Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes +[CIPHER] [cn5] 2026-03-31T14:40:29.876063Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn5] 2026-03-31T14:40:29.876065Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 +[CIPHER] [cn5] 2026-03-31T14:40:29.876066Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 +[CIPHER] [cn5] 2026-03-31T14:40:29.876067Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! +[CIPHER] [cn5] 2026-03-31T14:40:29.876070Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 6.667µs +[CIPHER] [cn5] 2026-03-31T14:40:29.876092Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received +[CIPHER] [cn5] 2026-03-31T14:40:29.876150Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare +[CIPHER] [cn3] 2026-03-31T14:40:29.876694Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xd4d523cac9853a220d0ff93e525c297efa2ecfeaed17c2528e59df8230d8227a), causation_id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 21, ts: 32742380986114911464390516690618209, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.877786Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C0PkBfv, data_hash: [146, 78, 116, 210, 59, 116, 60, 76, 189, 49, 156, 156, 52, 98, 31, 213, 54, 222, 129, 185, 77, 135, 244, 17, 247, 179, 15, 51, 228, 146, 223, 57], public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), ctx: EventContext { id: EventId(0x03a09f2dff296e582140c44b4a091b5f410bdbcfbfa5a482ca2c19883b1ceff2), causation_id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 22, ts: 32742380986115557100433096524924769, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.877840Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn3] 2026-03-31T14:40:29.877842Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-03-31T14:40:29.877847Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn3] 2026-03-31T14:40:29.877848Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 +[CIPHER] [cn3] 2026-03-31T14:40:29.877849Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 +[CIPHER] [cn3] 2026-03-31T14:40:29.877850Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! +[CIPHER] [cn3] 2026-03-31T14:40:29.877851Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.667µs +[CIPHER] [cn3] 2026-03-31T14:40:29.877931Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare +[CIPHER] [cn3] 2026-03-31T14:40:29.877866Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received +[CIPHER] [cn5] 2026-03-31T14:40:29.881248Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), causation_id: EventId(0xd4d523cac9853a220d0ff93e525c297efa2ecfeaed17c2528e59df8230d8227a), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 31, ts: 32742380986210963660782323297878085, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.881496Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(141)` +[CIPHER] [cn5] 2026-03-31T14:40:29.881531Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss +[CIPHER] [cn3] 2026-03-31T14:40:29.883901Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), causation_id: EventId(0xd4d523cac9853a220d0ff93e525c297efa2ecfeaed17c2528e59df8230d8227a), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 31, ts: 32742380986247229959631235304359777, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.884142Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(142)` +[CIPHER] [cn3] 2026-03-31T14:40:29.884147Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss +[CIPHER] [cn5] 2026-03-31T14:40:29.888802Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 +[CIPHER] [cn5] 2026-03-31T14:40:29.889027Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... +[CIPHER] [cn4] 2026-03-31T14:40:29.879938Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), causation_id: EventId(0xb5c856907d5f61615da63cbd1d2fbec9404b337bd4c9a4849797b56a2e2344fa), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 25, ts: 32742380986120021212498935179517697, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.890652Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof +[CIPHER] [cn4] 2026-03-31T14:40:29.890665Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof +[CIPHER] [cn4] 2026-03-31T14:40:29.890674Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof +[CIPHER] [cn4] 2026-03-31T14:40:29.890694Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:29.890743Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:29.890798Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping +[CIPHER] [cn3] 2026-03-31T14:40:29.891314Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 +[CIPHER] [cn3] 2026-03-31T14:40:29.891527Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... +[CIPHER] [cn5] 2026-03-31T14:40:29.892245Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(141) in 10.715ms +[CIPHER] [cn5] 2026-03-31T14:40:29.892832Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5c5f6c86cc60279005774d1504d339420f8ef7bfe9fc67b42c61ee669c64ff8f), causation_id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 23, ts: 32742380986439057651253741903609925, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.894222Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss +[CIPHER] [cn5] 2026-03-31T14:40:29.894311Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare +[CIPHER] [cn3] 2026-03-31T14:40:29.895921Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(142) in 11.774042ms +[CIPHER] [cn5] 2026-03-31T14:40:29.898876Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7fa97c9ceded56622805871c84ac93209064c1ff509161889559cd060ed26df8), causation_id: EventId(0x5c5f6c86cc60279005774d1504d339420f8ef7bfe9fc67b42c61ee669c64ff8f), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 32, ts: 32742380986476855029860772774871109, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.899078Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(14)` +[CIPHER] [cn5] 2026-03-31T14:40:29.899081Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss +[CIPHER] [cn3] 2026-03-31T14:40:29.898883Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa014d4486c3fbcdb967918a9e7ea4786f12ecc9d8a9ff180c3c7201545bad9e3), causation_id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 23, ts: 32742380986506720308516107566942049, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.900238Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss +[CIPHER] [cn3] 2026-03-31T14:40:29.900319Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare +[CIPHER] [cn3] 2026-03-31T14:40:29.901818Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5ef85576c0d096697276cd0d72f3f53ba81e70f59c79a058c2ce80bdff0dcb2d), causation_id: EventId(0xa014d4486c3fbcdb967918a9e7ea4786f12ecc9d8a9ff180c3c7201545bad9e3), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 32, ts: 32742380986587664621511545079433057, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.902003Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(224)` +[CIPHER] [cn3] 2026-03-31T14:40:29.902009Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss +[CIPHER] [cn5] 2026-03-31T14:40:29.902631Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... +[CIPHER] [cn5] 2026-03-31T14:40:29.902640Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... +[CIPHER] [cn3] 2026-03-31T14:40:29.905761Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... +[CIPHER] [cn3] 2026-03-31T14:40:29.905772Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... +[CIPHER] [cn5] 2026-03-31T14:40:29.906488Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... +[CIPHER] [cn5] 2026-03-31T14:40:29.906701Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(14) in 7.619542ms +[CIPHER] [cn5] 2026-03-31T14:40:29.907847Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x58d0347e6884f1fc711a6a66b3f2b4f79aab8dae2f859c0678cd1a0dbdd0190e), causation_id: EventId(0x7fa97c9ceded56622805871c84ac93209064c1ff509161889559cd060ed26df8), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 24, ts: 32742380986705742230327360891322437, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.908592Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss +[CIPHER] [cn4] 2026-03-31T14:40:29.908051Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xee2d258467d3c723c70d1cff16c5e250fd776cfbca7e3f96f80ef28410348abd), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 33, ts: 32742380986409376840039143206166273, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.908697Z  INFO e3_keyshare::threshold_keyshare: esi stored +[CIPHER] [cn3] 2026-03-31T14:40:29.909205Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... +[CIPHER] [cn3] 2026-03-31T14:40:29.909414Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(224) in 7.404875ms +[CIPHER] [cn4] 2026-03-31T14:40:29.908613Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x44a755ae89f89cfce475ca7592d80b96bba4aebda6f9d591a160604d454e01ef), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 34, ts: 32742380986409561307479880301682433, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.909469Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x32d58fd5d3b5a1c9c84865296896f7dd4dc7725e2693e2f499cda9f27247f07d), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 35, ts: 32742380986409727328176543687646977, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.910311Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb76c8227c159cd9970f5e1e91ce50d4e27d43c2c743e1323de93a0f831b88a23), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 36, ts: 32742380986410243837010607555092225, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.910683Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x99334fd476ea35560d0289a10b55e6fbdcefb3022e3bc27daf73f7d2e5aabf03), causation_id: EventId(0x5ef85576c0d096697276cd0d72f3f53ba81e70f59c79a058c2ce80bdff0dcb2d), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 24, ts: 32742380986755640673046744256448353, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.911445Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss +[CIPHER] [cn3] 2026-03-31T14:40:29.911532Z  INFO e3_keyshare::threshold_keyshare: esi stored +[CIPHER] [cn4] 2026-03-31T14:40:29.911015Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x528c3ee5a47735ff7a8ae10fb6c571dd18f68c3aca906612a9f78a0f756beff7), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 37, ts: 32742380986410372964219123521953537, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.911720Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4d400872dd81a0f9e2426632d7f7698488e3386f3a9ab996631bbb5a359dd412), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 38, ts: 32742380986410483644683565779263233, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.912416Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x087f42e26f40759b203e10a7b874ad6ab9385b8dd6373de51afb69b0bcb2cf90), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 39, ts: 32742380986410612771892081746124545, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.913161Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x33fedad713253244ece0f091951187749506da193fa0151de534f7b1be9a00c4), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 40, ts: 32742380986410741899100597712985857, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.913857Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x85a6fe7332113c9521011e293ff126ca4376ca9ed3ea1b8005b1f477811e3b92), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 41, ts: 32742380986410871026309113679847169, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.914553Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7cfff2964618ffb7f9838d5d78698890d23907939b60fa6c6b101b2a3a0fe86e), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 42, ts: 32742380986411018600261703356260097, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.915241Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x34682c8b1d9df5ab9e5c37c66c9cab0b69aede8b0cd1fe466bbae2100ccb335d), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 43, ts: 32742380986411147727470219323121409, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.915923Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc85d41f636836272d95fd671cfba4ca820632775ba06a1e06512111ae3e8ada2), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 44, ts: 32742380986411424428631324966395649, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.916617Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x977b76a84e60911c0440ef673f667827ed945ef6aa316608e06963f936dafa72), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 45, ts: 32742380986411553555839840933256961, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.917342Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x780981cc9706f5867b020631dadedac1122a5d8da4faeabb5e6fce1b603b7dc7), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 46, ts: 32742380986411682683048356900118273, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.918081Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xab584d7aa197b5cc9bd381ad09e5ac8a0e9227af9d56aaddef355e0580502468), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 47, ts: 32742380986411830257000946576531201, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.918793Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 26, ts: 32742380986412070064673904800702209, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:29.918847Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete +[CIPHER] [cn4] 2026-03-31T14:40:29.918986Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(169)` +[CIPHER] [cn1] 2026-03-31T14:40:29.919636Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 12, ts: 32742380986937599356589813856893244, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-03-31T14:40:29.919640Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 12, ts: 32742380986940661516106051250837733, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:40:29.919710Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 12, ts: 32742380986939739178902362807218525, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:40:29.919883Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 2 — buffering until GeneratingC5Proof +[CIPHER] [cn5] 2026-03-31T14:40:29.924598Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) +[CIPHER] [cn3] 2026-03-31T14:40:29.927706Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) +[CIPHER] [cn5] 2026-03-31T14:40:29.927209Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), causation_id: EventId(0x58d0347e6884f1fc711a6a66b3f2b4f79aab8dae2f859c0678cd1a0dbdd0190e), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 25, ts: 32742380987035625354597508802871365, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.937858Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof +[CIPHER] [cn5] 2026-03-31T14:40:29.937871Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof +[CIPHER] [cn5] 2026-03-31T14:40:29.937880Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof +[CIPHER] [cn5] 2026-03-31T14:40:29.937890Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:29.937934Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:29.937978Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping +[CIPHER] [cn3] 2026-03-31T14:40:29.929934Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), causation_id: EventId(0x99334fd476ea35560d0289a10b55e6fbdcefb3022e3bc27daf73f7d2e5aabf03), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 25, ts: 32742380987092957835178597117298529, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.940304Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof +[CIPHER] [cn3] 2026-03-31T14:40:29.940314Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof +[CIPHER] [cn3] 2026-03-31T14:40:29.940323Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof +[CIPHER] [cn3] 2026-03-31T14:40:29.940336Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:29.940378Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:29.940424Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping +[CIPHER] [cn5] 2026-03-31T14:40:29.945950Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa168511c2c49f54690c2725cad5230b976247daa4992d6b42678f1ddb6007be0), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 33, ts: 32742380987280192287526750038196293, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.946513Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbd090be183df3179d14a7e81571090dd9efb28e11a21972b1edacfabbd149b59), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 34, ts: 32742380987280358308223413424160837, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.947328Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xf179d879e498ef6476028ed368eaded401f290b28b75d1bc419e8bbcbfd0ac20), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 35, ts: 32742380987280524328920076810125381, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.948145Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x89609619eba554485a5854381b9078f2929c9df52be9e40bfd8443f92839f455), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 36, ts: 32742380987280745689848961324744773, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.948772Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa90b76c298cfc5f63e06da7910f6f303c9ed84644f08101c1e1024aeb91dd376), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 33, ts: 32742380987325276130042895210350433, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.948852Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfaa2572c8fed99d96c24ad11ab4147c3470d80cbc58b6fa1f37c26fa9d964c1a), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 37, ts: 32742380987280874817057477291606085, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.949315Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa2c0ca869eca035ca6bc8fea61655f7bcf1081aaeda9a7e3dac9ae9f08a5df3b), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 34, ts: 32742380987325423703995484886763361, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.949534Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x592acc3d1d7610d88552ea6656deb887b1459f55c8c473ced8fd530f5347e608), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 38, ts: 32742380987281003944265993258467397, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.950227Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdc765c3297f592f96923bed6769e840a416eb9438c201deec6793c5e814edcfc), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 39, ts: 32742380987281133071474509225328709, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.950153Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x54123daca94e8e7c66f2e4f14236d438e45af93c6f23fad2486de783f8aa4458), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 35, ts: 32742380987325589724692148272727905, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.950899Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb8ef7819394a05c265657a54ead13c65a84deecba8c1f5e13aa932f1682c2697), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 40, ts: 32742380987281262198683025192190021, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.950982Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3341c3f6dfbf194f36faee6a527f93a93ed5d1e6429a23f7a15da6b1beb87915), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 36, ts: 32742380987325829532365106496898913, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.951587Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x6aa615e1c3f23854486dfa7200fae7acb128460bd2bf2323f44f0ac47e66af5c), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 41, ts: 32742380987281372879147467449499717, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.951672Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9500870ec8aba2d3363360f51401116393d6074445b3d3043d536a110d871c53), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 37, ts: 32742380987325958659573622463760225, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.952264Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1a444f9591bf0f8e0b8ec2ae28b26b249c3b74f6504575ccff0539801c58a2e5), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 42, ts: 32742380987281538899844130835464261, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.952348Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1da239908abf8fd3be3b2a20249b1c1b33ff077ec8af136bb59a14b3de29f309), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 38, ts: 32742380987326087786782138430621537, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.952941Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1ec8c2b0863475a4e9c42e43cc581afb504a6277fecc2024d4a6d16be2bf8376), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 43, ts: 32742380987281668027052646802325573, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.953026Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x87996345c72d662511c976e7803ddb94a12a27fd5987248cbbc82b6ee7cd8b56), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 39, ts: 32742380987326198467246580687931233, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.953622Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0aebc30dcd1bb32c678398d6144fa59632fd53757c2dcfbf5bc3ce66ef147621), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 44, ts: 32742380987281778707517089059635269, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.953701Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb33596209db255a8d65c3f35b54ae8b1c47908ec0941cdb893e3c36a63d768fe), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 40, ts: 32742380987326346041199170364344161, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.954293Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4ec43d763cc1a474edeb0fd1c56097314918e4dbfaf9b9c9ace2de3aa2420a55), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 45, ts: 32742380987281907834725605026496581, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.954375Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x32a5d51489cf21df6fe50e1f61b9278475ae35e4ba4d9ab0a0a876aad964e9ba), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 41, ts: 32742380987326456721663612621653857, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.954973Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbf6cae0c89acd0b4fb072cc4bc4a3776d8f64046d22625b9e0aed99a8ab685a2), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 46, ts: 32742380987282018515190047283806277, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.955049Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfe61e3cbd8d57d40f5888def0059b95bb790c4789fb3d3948915fefa1671144d), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 42, ts: 32742380987326622742360276007618401, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.955725Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7c9057e3fbc6a327e92fe5862172c2b3656677b7a8bd528bf3c3541cfc93d6f0), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 43, ts: 32742380987326751869568791974479713, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.955701Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x44266a745387f51eecf4473ff66b53362367704c9e823108c6b4b9566d633ba1), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 47, ts: 32742380987282147642398563250667589, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.956403Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 26, ts: 32742380987282369003327447765286981, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:29.956455Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete +[CIPHER] [cn5] 2026-03-31T14:40:29.956584Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(148)` +[CIPHER] [cn1] 2026-03-31T14:40:29.956844Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 13, ts: 32742380987629831874699838490835260, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:40:29.956939Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 27, ts: 32742380987631307614225737643655237, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:40:29.956402Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4d96fc225ddc902755845c36c88c3f7a5bcbae682587b773b3381d1ce66a8acc), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 44, ts: 32742380987326862550033234231789409, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.957078Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x08f82429a3b12725432854c44ef490e2ef0155a51ee5b16e606a33baa3635268), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 45, ts: 32742380987326991677241750198650721, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.957815Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x39696975ff35f2dbea6f63528a6287163765a8d1aedabfba56d946d614296ad9), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 46, ts: 32742380987327102357706192455960417, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.958531Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x698e4408f109b10eef63b789a9de9d7f2089e1b1d0e287282bcba817ca7d957e), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 47, ts: 32742380987327286825146929551476577, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.959238Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 26, ts: 32742380987327471292587666646992737, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:29.959287Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete +[CIPHER] [cn3] 2026-03-31T14:40:29.959391Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(74)` +[CIPHER] [cn5] 2026-03-31T14:40:29.959826Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 28, ts: 32742380987682626456238797616250949, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-03-31T14:40:29.962991Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 14, ts: 32742380987685504148314293917612348, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:40:29.963031Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 27, ts: 32742380987640660113471108357431041, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:40:29.965961Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 13, ts: 32742380987636417362334151443099997, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:40:29.966024Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 0 — buffering until GeneratingC5Proof +[CIPHER] [cn3] 2026-03-31T14:40:29.969028Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 27, ts: 32742380987689949813636059336247137, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:40:29.969066Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 28, ts: 32742380987690042047356427884005217, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:40:29.969078Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 28, ts: 32742380987754660991846633386417921, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-03-31T14:40:29.974900Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 13, ts: 32742380987636583383030817795102949, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-03-31T14:40:29.976695Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 14, ts: 32742380987986923946478709599394021, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:40:29.976703Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 14, ts: 32742380987809632289186284132774237, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:40:29.976780Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 1 — buffering until GeneratingC5Proof +[CIPHER] [cn4] 2026-03-31T14:40:31.054421Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:31.069544Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:31.069752Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:38.180233Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:38.180403Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(169) in 8.261425125s +[CIPHER] [cn4] 2026-03-31T14:40:38.180778Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x694bb7fbb38bc1a96e07194be27c55ae873affddb27476fbbf0eebdb48ab71a9), causation_id: EventId(0xee2d258467d3c723c70d1cff16c5e250fd776cfbca7e3f96f80ef28410348abd), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 29, ts: 32742381139328826927395110001450753, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:38.181757Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) +[CIPHER] [cn4] 2026-03-31T14:40:38.190446Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(171)` +[CIPHER] [cn3] 2026-03-31T14:40:38.651490Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:38.651655Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(74) in 8.692273875s +[CIPHER] [cn3] 2026-03-31T14:40:38.652075Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x498649a538f48afdf0aef3b25e863c48cbed2184be02a8b0644eecba46cac103), causation_id: EventId(0xa90b76c298cfc5f63e06da7910f6f303c9ed84644f08101c1e1024aeb91dd376), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 29, ts: 32742381148021855072130735257388897, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:38.653073Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) +[CIPHER] [cn3] 2026-03-31T14:40:38.661695Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(31)` +[CIPHER] [cn5] 2026-03-31T14:40:38.755628Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:38.755728Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(148) in 8.799154958s +[CIPHER] [cn5] 2026-03-31T14:40:38.755843Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(79)` +[CIPHER] [cn5] 2026-03-31T14:40:38.756100Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xafc093852e768758c7053858c7a99be59607f49b1b98df254cc14ea2894c7249), causation_id: EventId(0xa168511c2c49f54690c2725cad5230b976247daa4992d6b42678f1ddb6007be0), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 29, ts: 32742381149942124236715753133506629, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:38.757056Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) +[CIPHER] [cn4] 2026-03-31T14:40:39.834969Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:40.475107Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:40.505342Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:47.912045Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:47.912232Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(171) in 9.721784459s +[CIPHER] [cn4] 2026-03-31T14:40:47.912517Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(245)` +[CIPHER] [cn4] 2026-03-31T14:40:47.912684Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x36b8e588aab167306e28a543f17e135e61b44d8434518739f62a39b86035f211), causation_id: EventId(0xab584d7aa197b5cc9bd381ad09e5ac8a0e9227af9d56aaddef355e0580502468), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 30, ts: 32742381318849367412755788285484801, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:47.914599Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) +[CIPHER] [cn3] 2026-03-31T14:40:48.778153Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:48.778326Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(31) in 10.116632666s +[CIPHER] [cn3] 2026-03-31T14:40:48.778633Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(119)` +[CIPHER] [cn3] 2026-03-31T14:40:48.778670Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5338e7ff9c4841b076a9f4f66f93e28ba901d15014334b5a412f4ecd96f97be0), causation_id: EventId(0x698e4408f109b10eef63b789a9de9d7f2089e1b1d0e287282bcba817ca7d957e), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 30, ts: 32742381334825981774531187739690849, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:48.780570Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) +[CIPHER] [cn5] 2026-03-31T14:40:49.089955Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:49.090046Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(79) in 10.334213958s +[CIPHER] [cn5] 2026-03-31T14:40:49.090157Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(204)` +[CIPHER] [cn5] 2026-03-31T14:40:49.090314Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xffdb3a8762ba14e281bef9fc4950dc7984ca547602855bf711ff7b65a52798d7), causation_id: EventId(0x44266a745387f51eecf4473ff66b53362367704c9e823108c6b4b9566d633ba1), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 30, ts: 32742381340576385304628667236941893, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:49.092193Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) +[CIPHER] [cn4] 2026-03-31T14:40:49.782060Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:50.490140Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:50.775309Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:57.515826Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:40:57.516032Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(245) in 9.60352175s +[CIPHER] [cn4] 2026-03-31T14:40:57.516399Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(92)` +[CIPHER] [cn4] 2026-03-31T14:40:57.516505Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x2afdff2371f39409d85ea78c92866943769a601f71cb1699a9cb5ebe7a5b94f8), causation_id: EventId(0x780981cc9706f5867b020631dadedac1122a5d8da4faeabb5e6fce1b603b7dc7), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 31, ts: 32742381496008281934823874933432065, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:40:57.518494Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) +[CIPHER] [cn3] 2026-03-31T14:40:59.061788Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:40:59.061967Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(119) in 10.283343625s +[CIPHER] [cn3] 2026-03-31T14:40:59.062396Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(213)` +[CIPHER] [cn3] 2026-03-31T14:40:59.062435Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe47c0a455fbe48b9c0f7dcccbcf5a5066fa6ec0fcce1363fd17d413bbea688cc), causation_id: EventId(0x39696975ff35f2dbea6f63528a6287163765a8d1aedabfba56d946d614296ad9), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 31, ts: 32742381524525638553949607410501473, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:40:59.064348Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) +[CIPHER] [cn5] 2026-03-31T14:40:59.190723Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:40:59.190919Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(204) in 10.10077375s +[CIPHER] [cn5] 2026-03-31T14:40:59.191593Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(73)` +[CIPHER] [cn5] 2026-03-31T14:40:59.191789Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x965ff09ae065f25bf433a38a452a5a7c65b76c0ce7a4bc8d241a6e387fef9146), causation_id: EventId(0xbf6cae0c89acd0b4fb072cc4bc4a3776d8f64046d22625b9e0aed99a8ab685a2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 31, ts: 32742381526905065625273329735893061, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:40:59.193663Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) +[CIPHER] [cn4] 2026-03-31T14:40:59.347981Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:00.602255Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:41:00.772776Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:07.094739Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:07.095410Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(92) in 9.579018458s +[CIPHER] [cn4] 2026-03-31T14:41:07.095496Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(252)` +[CIPHER] [cn4] 2026-03-31T14:41:07.095737Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8f8e1ce2e94f315956d53872a8324658221ca7db9f46548e9b023a30f8caf8f2), causation_id: EventId(0x977b76a84e60911c0440ef673f667827ed945ef6aa316608e06963f936dafa72), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 32, ts: 32742381672716597839403458364055297, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:41:07.097642Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) +[CIPHER] [cn3] 2026-03-31T14:41:08.940078Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:08.940221Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(213) in 9.877834375s +[CIPHER] [cn3] 2026-03-31T14:41:08.940728Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(175)` +[CIPHER] [cn3] 2026-03-31T14:41:08.940764Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7682266d2053d8c107ba0d276acc8c187a6fc68152e2a00f8dfba65748d9008d), causation_id: EventId(0x08f82429a3b12725432854c44ef490e2ef0155a51ee5b16e606a33baa3635268), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 32, ts: 32742381706747243540303206789908321, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:41:08.942739Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) +[CIPHER] [cn5] 2026-03-31T14:41:09.002758Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:41:09.002868Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(73) in 9.811284709s +[CIPHER] [cn5] 2026-03-31T14:41:09.002987Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(53)` +[CIPHER] [cn5] 2026-03-31T14:41:09.003209Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5c62ce60e917f8a0cc94983b9cd07c79df33f2d43c4d3c748cb3848aa03302f3), causation_id: EventId(0x4ec43d763cc1a474edeb0fd1c56097314918e4dbfaf9b9c9ace2de3aa2420a55), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 32, ts: 32742381707903448565355175038091333, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:41:09.005184Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) +[CIPHER] [cn4] 2026-03-31T14:41:09.103477Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:10.469456Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:41:10.488022Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:16.611410Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:16.611588Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(252) in 9.51610075s +[CIPHER] [cn4] 2026-03-31T14:41:16.611876Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(103)` +[CIPHER] [cn4] 2026-03-31T14:41:16.611896Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc5585267f24107e05ea2d260640d0775608416e7e381b4d381bbb4f6540c7bf3), causation_id: EventId(0xc85d41f636836272d95fd671cfba4ca820632775ba06a1e06512111ae3e8ada2), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 33, ts: 32742381848259263985965335228063489, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:41:16.616002Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) +[CIPHER] [cn5] 2026-03-31T14:41:18.531279Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:41:18.532122Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(53) in 9.529142708s +[CIPHER] [cn5] 2026-03-31T14:41:18.532656Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(209)` +[CIPHER] [cn5] 2026-03-31T14:41:18.532402Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe0b0f47020c7554393ddae5861541da216df9507436875d145be977de2286eeb), causation_id: EventId(0x0aebc30dcd1bb32c678398d6144fa59632fd53757c2dcfbf5bc3ce66ef147621), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 33, ts: 32742381883686752488358593002930245, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:41:18.536540Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) +[CIPHER] [cn4] 2026-03-31T14:41:18.670060Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:18.682758Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:18.683334Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(175) in 9.742614s +[CIPHER] [cn3] 2026-03-31T14:41:18.683426Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(6)` +[CIPHER] [cn3] 2026-03-31T14:41:18.683521Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x70dc93440811b30434dd94522b62de63c9dd1b3bd62a31f0325ae80a93da2867), causation_id: EventId(0x4d96fc225ddc902755845c36c88c3f7a5bcbae682587b773b3381d1ce66a8acc), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 33, ts: 32742381886476121553232360749893473, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:41:18.685519Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) +[CIPHER] [cn5] 2026-03-31T14:41:20.171553Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:20.261135Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:27.030950Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:27.031098Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(103) in 10.41923125s +[CIPHER] [cn4] 2026-03-31T14:41:27.031429Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(36)` +[CIPHER] [cn4] 2026-03-31T14:41:27.031520Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x591d8e230fe70d74fe0d5da98be8a73dbd24fcd700084c5a90fd528b2f813b73), causation_id: EventId(0x34682c8b1d9df5ab9e5c37c66c9cab0b69aede8b0cd1fe466bbae2100ccb335d), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 34, ts: 32742382040465003181517566033665793, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:41:27.033416Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) +[CIPHER] [cn5] 2026-03-31T14:41:29.195808Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:41:29.196817Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(209) in 10.664168959s +[CIPHER] [cn5] 2026-03-31T14:41:29.197072Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(199)` +[CIPHER] [cn5] 2026-03-31T14:41:29.197326Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdf4f1569a8cf0ccf028a06158ad5ff6b6bb2ef571d3bdc8ff84e9d17f9d678e3), causation_id: EventId(0x1ec8c2b0863475a4e9c42e43cc581afb504a6277fecc2024d4a6d16be2bf8376), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 34, ts: 32742382080415633330784405864775749, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:41:29.199293Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) +[CIPHER] [cn4] 2026-03-31T14:41:29.411639Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:29.569701Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:29.570494Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(6) in 10.887077s +[CIPHER] [cn3] 2026-03-31T14:41:29.570587Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(238)` +[CIPHER] [cn3] 2026-03-31T14:41:29.570877Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5c34bdbfc7667b41e4e9b46030f358a33cbbb881bf5def6d128a43f8af745d9d), causation_id: EventId(0x7c9057e3fbc6a327e92fe5862172c2b3656677b7a8bd528bf3c3541cfc93d6f0), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 34, ts: 32742382087308849549736337559750497, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:41:29.572786Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) +[CIPHER] [cn5] 2026-03-31T14:41:30.780028Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:30.995603Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:37.253688Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:37.253836Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(36) in 10.222416583s +[CIPHER] [cn4] 2026-03-31T14:41:37.254167Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(0)` +[CIPHER] [cn4] 2026-03-31T14:41:37.254231Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe3f9bdb0078d1dcfcfa51985c8fc9718d65c8eff406fdbf2100fda7ea9ce139f), causation_id: EventId(0x7cfff2964618ffb7f9838d5d78698890d23907939b60fa6c6b101b2a3a0fe86e), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 35, ts: 32742382229041271693591147720613633, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:41:37.257236Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) +[CIPHER] [cn5] 2026-03-31T14:41:38.979616Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:41:38.979781Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(199) in 9.782718875s +[CIPHER] [cn5] 2026-03-31T14:41:38.980056Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(243)` +[CIPHER] [cn5] 2026-03-31T14:41:38.980261Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb8f2b659702be4d9c591911781906f15136f3101b2bc06983cf15c29a7e9ea50), causation_id: EventId(0x1a444f9591bf0f8e0b8ec2ae28b26b249c3b74f6504575ccff0539801c58a2e5), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 35, ts: 32742382260879374287377927232487493, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:41:38.982137Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) +[CIPHER] [cn4] 2026-03-31T14:41:39.388047Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:39.415625Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:39.415702Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(238) in 9.845120333s +[CIPHER] [cn3] 2026-03-31T14:41:39.415789Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(74)` +[CIPHER] [cn3] 2026-03-31T14:41:39.416089Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xcbaf02985f19ec34debf4db10fd3f5f04da2fd60a8396e4b5e4d6b244dfef4b1), causation_id: EventId(0xfe61e3cbd8d57d40f5888def0059b95bb790c4789fb3d3948915fefa1671144d), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 35, ts: 32742382268920900324918278515558241, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:41:39.428297Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) +[CIPHER] [cn5] 2026-03-31T14:41:40.410960Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:40.845169Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:47.061401Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:47.061550Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(0) in 9.807391958s +[CIPHER] [cn4] 2026-03-31T14:41:47.062081Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(179)` +[CIPHER] [cn4] 2026-03-31T14:41:47.062116Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x20d4e3ebb2cbf557bb6181d269678318c4174841b9f73d6823ff73877f18de8e), causation_id: EventId(0x85a6fe7332113c9521011e293ff126ca4376ca9ed3ea1b8005b1f477811e3b92), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 36, ts: 32742382409962547243444887097057025, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:41:47.063997Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) +[CIPHER] [cn5] 2026-03-31T14:41:49.113607Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:41:49.113758Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(243) in 10.133711667s +[CIPHER] [cn5] 2026-03-31T14:41:49.114435Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(159)` +[CIPHER] [cn5] 2026-03-31T14:41:49.114231Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa1f8bd77e4825741376fd349d8968dcd903103eba36c69459e88a6b34862fcb2), causation_id: EventId(0x6aa615e1c3f23854486dfa7200fae7acb128460bd2bf2323f44f0ac47e66af5c), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 36, ts: 32742382447818568049886081051721797, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:41:49.116130Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) +[CIPHER] [cn4] 2026-03-31T14:41:49.292867Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:49.452102Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:49.452249Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(74) in 10.036467042s +[CIPHER] [cn3] 2026-03-31T14:41:49.452702Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(110)` +[CIPHER] [cn3] 2026-03-31T14:41:49.452737Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xff5a313a3bc5b4731e5cec89c6fa38807043ab8fc0d536e83c84f954580041f2), causation_id: EventId(0x32a5d51489cf21df6fe50e1f61b9278475ae35e4ba4d9ab0a0a876aad964e9ba), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 36, ts: 32742382454062717131860468463535969, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:41:49.454623Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) +[CIPHER] [cn5] 2026-03-31T14:41:50.577030Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:50.837931Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:56.799109Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:41:56.799716Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(179) in 9.737644042s +[CIPHER] [cn4] 2026-03-31T14:41:56.800367Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(186)` +[CIPHER] [cn4] 2026-03-31T14:41:56.799953Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xce5135e10d9c52ba2fc1600fa0958870bdf292e14ed38d39a718d5bd46eedfee), causation_id: EventId(0x33fedad713253244ece0f091951187749506da193fa0151de534f7b1be9a00c4), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 37, ts: 32742382589599228429493640718065409, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:41:56.804003Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) +[CIPHER] [cn5] 2026-03-31T14:41:58.632733Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:41:58.632893Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(159) in 9.518465958s +[CIPHER] [cn5] 2026-03-31T14:41:58.634160Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(8)` +[CIPHER] [cn5] 2026-03-31T14:41:58.633144Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd39a067ea25d77f1eaf2cd08a999d05411b30cc535bd543561e57737ae4f8f27), causation_id: EventId(0xb8ef7819394a05c265657a54ead13c65a84deecba8c1f5e13aa932f1682c2697), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 37, ts: 32742382623415246263095779482861637, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:41:58.637233Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) +[CIPHER] [cn3] 2026-03-31T14:41:58.822286Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:41:58.822431Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(110) in 9.369737917s +[CIPHER] [cn3] 2026-03-31T14:41:58.826142Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(186)` +[CIPHER] [cn3] 2026-03-31T14:41:58.822726Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe186d3e9d8da4881d327cecf95b64f71f81bf5933f7b9253489b4ced6f43efac), causation_id: EventId(0xb33596209db255a8d65c3f35b54ae8b1c47908ec0941cdb893e3c36a63d768fe), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 37, ts: 32742382626912047963196308534298465, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:41:58.826875Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) +[CIPHER] [cn4] 2026-03-31T14:41:58.912271Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:42:00.071616Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:00.294810Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:42:06.323753Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:42:06.323907Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(186) in 9.523549042s +[CIPHER] [cn4] 2026-03-31T14:42:06.325142Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(167)` +[CIPHER] [cn4] 2026-03-31T14:42:06.324146Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd1037c42945ad3f9f9dee0f48cb94fc652346ca3235519926c469065f556be6e), causation_id: EventId(0x087f42e26f40759b203e10a7b874ad6ab9385b8dd6373de51afb69b0bcb2cf90), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 38, ts: 32742382765289413188412972866346753, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:42:06.328238Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) +[CIPHER] [cn5] 2026-03-31T14:42:07.863215Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:42:07.863747Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(8) in 9.229592208s +[CIPHER] [cn5] 2026-03-31T14:42:07.863974Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x05423ca28b6c92944af13728c53c76eb4d65f46a2cacebb52db2d7041085d67e), causation_id: EventId(0xdc765c3297f592f96923bed6769e840a416eb9438c201deec6793c5e814edcfc), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 38, ts: 32742382793694466029617962565173317, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:42:07.868037Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) +[CIPHER] [cn5] 2026-03-31T14:42:07.873787Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(54)` +[CIPHER] [cn4] 2026-03-31T14:42:08.210697Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:08.230432Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:08.230581Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(186) in 9.404447875s +[CIPHER] [cn3] 2026-03-31T14:42:08.230912Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdf4cc2530ae3392f1cbe75563ac114958fb9abd5efd97d1bca2b1c3beda7ed08), causation_id: EventId(0x87996345c72d662511c976e7803ddb94a12a27fd5987248cbbc82b6ee7cd8b56), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 38, ts: 32742382800462004581195711084988257, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:42:08.234974Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) +[CIPHER] [cn3] 2026-03-31T14:42:08.245924Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(216)` +[CIPHER] [cn5] 2026-03-31T14:42:09.235848Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:09.649722Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:42:15.449523Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:42:15.449673Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(167) in 9.124538833s +[CIPHER] [cn4] 2026-03-31T14:42:15.451411Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(47)` +[CIPHER] [cn4] 2026-03-31T14:42:15.449946Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35824d89b51f7ce7f80669141d6bfdf0f03dd2a301927c846b5872cab9ddbe9f), causation_id: EventId(0x4d400872dd81a0f9e2426632d7f7698488e3386f3a9ab996631bbb5a359dd412), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 39, ts: 32742382933630396661622345941262081, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:42:15.454005Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) +[CIPHER] [cn5] 2026-03-31T14:42:17.191131Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:42:17.191278Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(54) in 9.317490833s +[CIPHER] [cn5] 2026-03-31T14:42:17.192445Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(72)` +[CIPHER] [cn5] 2026-03-31T14:42:17.191537Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x754043c8c229328b5b557333ee4419e29d25c52b9aa14eb5d916328fc79e0214), causation_id: EventId(0x592acc3d1d7610d88552ea6656deb887b1459f55c8c473ced8fd530f5347e608), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 39, ts: 32742382965757375267603417031442501, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:42:17.195595Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) +[CIPHER] [cn4] 2026-03-31T14:42:17.236437Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:17.868450Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:17.868763Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(216) in 9.622843666s +[CIPHER] [cn3] 2026-03-31T14:42:17.868939Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(163)` +[CIPHER] [cn3] 2026-03-31T14:42:17.869130Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x72382ead121a6391c047fe4be1872b653942f56a49933170e9774c2240520a87), causation_id: EventId(0x1da239908abf8fd3be3b2a20249b1c1b33ff077ec8af136bb59a14b3de29f309), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 39, ts: 32742382978256022054977543885522785, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:42:17.871702Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) +[CIPHER] [cn5] 2026-03-31T14:42:18.639762Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:19.355404Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:42:24.507539Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:42:24.507740Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(47) in 9.056334042s +[CIPHER] [cn4] 2026-03-31T14:42:24.508039Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(170)` +[CIPHER] [cn4] 2026-03-31T14:42:24.508255Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x65ba2cc15aec98345263c2b0369c539983258e3865adf47d772d72a865ca200e), causation_id: EventId(0x528c3ee5a47735ff7a8ae10fb6c571dd18f68c3aca906612a9f78a0f756beff7), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 40, ts: 32742383100722258859880476728499969, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:42:24.510171Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) +[CIPHER] [cn5] 2026-03-31T14:42:26.359292Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:42:26.359440Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(72) in 9.167002125s +[CIPHER] [cn5] 2026-03-31T14:42:26.360715Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(165)` +[CIPHER] [cn5] 2026-03-31T14:42:26.359929Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd98060d408f6159990957a57b4baf5c589d696c1bcea166159ebbcf33169af17), causation_id: EventId(0xfaa2572c8fed99d96c24ad11ab4147c3470d80cbc58b6fa1f37c26fa9d964c1a), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 40, ts: 32742383134879744373031053003259973, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:42:26.361856Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) +[CIPHER] [cn4] 2026-03-31T14:42:26.502266Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:27.265372Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:27.265526Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(163) in 9.396593959s +[CIPHER] [cn3] 2026-03-31T14:42:27.265975Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(223)` +[CIPHER] [cn3] 2026-03-31T14:42:27.266011Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3cb729212cd245ef092d44c311959d3652fb00520b50de8f4dd7c1d02e0e298b), causation_id: EventId(0x9500870ec8aba2d3363360f51401116393d6074445b3d3043d536a110d871c53), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 40, ts: 32742383151594173157522613364557665, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:42:27.267888Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) +[CIPHER] [cn5] 2026-03-31T14:42:27.699427Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:28.823225Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:42:33.547900Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:42:33.548072Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(170) in 9.04003925s +[CIPHER] [cn4] 2026-03-31T14:42:33.548528Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(120)` +[CIPHER] [cn4] 2026-03-31T14:42:33.548581Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x74461f149b6677bd562abe467e7fa9f7c1710e91498f2208fdcc8f3645a3c543), causation_id: EventId(0xb76c8227c159cd9970f5e1e91ce50d4e27d43c2c743e1323de93a0f831b88a23), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 41, ts: 32742383267486912711759147489173249, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:42:33.550482Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) +[CIPHER] [cn4] 2026-03-31T14:42:35.384894Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base +[CIPHER] [cn5] 2026-03-31T14:42:35.391098Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:42:35.391173Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(165) in 9.030465417s +[CIPHER] [cn5] 2026-03-31T14:42:35.391279Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(139)` +[CIPHER] [cn5] 2026-03-31T14:42:35.391541Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb0e971ecffa0b5f24627c097b6730db4ab1fbc1277f0227781c757f120655084), causation_id: EventId(0x89609619eba554485a5854381b9078f2929c9df52be9e40bfd8443f92839f455), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 41, ts: 32742383301485774672619895329587269, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:42:35.393420Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) +[CIPHER] [cn3] 2026-03-31T14:42:36.969282Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:42:36.969427Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(223) in 9.703457042s +[CIPHER] [cn3] 2026-03-31T14:42:36.969848Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(5)` +[CIPHER] [cn3] 2026-03-31T14:42:36.969881Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x94bab21ca5c8f49686b9c985f1d98d8c2e2028825c8ae97fc9b394cea054054b), causation_id: EventId(0x3341c3f6dfbf194f36faee6a527f93a93ed5d1e6429a23f7a15da6b1beb87915), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 41, ts: 32742383330599459187416436452853601, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:42:36.971777Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) +[CIPHER] [cn5] 2026-03-31T14:42:37.108133Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base +[CIPHER] [cn4] 2026-03-31T14:42:37.121613Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn3] 2026-03-31T14:42:38.318934Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base +[CIPHER] [cn5] 2026-03-31T14:42:38.369575Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn3] 2026-03-31T14:42:39.341722Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn4] 2026-03-31T14:42:55.290862Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn5] 2026-03-31T14:42:57.731264Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn3] 2026-03-31T14:42:59.223505Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn4] 2026-03-31T14:43:03.552716Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn4] 2026-03-31T14:43:04.280008Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn5] 2026-03-31T14:43:05.395524Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn5] 2026-03-31T14:43:06.752523Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn3] 2026-03-31T14:43:06.973519Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn3] 2026-03-31T14:43:08.266997Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn4] 2026-03-31T14:43:11.116161Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:11.116947Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(120) in 37.568466292s +[CIPHER] [cn4] 2026-03-31T14:43:11.117513Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(89)` +[CIPHER] [cn4] 2026-03-31T14:43:11.117827Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1a765d2995fff0ef743f33d46a9930c0142d367a15cbafc7f33f70ac06379cf9), causation_id: EventId(0x32d58fd5d3b5a1c9c84865296896f7dd4dc7725e2693e2f499cda9f27247f07d), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 42, ts: 32742383960511534012308869577580289, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:11.119105Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) +[CIPHER] [cn4] 2026-03-31T14:43:12.919116Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base +[CIPHER] [cn5] 2026-03-31T14:43:14.091630Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:14.092427Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(139) in 38.70119775s +[CIPHER] [cn5] 2026-03-31T14:43:14.092924Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(126)` +[CIPHER] [cn5] 2026-03-31T14:43:14.092990Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x00021151fe22276007cd299adedda4efb8c6e9822d0095facfae093ee8cf3726), causation_id: EventId(0xf179d879e498ef6476028ed368eaded401f290b28b75d1bc419e8bbcbfd0ac20), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 42, ts: 32742384015398492838058333352165445, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:14.093988Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) +[CIPHER] [cn4] 2026-03-31T14:43:14.727274Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn3] 2026-03-31T14:43:15.599642Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:15.600425Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(5) in 38.630631667s +[CIPHER] [cn3] 2026-03-31T14:43:15.600899Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(8)` +[CIPHER] [cn3] 2026-03-31T14:43:15.600979Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd49668234d371f5d2545041e3d13341f0ed81d556a3131d202f81abfe190f862), causation_id: EventId(0x54123daca94e8e7c66f2e4f14236d438e45af93c6f23fad2486de783f8aa4458), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 42, ts: 32742384043215924646795304283375457, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:15.601979Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) +[CIPHER] [cn5] 2026-03-31T14:43:15.642255Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base +[CIPHER] [cn3] 2026-03-31T14:43:16.776155Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base +[CIPHER] [cn5] 2026-03-31T14:43:16.957550Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn3] 2026-03-31T14:43:17.828338Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn4] 2026-03-31T14:43:31.866616Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn5] 2026-03-31T14:43:35.521784Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn3] 2026-03-31T14:43:37.088778Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn4] 2026-03-31T14:43:41.062970Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn4] 2026-03-31T14:43:41.121853Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn5] 2026-03-31T14:43:44.096091Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn5] 2026-03-31T14:43:44.688116Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn3] 2026-03-31T14:43:45.603886Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn3] 2026-03-31T14:43:46.488923Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn4] 2026-03-31T14:43:48.291546Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.292052Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(89) in 37.174587541s +[CIPHER] [cn4] 2026-03-31T14:43:48.292524Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0884df8c57185b43813912783c5d3ea4d1ae9dda300f167f55e6852a78612176), causation_id: EventId(0x44a755ae89f89cfce475ca7592d80b96bba4aebda6f9d591a160604d454e01ef), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 43, ts: 32742384646269909035248104446238465, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.293510Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) +[CIPHER] [cn4] 2026-03-31T14:43:48.293515Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.295019Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 2 (signer: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65) +[CIPHER] [cn4] 2026-03-31T14:43:48.295193Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties +[CIPHER] [cn4] 2026-03-31T14:43:48.297949Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x2d9b6c92b8028ce9394b61f10df3194b6bb792fab6e76d46bc843590b210ba30), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 44, ts: 32742384646323957995384073432473345, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.298481Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x518da5b44f5859df437b29c9d912dac0ade0b48fed02d04d69781ab1f7186e5c), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 45, ts: 32742384646324068675848515689783041, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.298999Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x049cd03532d310f6cc2196290df160b48cb2987d5337b7b6497eddcbcff19ac5), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 46, ts: 32742384646324160909568884237541121, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.299517Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xf73c49243cf64432c01f035b2cd471928705b62a78fff9936fc43594684cafc2), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 47, ts: 32742384646324234696545179075747585, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.300996Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa6174a1d238507de5eb255b64cec92b8cef88df5510bb7a7ea6624b4543e1cf1), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 48, ts: 32742384646324474504218137299918593, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.302479Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xcf7b180622719a2e71e7a0cf2fe07710137bf8c07c5ac97de3f79fc369012457), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 49, ts: 32742384646324714311891095524089601, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.303953Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x141544ee97c1d40de89f5b193bbd48a0a57d75b58fb292718094dce42fb45dd5), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 50, ts: 32742384646324954119564053748260609, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.305430Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe58617c5ce9dacb963ab4ddbc989f481024c1c5d14940584e38936adac1f0740), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 51, ts: 32742384646325175480492938262880001, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.306911Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x3762e4cd97339c0f4bcf380840aa67e51b7cc389ecb5ba5349670343f323db81), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 52, ts: 32742384646325415288165896487051009, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.308407Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x716175480b68d3da5d9d2c21b6c1576124769dae1e2c6bac339aa752a8017f86), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 53, ts: 32742384646325655095838854711222017, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.309921Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x01f0c08c6ccbe89fbb4a8a2d9e35406aaa1bbe63abcc3d42314478bf085046cf), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 54, ts: 32742384646325876456767739225841409, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.311355Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4bd3545dc1c995cf3a85ff730854a65e689ed0c45fc691372cf435454fdfae81), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 55, ts: 32742384646326116264440697450012417, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.312872Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x92cf43c6a0da39bcd9e549cdbd74146020e077625ad4a79435f5e81890a14707), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 56, ts: 32742384646326356072113655674183425, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.314294Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9232dca4f013029ed071f70a6d93e26462bcd726b2c3d14d9ccc4b3dafcaf6c0), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 57, ts: 32742384646326595879786613898354433, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.315723Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xba45e2bb5e6fbdf61d9688bde10c8d8fb5dd8ee8d751ffd63469e273964e10e4), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 58, ts: 32742384646326817240715498412973825, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.317151Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xfab5898de9146576c5d6f58c4b2abe2e3550772ae7c448aa797d003efb761772), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 59, ts: 32742384646327241515829193732660993, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.325085Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xac7077c431972772206e66d52980d209b6bdad770e9c9a099a42a087caef51a1), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 60, ts: 32742384646328643468378795658583809, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.337497Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x4b9776bda9221c4a6a77ba0f784dfd0a7931eb076b6307f564c27c183ad5de18), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 61, ts: 32742384646329916293719881617645313, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.363433Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 0 (E3 31337:0) +[CIPHER] [cn4] 2026-03-31T14:43:48.373092Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn4] 2026-03-31T14:43:48.373178Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 1 (E3 31337:0) +[CIPHER] [cn4] 2026-03-31T14:43:48.373351Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn4] 2026-03-31T14:43:48.373421Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 2 (E3 31337:0) +[CIPHER] [cn4] 2026-03-31T14:43:48.373583Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn4] 2026-03-31T14:43:48.373752Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.373773Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.373800Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.373711Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.373859Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.373967Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.374215Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.374463Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.376079Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.391084Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.391447Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.374080Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.392262Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes +[CIPHER] [cn4] 2026-03-31T14:43:48.392264Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn4] 2026-03-31T14:43:48.392299Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn4] 2026-03-31T14:43:48.392301Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 +[CIPHER] [cn4] 2026-03-31T14:43:48.390758Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.391852Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.392260Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 2), forwarding to collector! +[CIPHER] [cn4] 2026-03-31T14:43:48.392302Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 +[CIPHER] [cn4] 2026-03-31T14:43:48.392311Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 11.792µs +[CIPHER] [cn4] 2026-03-31T14:43:48.375208Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:48.401206Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-30T14:43:48.373088Z }, value: }), ctx: EventContext { id: EventId(0xc434db8ce08284b6fc5069c458bcb2586bba1e77d851541eec407ca82cbeb923), causation_id: EventId(0xfab5898de9146576c5d6f58c4b2abe2e3550772ae7c448aa797d003efb761772), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 48, ts: 32742384647764224432427094093995777, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.408779Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-30T14:43:48.373350Z }, value: }), ctx: EventContext { id: EventId(0x8f03d29f7db64ce0d23c61b367f756c84eb863bc8817a715d65e0a5a6a5568d4), causation_id: EventId(0xac7077c431972772206e66d52980d209b6bdad770e9c9a099a42a087caef51a1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 49, ts: 32742384647768891458677742610554625, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:48.418758Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-30T14:43:48.373583Z }, value: }), ctx: EventContext { id: EventId(0x145b27786b162b494174a6d55ef241a1e77def4811e39b0f1b29771104f5462a), causation_id: EventId(0x4b9776bda9221c4a6a77ba0f784dfd0a7931eb076b6307f564c27c183ad5de18), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 50, ts: 32742384647773152656558769516977921, aggregate_id: AggregateId(0), block: Some(111), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:48.602163Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-30T14:43:48Z }, value: }), ctx: EventContext { id: EventId(0x64f562930bd2ad9bf857a697af61796f645d57dadaafc11cb386237c6ab88324), causation_id: EventId(0x64f562930bd2ad9bf857a697af61796f645d57dadaafc11cb386237c6ab88324), origin_id: EventId(0x64f562930bd2ad9bf857a697af61796f645d57dadaafc11cb386237c6ab88324), seq: 48, ts: 32742384651975819018639795561889861, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:43:48.602163Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-30T14:43:48Z }, value: }), ctx: EventContext { id: EventId(0x92bf89b27fb097d231634fd6cee48527a04c70ffe6ef7492a44e10c9b82a6275), causation_id: EventId(0x92bf89b27fb097d231634fd6cee48527a04c70ffe6ef7492a44e10c9b82a6275), origin_id: EventId(0x92bf89b27fb097d231634fd6cee48527a04c70ffe6ef7492a44e10c9b82a6275), seq: 48, ts: 32742384651974730660739445726349153, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:43:48.610280Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x15280ab1966c25dea69bf2ff9e536e1f88a7460d19dfa77cb43e9ca5d042a3a4), causation_id: EventId(0x92bf89b27fb097d231634fd6cee48527a04c70ffe6ef7492a44e10c9b82a6275), origin_id: EventId(0x92bf89b27fb097d231634fd6cee48527a04c70ffe6ef7492a44e10c9b82a6275), seq: 43, ts: 32742384652132062940944114492082017, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:48.610220Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xd626cfaaa5c49231ab2e668e1e3ef12c9b1a8724557468d3bac5c9b4a17bfc43), causation_id: EventId(0x64f562930bd2ad9bf857a697af61796f645d57dadaafc11cb386237c6ab88324), origin_id: EventId(0x64f562930bd2ad9bf857a697af61796f645d57dadaafc11cb386237c6ab88324), seq: 43, ts: 32742384652130384287233407894880325, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:48.617082Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 1), forwarding to collector! +[CIPHER] [cn3] 2026-03-31T14:43:48.617086Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-03-31T14:43:48.617088Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn3] 2026-03-31T14:43:48.617097Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn3] 2026-03-31T14:43:48.617099Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 +[CIPHER] [cn3] 2026-03-31T14:43:48.617101Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 +[CIPHER] [cn5] 2026-03-31T14:43:48.617100Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 0), forwarding to collector! +[CIPHER] [cn5] 2026-03-31T14:43:48.617102Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes +[CIPHER] [cn5] 2026-03-31T14:43:48.617104Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn5] 2026-03-31T14:43:48.617108Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn3] 2026-03-31T14:43:48.617106Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 9.042µs +[CIPHER] [cn5] 2026-03-31T14:43:48.617109Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 +[CIPHER] [cn5] 2026-03-31T14:43:48.617110Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 +[CIPHER] [cn5] 2026-03-31T14:43:48.617116Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 8.833µs +[CIPHER] [cn5] 2026-03-31T14:43:51.126042Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.126577Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(126) in 37.033704833s +[CIPHER] [cn5] 2026-03-31T14:43:51.126801Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb5a14c6ec40edff0afa638321e88a1ff4ea29e115281c77dfc5ef74edfdf84f1), causation_id: EventId(0xbd090be183df3179d14a7e81571090dd9efb28e11a21972b1edacfabbd149b59), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 44, ts: 32742384698557666280779671269474373, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.128918Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) +[CIPHER] [cn5] 2026-03-31T14:43:51.128926Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.130420Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 0 (signer: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc) +[CIPHER] [cn5] 2026-03-31T14:43:51.130594Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties +[CIPHER] [cn5] 2026-03-31T14:43:51.137454Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x1baeb41d6e79937a65b1fd20a52ea257595b02cd3934ffd8cf8e4c6b64bdda92), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 45, ts: 32742384698627874588724209822924869, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.137995Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x18e972bfd519d673f91a346af0b3d1238adfa76fc9a7afd8b7113d6af6a1b0d5), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 46, ts: 32742384698628003715932725789786181, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.138500Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x53aa2c334b4a8b421978f25f1e48acf12811cf35270ec4fcdb510473e0362600), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 47, ts: 32742384698628095949653094337544261, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.139003Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6261b54e52d6978ae780fa257a0f0908f44e9c62f5165dcd641ee6941d93305e), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 48, ts: 32742384698628188183373462885302341, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.140454Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x24f82830e45a4f39fae70a7008d2e022fa4a526cb15231af41c81374ee353f89), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 49, ts: 32742384698628409544302347399921733, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.141890Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x1290e64f309e913558081f5ed9fb485ced7735111735893ce35642f2e7f3bc6d), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 50, ts: 32742384698628649351975305624092741, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.143346Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x403f12e0955f8c0ae58efcabf8f6d3f8fdc6bc4c0524b4842ac54fc9ce799fd0), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 51, ts: 32742384698628889159648263848263749, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.144807Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xaa11a606155e72ef659e089effe81f8c32327d948bb9993c9bfc475ad6f45e8c), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 52, ts: 32742384698629128967321222072434757, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.146264Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x37078e5a32ef7ef05074ef39ad7d557b84ce59bbe9599c9d2630e341f4fadf8a), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 53, ts: 32742384698629350328250106587054149, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.147721Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x5bf0edec172b2960c081a586000638e0e936de3fddc650beeb7baf3e71be9a84), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 54, ts: 32742384698629590135923064811225157, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.149178Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x94b94ac77228ec4ae3e6ca735a5d04b0143eddc80261594e08bd47ece76931c7), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 55, ts: 32742384698629829943596023035396165, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.150637Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x7446804dd008ed60ed6acbaa53d18e778d82f333d0da32dd3d947f114792a418), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 56, ts: 32742384698630069751268981259567173, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.152094Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x34168c15a70eb910151e52621a30a98fb55af14a64af1557b3e6dd10af86a8e8), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 57, ts: 32742384698630291112197865774186565, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.153962Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x5dc7036c1f715c128c6b2cdf83d3d86f05a885ce0a5994786f5bcfe1a30493b5), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 58, ts: 32742384698630530919870823998357573, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.155438Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x03fab8244b8d534323d22d7bfb086979c473f8435757cafb6481840f23765e2a), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 59, ts: 32742384698630770727543782222528581, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.157595Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x109465d9c269e444fefe8784ad60799ba3616a045432d23ab0042d051eee2cb0), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 60, ts: 32742384698631121215681182704009285, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.171241Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xe065bbf5fee1d75245f4450634636e3992e9da2a0644887f6c4026513bb5f92f), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 61, ts: 32742384698632504721486710920380485, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.182248Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xd5650c5f6996223ed7f1582a70a66539cf863321b746a58f42b199233d5a6cdd), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 62, ts: 32742384698633759100083723169890373, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.189900Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 0 (E3 31337:0) +[CIPHER] [cn5] 2026-03-31T14:43:51.190024Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn5] 2026-03-31T14:43:51.190095Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 1 (E3 31337:0) +[CIPHER] [cn5] 2026-03-31T14:43:51.190222Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn5] 2026-03-31T14:43:51.190290Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 2 (E3 31337:0) +[CIPHER] [cn5] 2026-03-31T14:43:51.190409Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn5] 2026-03-31T14:43:51.190507Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.190526Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.190547Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.190575Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.190624Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.190696Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.190797Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.190936Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.191113Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.191317Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.191562Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.191814Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.192083Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.192395Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.192741Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:51.193103Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 0), forwarding to collector! +[CIPHER] [cn5] 2026-03-31T14:43:51.193106Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes +[CIPHER] [cn5] 2026-03-31T14:43:51.193108Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn5] 2026-03-31T14:43:51.193130Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 +[CIPHER] [cn5] 2026-03-31T14:43:51.193131Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 +[CIPHER] [cn5] 2026-03-31T14:43:51.193133Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 4.416µs +[CIPHER] [cn5] 2026-03-31T14:43:51.193129Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn5] 2026-03-31T14:43:51.199765Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-30T14:43:51.190023Z }, value: }), ctx: EventContext { id: EventId(0x2fcd8053f41fa12a4f5e293087748d8db4a71762831017f6cd259fce83f5a63b), causation_id: EventId(0x109465d9c269e444fefe8784ad60799ba3616a045432d23ab0042d051eee2cb0), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 49, ts: 32742384699727337429005446518341701, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.207473Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-30T14:43:51.190222Z }, value: }), ctx: EventContext { id: EventId(0x4022b0295fb5a0370f49031905af47c130df38f7d490e1be46d37e420765b2e7), causation_id: EventId(0xe065bbf5fee1d75245f4450634636e3992e9da2a0644887f6c4026513bb5f92f), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 50, ts: 32742384699730989884332041009561669, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:51.214674Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-30T14:43:51.190409Z }, value: }), ctx: EventContext { id: EventId(0xd088d58b1808fe0b01371ac6302db17aaed211245e8b4af1710de7d3366ca5fb), causation_id: EventId(0xd5650c5f6996223ed7f1582a70a66539cf863321b746a58f42b199233d5a6cdd), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 51, ts: 32742384699734457872217898405265477, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:51.285362Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-30T14:43:51Z }, value: }), ctx: EventContext { id: EventId(0x651e82f59690005572610fd75050ba3787f0eed04b7df5366a9581aeee98e96a), causation_id: EventId(0x651e82f59690005572610fd75050ba3787f0eed04b7df5366a9581aeee98e96a), origin_id: EventId(0x651e82f59690005572610fd75050ba3787f0eed04b7df5366a9581aeee98e96a), seq: 51, ts: 32742384701474354773250183284793089, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:43:51.287807Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-30T14:43:51Z }, value: }), ctx: EventContext { id: EventId(0x10182355f637e281e63562dca093df6e528dfa77d35adca7cc865f75c8a4e968), causation_id: EventId(0x10182355f637e281e63562dca093df6e528dfa77d35adca7cc865f75c8a4e968), origin_id: EventId(0x10182355f637e281e63562dca093df6e528dfa77d35adca7cc865f75c8a4e968), seq: 49, ts: 32742384701520047358320760901044065, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:43:51.294661Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x517daed47d58e304049a871b2adf6ea10e8cdbb6eaae39af600cb7b2013fa1e9), causation_id: EventId(0x651e82f59690005572610fd75050ba3787f0eed04b7df5366a9581aeee98e96a), origin_id: EventId(0x651e82f59690005572610fd75050ba3787f0eed04b7df5366a9581aeee98e96a), seq: 62, ts: 32742384701652015365424079976406785, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:51.301522Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 2), forwarding to collector! +[CIPHER] [cn4] 2026-03-31T14:43:51.301527Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes +[CIPHER] [cn4] 2026-03-31T14:43:51.301529Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn4] 2026-03-31T14:43:51.301548Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn4] 2026-03-31T14:43:51.301552Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 +[CIPHER] [cn4] 2026-03-31T14:43:51.301555Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 7.375µs +[CIPHER] [cn4] 2026-03-31T14:43:51.301554Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 +[CIPHER] [cn3] 2026-03-31T14:43:51.299996Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x7d36a7a4832b6f7f48692cd798d2514fe5337ac8cf3e7ce29025472ddbd9d694), causation_id: EventId(0x10182355f637e281e63562dca093df6e528dfa77d35adca7cc865f75c8a4e968), origin_id: EventId(0x10182355f637e281e63562dca093df6e528dfa77d35adca7cc865f75c8a4e968), seq: 44, ts: 32742384701750963700635457068173153, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:51.306838Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 1), forwarding to collector! +[CIPHER] [cn3] 2026-03-31T14:43:51.306843Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-03-31T14:43:51.306850Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn3] 2026-03-31T14:43:51.306852Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 +[CIPHER] [cn3] 2026-03-31T14:43:51.306854Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 +[CIPHER] [cn3] 2026-03-31T14:43:51.306855Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 4.834µs +[CIPHER] [cn3] 2026-03-31T14:43:51.306845Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn3] 2026-03-31T14:43:52.224977Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.225309Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(8) in 36.62445975s +[CIPHER] [cn3] 2026-03-31T14:43:52.225454Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdc038c4e7575a57afad16eb0171871e8411c57648d5aa31dd1e3ca8f25bb05d1), causation_id: EventId(0xa2c0ca869eca035ca6bc8fea61655f7bcf1081aaeda9a7e3dac9ae9f08a5df3b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 45, ts: 32742384718825417589213607720355681, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.226426Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) +[CIPHER] [cn3] 2026-03-31T14:43:52.226430Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.227913Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 1 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) +[CIPHER] [cn3] 2026-03-31T14:43:52.228097Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties +[CIPHER] [cn3] 2026-03-31T14:43:52.235605Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x17a468e817183f0f682aa4c9fc71f9d964d0d4bd9a450501a8e6743b31ec4382), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 46, ts: 32742384718873028635667852073076577, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.236122Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4073ea289169f01469fd185cf8ac1597e6b748387ad7407dab8be08109def363), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 47, ts: 32742384718873157762876368039937889, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.236642Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xbbca92331b2b5755079206aece2454587eb545d6ca0bc2699d0526bf2e8634ad), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 48, ts: 32742384718873268443340810297247585, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.237175Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x96e9fd08a9ae0c1b98972385f055d13ebf15ec5adf51950ba302616a471a01e4), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 49, ts: 32742384718873360677061178845005665, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.238637Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4bf2c7df7e753cb589f911719d4d9f77e8b2dd633c32d137e9ac8ba66054b699), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 50, ts: 32742384718873655824966358197831521, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.240077Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xef1b3e398b818ccd3bc0343947ea83881f4ed59ef115a9dc4f0622fec61cc68c), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 51, ts: 32742384718873950972871537550657377, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.241558Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x674032aca41b64fe8791123569333c92a7edfb53ee68d7b119b4ff4e17a526e5), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 52, ts: 32742384718874227674032643193931617, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.243074Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe235112903541ded8a4f817213b59ce48e78f2316a2cd7cbc5de3f5bfccf80f1), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 53, ts: 32742384718874522821937822546757473, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.244562Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb457813bb141a7d5540ee25691d0fc9781be31dac3ae016e4d67ae3125f21c35), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 54, ts: 32742384718874817969843001899583329, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.245987Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xc31906564fede8e77fc599131c750459515efb2742ab158fe04221a41d1c77f4), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 55, ts: 32742384718875039330771886414202721, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.247407Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x2b26c87b0d0adf09bd444ab9a2bce40852e603f1d8f3bf3d1dacd7dd5504a1ef), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 56, ts: 32742384718875260691700770928822113, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.248857Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe29e860ca141aaf90b69ccf7f4166a1347c1dff96dc6657aeffe77708c5ac372), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 57, ts: 32742384718875482052629655443441505, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.250318Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x80236a36ae054371d99b60cdd668785d7af4bbfe46fd59628432e1e104673f48), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 58, ts: 32742384718875703413558539958060897, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.251783Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xde34bd1f8ea51256087290834308865869b1c7c01b398eb86c2941717e12c94a), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 59, ts: 32742384718875924774487424472680289, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.253313Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x92a90e845087fd1a49f220f6d46fbec89313591d71eb431af4684d92b20cd5d9), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 60, ts: 32742384718876146135416308987299681, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.254797Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x0845572efbb2e5eed1c8a3636830def4cab11279db4d7eaa30b5fe16ce46ecd0), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 61, ts: 32742384718876422836577414630573921, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.261725Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x1e6c318fdc4e0ff68554a5a4463364d7a5ea82a278ddce45e7bb45828024f7f8), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 62, ts: 32742384718877898576103311394703201, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.268578Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x86cfb5e4da62c8399b9c46db7b0a43b565ce63cf6318c538a4cf08d1cfada1ad), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 63, ts: 32742384718879171401444397353764705, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.275528Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 0 (E3 31337:0) +[CIPHER] [cn3] 2026-03-31T14:43:52.275660Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn3] 2026-03-31T14:43:52.275745Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 1 (E3 31337:0) +[CIPHER] [cn3] 2026-03-31T14:43:52.275878Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn3] 2026-03-31T14:43:52.275952Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 2 (E3 31337:0) +[CIPHER] [cn3] 2026-03-31T14:43:52.276083Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn3] 2026-03-31T14:43:52.276184Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.276206Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.276230Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.276263Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.276319Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.276408Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.276516Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.276651Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.276835Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.277031Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.277261Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.277528Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.277823Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.278243Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.278595Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.278974Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 1), forwarding to collector! +[CIPHER] [cn3] 2026-03-31T14:43:52.278977Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-03-31T14:43:52.278979Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn3] 2026-03-31T14:43:52.279004Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn3] 2026-03-31T14:43:52.279008Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 +[CIPHER] [cn3] 2026-03-31T14:43:52.279013Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares +[CIPHER] [cn3] 2026-03-31T14:43:52.279022Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 18.666µs +[CIPHER] [cn3] 2026-03-31T14:43:52.279006Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 +[CIPHER] [cn3] 2026-03-31T14:43:52.279056Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected +[CIPHER] [cn3] 2026-03-31T14:43:52.279082Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn3] 2026-03-31T14:43:52.287320Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-30T14:43:52.275659Z }, value: }), ctx: EventContext { id: EventId(0x90eb74697753d66ec1826b82dbc59b0b493868399fc11803cafa60b808736d54), causation_id: EventId(0x0845572efbb2e5eed1c8a3636830def4cab11279db4d7eaa30b5fe16ce46ecd0), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 50, ts: 32742384719753786878211188324534113, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.294820Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-30T14:43:52.275878Z }, value: }), ctx: EventContext { id: EventId(0x2be391446cf5b79650e7ad6ed5d933a14b988996b7bed728a8509aba454cebc6), causation_id: EventId(0x1e6c318fdc4e0ff68554a5a4463364d7a5ea82a278ddce45e7bb45828024f7f8), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 51, ts: 32742384719757808268419257006786401, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.307610Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-30T14:43:52.276083Z }, value: }), ctx: EventContext { id: EventId(0x6a188fdfea23bb1fe47dc40c41539f6c1778bf4d7f58a2d1e48b9ec54b9737b3), causation_id: EventId(0x86cfb5e4da62c8399b9c46db7b0a43b565ce63cf6318c538a4cf08d1cfada1ad), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 52, ts: 32742384719761571404210293755316065, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.341617Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), causation_id: EventId(0x1e6c318fdc4e0ff68554a5a4463364d7a5ea82a278ddce45e7bb45828024f7f8), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 64, ts: 32742384719816911636431422410164065, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.354786Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs +[CIPHER] [cn3] 2026-03-31T14:43:52.358305Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 106, party_proofs: [PartyProofData { party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C2aSkShareComputation, , [218, 162, 211, 236, 84, 197, 120, 126, 77, 193, 148, 75, 216, 100, 231, 110, 68, 42, 235, 155, 88, 182, 123, 159, 97, 111, 211, 123, 255, 94, 202, 53]), (C2bESmShareComputation, , [216, 252, 13, 222, 180, 0, 135, 149, 95, 254, 121, 203, 86, 35, 41, 6, 31, 0, 15, 236, 111, 208, 2, 101, 173, 165, 169, 18, 110, 166, 202, 142]), (C3aSkShareEncryption, , [20, 144, 98, 130, 238, 229, 147, 51, 204, 236, 250, 107, 93, 169, 196, 120, 231, 133, 43, 88, 196, 226, 152, 154, 92, 193, 234, 144, 239, 100, 83, 197]), (C3aSkShareEncryption, , [203, 10, 128, 103, 255, 17, 206, 203, 197, 200, 86, 145, 72, 146, 96, 240, 135, 45, 27, 213, 177, 193, 98, 57, 181, 192, 122, 20, 160, 185, 28, 192]), (C3bESmShareEncryption, , [153, 104, 227, 76, 163, 91, 236, 155, 174, 210, 156, 114, 200, 214, 255, 235, 50, 163, 246, 192, 132, 124, 57, 213, 195, 40, 124, 226, 182, 63, 107, 46]), (C3bESmShareEncryption, , [62, 13, 233, 164, 191, 202, 124, 39, 79, 205, 194, 66, 68, 40, 2, 182, 241, 95, 62, 227, 154, 52, 179, 210, 103, 151, 213, 43, 245, 231, 39, 1])] }, PartyProofData { party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C2aSkShareComputation, , [169, 7, 45, 84, 203, 3, 62, 98, 144, 48, 245, 220, 212, 60, 229, 199, 235, 69, 210, 128, 67, 14, 111, 158, 70, 187, 96, 75, 155, 250, 180, 226]), (C2bESmShareComputation, , [218, 174, 66, 113, 111, 102, 34, 152, 141, 101, 158, 164, 12, 138, 101, 8, 16, 230, 23, 43, 81, 73, 110, 153, 1, 141, 147, 41, 215, 246, 95, 195]), (C3aSkShareEncryption, , [248, 189, 65, 240, 30, 110, 64, 143, 17, 16, 161, 120, 98, 4, 144, 149, 98, 84, 156, 199, 18, 152, 249, 125, 221, 52, 220, 36, 207, 238, 22, 86]), (C3aSkShareEncryption, , [135, 98, 79, 156, 241, 157, 252, 113, 175, 144, 50, 156, 204, 23, 94, 28, 253, 3, 61, 124, 92, 111, 32, 158, 3, 255, 103, 144, 132, 128, 29, 120]), (C3bESmShareEncryption, , [61, 150, 6, 58, 65, 61, 87, 49, 53, 135, 41, 137, 233, 159, 224, 62, 113, 156, 89, 16, 64, 150, 142, 98, 77, 182, 17, 15, 198, 216, 124, 106]), (C3bESmShareEncryption, , [25, 172, 94, 194, 147, 115, 188, 254, 190, 50, 225, 8, 44, 68, 161, 102, 106, 31, 155, 135, 219, 223, 188, 2, 145, 178, 131, 105, 216, 111, 13, 90])] }] }), ctx: EventContext { id: EventId(0x192f7d2e06fe17c103e72735fbacc9b765fa84df4de44b0f9eab2815e416880e), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 65, ts: 32742384721270367495487145401091937, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.368812Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 106, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x15e8f287acd7aaa4332bbb781d4297a70bdf8be8bb873df01cdb76967623a2b1), causation_id: EventId(0x192f7d2e06fe17c103e72735fbacc9b765fa84df4de44b0f9eab2815e416880e), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 66, ts: 32742384721470570008919115164780385, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.372135Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 107, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4325377300d25bc3e624a7ffe30ffb763e21759083c104518e507052e917afb5), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 53, ts: 32742384721472931192160549987387233, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.386122Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(241)` +[CIPHER] [cn5] 2026-03-31T14:43:52.415818Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-30T14:43:52Z }, value: }), ctx: EventContext { id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), causation_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 52, ts: 32742384722333914525056870571507781, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:43:52.418534Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-30T14:43:52Z }, value: }), ctx: EventContext { id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), causation_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 52, ts: 32742384722384458603818834714042113, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:43:52.427098Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x853cfbfdc8755709a93d211bd165af0dea6920107eb3240fcf2805da68f62e0e), causation_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 63, ts: 32742384722541753990535356089565253, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.434108Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 0), forwarding to collector! +[CIPHER] [cn5] 2026-03-31T14:43:52.434118Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes +[CIPHER] [cn5] 2026-03-31T14:43:52.434121Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn5] 2026-03-31T14:43:52.434141Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 +[CIPHER] [cn5] 2026-03-31T14:43:52.434144Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 +[CIPHER] [cn5] 2026-03-31T14:43:52.434156Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 17.583µs +[CIPHER] [cn5] 2026-03-31T14:43:52.434186Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn5] 2026-03-31T14:43:52.434169Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected +[CIPHER] [cn5] 2026-03-31T14:43:52.434147Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares +[CIPHER] [cn5] 2026-03-31T14:43:52.434139Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn4] 2026-03-31T14:43:52.427650Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x42e6749ddc6f0400da2ac18de0769e2a87d5236a89bb92ac7d73daf3f8dbf6de), causation_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 63, ts: 32742384722551973486752191152267009, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.434854Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 2), forwarding to collector! +[CIPHER] [cn4] 2026-03-31T14:43:52.434866Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn4] 2026-03-31T14:43:52.434867Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 +[CIPHER] [cn4] 2026-03-31T14:43:52.434874Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 7.791µs +[CIPHER] [cn4] 2026-03-31T14:43:52.434878Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected +[CIPHER] [cn4] 2026-03-31T14:43:52.434885Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn4] 2026-03-31T14:43:52.434859Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes +[CIPHER] [cn4] 2026-03-31T14:43:52.434861Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn4] 2026-03-31T14:43:52.434868Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 +[CIPHER] [cn4] 2026-03-31T14:43:52.434870Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares +[CIPHER] [cn4] 2026-03-31T14:43:52.437001Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), causation_id: EventId(0x42e6749ddc6f0400da2ac18de0769e2a87d5236a89bb92ac7d73daf3f8dbf6de), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 64, ts: 32742384722690951256603518914141953, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.453017Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs +[CIPHER] [cn5] 2026-03-31T14:43:52.436895Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), causation_id: EventId(0x853cfbfdc8755709a93d211bd165af0dea6920107eb3240fcf2805da68f62e0e), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 64, ts: 32742384722678093875984143385559109, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.453559Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs +[CIPHER] [cn5] 2026-03-31T14:43:52.457663Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, party_proofs: [PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C2aSkShareComputation, , [137, 183, 168, 232, 5, 103, 160, 142, 51, 23, 172, 176, 46, 191, 77, 41, 54, 81, 137, 175, 130, 130, 142, 109, 203, 154, 138, 173, 135, 65, 61, 249]), (C2bESmShareComputation, , [217, 210, 171, 137, 154, 180, 94, 218, 159, 205, 109, 235, 60, 18, 207, 140, 209, 231, 50, 56, 213, 41, 254, 174, 91, 211, 205, 47, 153, 200, 36, 17]), (C3aSkShareEncryption, , [109, 28, 143, 38, 37, 253, 43, 98, 136, 179, 27, 149, 56, 26, 38, 10, 57, 92, 14, 200, 181, 158, 225, 41, 169, 39, 157, 102, 152, 169, 70, 139]), (C3aSkShareEncryption, , [43, 107, 112, 112, 148, 245, 1, 235, 69, 167, 70, 142, 126, 4, 89, 219, 119, 94, 134, 29, 221, 98, 82, 224, 61, 113, 175, 119, 156, 203, 58, 213]), (C3bESmShareEncryption, , [211, 112, 114, 208, 128, 22, 223, 104, 165, 49, 25, 211, 189, 138, 24, 48, 149, 247, 7, 151, 239, 80, 179, 146, 221, 178, 164, 125, 177, 179, 202, 244]), (C3bESmShareEncryption, , [69, 31, 207, 187, 229, 79, 144, 137, 182, 75, 145, 61, 0, 175, 189, 116, 158, 225, 198, 182, 153, 135, 7, 227, 87, 195, 27, 110, 215, 243, 155, 248])] }, PartyProofData { party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C2aSkShareComputation, , [169, 7, 45, 84, 203, 3, 62, 98, 144, 48, 245, 220, 212, 60, 229, 199, 235, 69, 210, 128, 67, 14, 111, 158, 70, 187, 96, 75, 155, 250, 180, 226]), (C2bESmShareComputation, , [218, 174, 66, 113, 111, 102, 34, 152, 141, 101, 158, 164, 12, 138, 101, 8, 16, 230, 23, 43, 81, 73, 110, 153, 1, 141, 147, 41, 215, 246, 95, 195]), (C3aSkShareEncryption, , [230, 52, 183, 38, 39, 231, 22, 116, 38, 203, 171, 193, 42, 161, 44, 60, 178, 26, 160, 142, 100, 237, 117, 108, 144, 77, 202, 168, 186, 208, 94, 221]), (C3aSkShareEncryption, , [90, 247, 6, 12, 206, 144, 114, 132, 137, 38, 213, 14, 129, 5, 44, 138, 198, 55, 0, 75, 106, 26, 93, 96, 190, 39, 49, 44, 194, 214, 243, 72]), (C3bESmShareEncryption, , [20, 59, 252, 156, 21, 167, 180, 196, 181, 146, 190, 5, 59, 179, 239, 163, 88, 106, 2, 232, 73, 117, 119, 167, 225, 179, 224, 173, 6, 209, 174, 249]), (C3bESmShareEncryption, , [82, 242, 17, 221, 155, 251, 130, 43, 214, 59, 153, 237, 53, 85, 152, 183, 91, 36, 126, 128, 16, 57, 207, 183, 254, 17, 171, 202, 226, 74, 58, 1])] }] }), ctx: EventContext { id: EventId(0xc93fc04bc4eab684b50e0042f2eec6d8809c4295afd9557bafc1ee9e260c707d), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 65, ts: 32742384723092297067415217657544773, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.457598Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, party_proofs: [PartyProofData { party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C2aSkShareComputation, , [218, 162, 211, 236, 84, 197, 120, 126, 77, 193, 148, 75, 216, 100, 231, 110, 68, 42, 235, 155, 88, 182, 123, 159, 97, 111, 211, 123, 255, 94, 202, 53]), (C2bESmShareComputation, , [216, 252, 13, 222, 180, 0, 135, 149, 95, 254, 121, 203, 86, 35, 41, 6, 31, 0, 15, 236, 111, 208, 2, 101, 173, 165, 169, 18, 110, 166, 202, 142]), (C3aSkShareEncryption, , [166, 137, 202, 33, 191, 218, 177, 54, 73, 195, 194, 5, 2, 170, 180, 199, 137, 198, 86, 201, 151, 92, 78, 88, 52, 9, 232, 66, 136, 198, 207, 76]), (C3aSkShareEncryption, , [186, 93, 93, 224, 50, 203, 172, 154, 187, 232, 21, 243, 53, 107, 164, 135, 83, 43, 114, 188, 11, 107, 200, 255, 39, 211, 27, 249, 37, 54, 144, 131]), (C3bESmShareEncryption, , [153, 126, 95, 217, 222, 98, 8, 173, 105, 65, 100, 217, 176, 127, 246, 168, 252, 147, 167, 174, 248, 38, 7, 143, 38, 64, 117, 84, 1, 62, 137, 246]), (C3bESmShareEncryption, , [242, 73, 12, 120, 216, 124, 202, 250, 76, 51, 62, 130, 144, 120, 166, 177, 134, 167, 50, 90, 204, 192, 24, 253, 50, 86, 184, 56, 168, 252, 89, 10])] }, PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C2aSkShareComputation, , [137, 183, 168, 232, 5, 103, 160, 142, 51, 23, 172, 176, 46, 191, 77, 41, 54, 81, 137, 175, 130, 130, 142, 109, 203, 154, 138, 173, 135, 65, 61, 249]), (C2bESmShareComputation, , [217, 210, 171, 137, 154, 180, 94, 218, 159, 205, 109, 235, 60, 18, 207, 140, 209, 231, 50, 56, 213, 41, 254, 174, 91, 211, 205, 47, 153, 200, 36, 17]), (C3aSkShareEncryption, , [149, 96, 131, 165, 165, 219, 140, 45, 17, 67, 130, 19, 57, 223, 94, 212, 43, 40, 234, 207, 12, 69, 129, 64, 241, 231, 120, 98, 34, 87, 204, 31]), (C3aSkShareEncryption, , [224, 168, 69, 80, 12, 126, 136, 205, 231, 225, 126, 139, 249, 166, 180, 88, 210, 63, 104, 199, 160, 216, 57, 160, 163, 66, 155, 35, 30, 240, 143, 163]), (C3bESmShareEncryption, , [53, 22, 222, 219, 51, 193, 113, 202, 168, 120, 245, 182, 200, 38, 159, 66, 54, 135, 189, 132, 132, 207, 91, 230, 102, 49, 214, 173, 147, 173, 114, 129]), (C3bESmShareEncryption, , [34, 29, 66, 206, 166, 100, 13, 173, 176, 217, 189, 154, 223, 48, 142, 198, 126, 82, 156, 75, 84, 143, 250, 224, 173, 184, 145, 41, 142, 209, 40, 160])] }] }), ctx: EventContext { id: EventId(0xd59b15b629e6b636dbcced6953b28301aeb46363f54a9750286daf12bd6b587b), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 65, ts: 32742384723081026106786181092613889, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.465804Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xd8ed120dea44fad426acb40e2f8232759d7aa0029b40588dfc8d346f600347b1), causation_id: EventId(0xc93fc04bc4eab684b50e0042f2eec6d8809c4295afd9557bafc1ee9e260c707d), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 66, ts: 32742384723259276994770436518772805, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.466185Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xd8ed120dea44fad426acb40e2f8232759d7aa0029b40588dfc8d346f600347b1), causation_id: EventId(0xd59b15b629e6b636dbcced6953b28301aeb46363f54a9750286daf12bd6b587b), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 66, ts: 32742384723264165381949969521057537, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.469332Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x2e374b30cde12a1ea02df1dce0999bef514eb3b18cf469858935450dfecf2c09), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 53, ts: 32742384723262357601030746013892677, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.483660Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(167)` +[CIPHER] [cn4] 2026-03-31T14:43:52.469331Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0e1f0bd201427ba43ff224d93ca16953ffc57e69b19d3038045b60212b889a8f), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 53, ts: 32742384723270843103304652378742529, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.484026Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(46)` +[CIPHER] [cn3] 2026-03-31T14:43:52.833399Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(241) in 447.262542ms +[CIPHER] [cn3] 2026-03-31T14:43:52.833524Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 107, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x76fbfa175192e66056048d065a0ee19ebcc60c23e1f17c7f8a7b0b05ff2faa08), causation_id: EventId(0x4325377300d25bc3e624a7ffe30ffb763e21759083c104518e507052e917afb5), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 68, ts: 32742384730043122468109344282216289, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.834534Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C2aSkShareComputation, data_hash: [218, 162, 211, 236, 84, 197, 120, 126, 77, 193, 148, 75, 216, 100, 231, 110, 68, 42, 235, 155, 88, 182, 123, 159, 97, 111, 211, 123, 255, 94, 202, 53], public_signals: }), ctx: EventContext { id: EventId(0xa5c5989fda76973ee78f34b2f3cb6f058dfd7fff514c099353aff128322c0522), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 69, ts: 32742384730046184627625580067784545, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.834583Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C2bESmShareComputation, data_hash: [216, 252, 13, 222, 180, 0, 135, 149, 95, 254, 121, 203, 86, 35, 41, 6, 31, 0, 15, 236, 111, 208, 2, 101, 173, 165, 169, 18, 110, 166, 202, 142], public_signals: }), ctx: EventContext { id: EventId(0x0338b98cc9cc05c0e09cfeacfd873ad289b9335f44ac7e28f8a283d10e4d6320), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 70, ts: 32742384730046221521113727486887777, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.834613Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3aSkShareEncryption, data_hash: [20, 144, 98, 130, 238, 229, 147, 51, 204, 236, 250, 107, 93, 169, 196, 120, 231, 133, 43, 88, 196, 226, 152, 154, 92, 193, 234, 144, 239, 100, 83, 197], public_signals: }), ctx: EventContext { id: EventId(0xbe0d3d65bf3b581de6d6aff1c70c8691de96ad3301c8932fba5ae9459dba5c48), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 71, ts: 32742384730046221521113731781855073, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.835576Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3aSkShareEncryption, data_hash: [203, 10, 128, 103, 255, 17, 206, 203, 197, 200, 86, 145, 72, 146, 96, 240, 135, 45, 27, 213, 177, 193, 98, 57, 181, 192, 122, 20, 160, 185, 28, 192], public_signals: }), ctx: EventContext { id: EventId(0x1bb051382cb8c51fd004398e14f8f3a45ef06daee1faeb0fa4e8c707753ae324), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 72, ts: 32742384730046387541810390872852321, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.836517Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3bESmShareEncryption, data_hash: [153, 104, 227, 76, 163, 91, 236, 155, 174, 210, 156, 114, 200, 214, 255, 235, 50, 163, 246, 192, 132, 124, 57, 213, 195, 40, 124, 226, 182, 63, 107, 46], public_signals: }), ctx: EventContext { id: EventId(0x6ab2c93a351a7c924cc342cddc10b34aaa01b14ca28561cfca6619fd28e83542), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 73, ts: 32742384730046553562507054258816865, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.837504Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3bESmShareEncryption, data_hash: [62, 13, 233, 164, 191, 202, 124, 39, 79, 205, 194, 66, 68, 40, 2, 182, 241, 95, 62, 227, 154, 52, 179, 210, 103, 151, 213, 43, 245, 231, 39, 1], public_signals: }), ctx: EventContext { id: EventId(0xbed67d8e12f6ad5f0bab2c88a5054dd8e457023fe9f0a6d464b306c5be2c714a), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 74, ts: 32742384730046719583203717644781409, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.838459Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C2aSkShareComputation, data_hash: [169, 7, 45, 84, 203, 3, 62, 98, 144, 48, 245, 220, 212, 60, 229, 199, 235, 69, 210, 128, 67, 14, 111, 158, 70, 187, 96, 75, 155, 250, 180, 226], public_signals: }), ctx: EventContext { id: EventId(0xc9d53e3c7c5a5e4013e401ee6902c755eb84935baa1acf34d232379e2ed084ef), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 75, ts: 32742384730046885603900381030745953, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.838491Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C2bESmShareComputation, data_hash: [218, 174, 66, 113, 111, 102, 34, 152, 141, 101, 158, 164, 12, 138, 101, 8, 16, 230, 23, 43, 81, 73, 110, 153, 1, 141, 147, 41, 215, 246, 95, 195], public_signals: }), ctx: EventContext { id: EventId(0x7484a181df1e7d07b58bd7febb533c053104daba749161fa6b3bdf13b2b9319e), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 76, ts: 32742384730046885603900385325713249, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.838521Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3aSkShareEncryption, data_hash: [248, 189, 65, 240, 30, 110, 64, 143, 17, 16, 161, 120, 98, 4, 144, 149, 98, 84, 156, 199, 18, 152, 249, 125, 221, 52, 220, 36, 207, 238, 22, 86], public_signals: }), ctx: EventContext { id: EventId(0x5287920097c62076a814442a8ede83e0444c8fad3b4cffb05975ae58b60ab56c), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 77, ts: 32742384730046885603900389620680545, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.839572Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3aSkShareEncryption, data_hash: [135, 98, 79, 156, 241, 157, 252, 113, 175, 144, 50, 156, 204, 23, 94, 28, 253, 3, 61, 124, 92, 111, 32, 158, 3, 255, 103, 144, 132, 128, 29, 120], public_signals: }), ctx: EventContext { id: EventId(0x5e9cbb39578976965d49e3eafec56002eef295b8353f400cf5419f4f42d50e80), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 78, ts: 32742384730047051624597044416710497, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.840609Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3bESmShareEncryption, data_hash: [61, 150, 6, 58, 65, 61, 87, 49, 53, 135, 41, 137, 233, 159, 224, 62, 113, 156, 89, 16, 64, 150, 142, 98, 77, 182, 17, 15, 198, 216, 124, 106], public_signals: }), ctx: EventContext { id: EventId(0xedb560ec4ea4a6607cdc47a1cb078e85e29b43aa1f9438c7b1bf47891b42b1e3), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 79, ts: 32742384730047217645293707802675041, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.841593Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3bESmShareEncryption, data_hash: [25, 172, 94, 194, 147, 115, 188, 254, 190, 50, 225, 8, 44, 68, 161, 102, 106, 31, 155, 135, 219, 223, 188, 2, 145, 178, 131, 105, 216, 111, 13, 90], public_signals: }), ctx: EventContext { id: EventId(0xfd4eff49fdd90efe3124edeaaefde43dfb7dcd6934e381d0cc9c3735390b8cd0), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 80, ts: 32742384730047383665990371188639585, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.842714Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 81, ts: 32742384730047549686687034574604129, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.842881Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding +[CIPHER] [cn3] 2026-03-31T14:43:52.844432Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.845996Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd275e6308b74def17738650dc3789d7e908d670bfb0c422669ab9b22ebd86210), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 54, ts: 32742384730260462006785790219356001, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.847552Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(46)` +[CIPHER] [cn3] 2026-03-31T14:43:52.847555Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... +[CIPHER] [cn3] 2026-03-31T14:43:52.847556Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... +[CIPHER] [cn3] 2026-03-31T14:43:52.851949Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... +[CIPHER] [cn3] 2026-03-31T14:43:52.852024Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... +[CIPHER] [cn3] 2026-03-31T14:43:52.852038Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... +[CIPHER] [cn3] 2026-03-31T14:43:52.852143Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(46) in 4.587542ms +[CIPHER] [cn3] 2026-03-31T14:43:52.853065Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8cf0f17824671da157292176bffe6fde4fce45fcf748e8da153ed635341e1ad1), causation_id: EventId(0xd275e6308b74def17738650dc3789d7e908d670bfb0c422669ab9b22ebd86210), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 82, ts: 32742384730389072706467693213222753, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.853433Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key +[CIPHER] [cn3] 2026-03-31T14:43:52.853882Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 1 (1 SK + 1 ESM requests) +[CIPHER] [cn3] 2026-03-31T14:43:52.853930Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.856113Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0x0a180a338eb7c4da93446a41cb9758e95832912730225d573ab847b9fb9018e2), causation_id: EventId(0x8cf0f17824671da157292176bffe6fde4fce45fcf748e8da153ed635341e1ad1), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 83, ts: 32742384730420118576743746388592481, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.859189Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.859213Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:43:52.861394Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe639be8389f6bc55f08306b98c0fb8e6ab2f129bccbab28b47cbb929b04345d8), causation_id: EventId(0x0a180a338eb7c4da93446a41cb9758e95832912730225d573ab847b9fb9018e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 55, ts: 32742384730518089234519217817225057, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.862769Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4738b086fc3c5f3c33f7b144b07bcd79dd0cc51ef48913a30fd8c914f6927b9c), causation_id: EventId(0x0a180a338eb7c4da93446a41cb9758e95832912730225d573ab847b9fb9018e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 56, ts: 32742384730518439722656618298705761, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:43:52.864045Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(160)` +[CIPHER] [cn5] 2026-03-31T14:43:52.934519Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(167) in 450.845791ms +[CIPHER] [cn4] 2026-03-31T14:43:52.934518Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(46) in 450.47925ms +[CIPHER] [cn4] 2026-03-31T14:43:52.934634Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x793bfbbe74bf4b0b0dc45591939b123a93a4a8727bcd96f4d69f81268dcef12a), causation_id: EventId(0x0e1f0bd201427ba43ff224d93ca16953ffc57e69b19d3038045b60212b889a8f), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 68, ts: 32742384731908125187449528312798977, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.934669Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x589ed8b7e33aca66c12e91b28b95ac546061f5eade2298401939d031e6b4fe1a), causation_id: EventId(0x2e374b30cde12a1ea02df1dce0999bef514eb3b18cf469858935450dfecf2c09), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 68, ts: 32742384731908401888610633984966725, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.935523Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C2aSkShareComputation, data_hash: [218, 162, 211, 236, 84, 197, 120, 126, 77, 193, 148, 75, 216, 100, 231, 110, 68, 42, 235, 155, 88, 182, 123, 159, 97, 111, 211, 123, 255, 94, 202, 53], public_signals: }), ctx: EventContext { id: EventId(0xa5c5989fda76973ee78f34b2f3cb6f058dfd7fff514c099353aff128322c0522), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 69, ts: 32742384731911537835103164579847937, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.935566Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C2bESmShareComputation, data_hash: [216, 252, 13, 222, 180, 0, 135, 149, 95, 254, 121, 203, 86, 35, 41, 6, 31, 0, 15, 236, 111, 208, 2, 101, 173, 165, 169, 18, 110, 166, 202, 142], public_signals: }), ctx: EventContext { id: EventId(0x0338b98cc9cc05c0e09cfeacfd873ad289b9335f44ac7e28f8a283d10e4d6320), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 70, ts: 32742384731911556281847238289399553, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.935597Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3aSkShareEncryption, data_hash: [166, 137, 202, 33, 191, 218, 177, 54, 73, 195, 194, 5, 2, 170, 180, 199, 137, 198, 86, 201, 151, 92, 78, 88, 52, 9, 232, 66, 136, 198, 207, 76], public_signals: }), ctx: EventContext { id: EventId(0xe98f6bf29ff95684bbaf66a8caf7643ee790cd74d78d95f675ed5fcd17ddeefe), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 71, ts: 32742384731911556281847242584366849, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.936605Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3aSkShareEncryption, data_hash: [186, 93, 93, 224, 50, 203, 172, 154, 187, 232, 21, 243, 53, 107, 164, 135, 83, 43, 114, 188, 11, 107, 200, 255, 39, 211, 27, 249, 37, 54, 144, 131], public_signals: }), ctx: EventContext { id: EventId(0x9c268c9bde82fe16b3ec0b7013b201accaa42643ed5809c9c161f58ac9ce0ea7), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 72, ts: 32742384731911722302543901675364097, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.937544Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3bESmShareEncryption, data_hash: [153, 126, 95, 217, 222, 98, 8, 173, 105, 65, 100, 217, 176, 127, 246, 168, 252, 147, 167, 174, 248, 38, 7, 143, 38, 64, 117, 84, 1, 62, 137, 246], public_signals: }), ctx: EventContext { id: EventId(0xa4add5971d677c1d5a7a7f9522d4ad9e3c392b6ddae26d2664da8e9c70e81faf), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 73, ts: 32742384731911888323240565061328641, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.939094Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2aSkShareComputation, data_hash: [137, 183, 168, 232, 5, 103, 160, 142, 51, 23, 172, 176, 46, 191, 77, 41, 54, 81, 137, 175, 130, 130, 142, 109, 203, 154, 138, 173, 135, 65, 61, 249], public_signals: }), ctx: EventContext { id: EventId(0x48cda04453f59b51130a20eaf0324d5ef821d6108b379a9bfe4d67756357ca72), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 69, ts: 32742384731913991252064967979106373, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.939138Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2bESmShareComputation, data_hash: [217, 210, 171, 137, 154, 180, 94, 218, 159, 205, 109, 235, 60, 18, 207, 140, 209, 231, 50, 56, 213, 41, 254, 174, 91, 211, 205, 47, 153, 200, 36, 17], public_signals: }), ctx: EventContext { id: EventId(0x695a7c68641c4bc7f45680be160278d3e1dade3ac577c473c261a0589bcedd57), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 70, ts: 32742384731914009698809041688657989, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.938494Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3bESmShareEncryption, data_hash: [242, 73, 12, 120, 216, 124, 202, 250, 76, 51, 62, 130, 144, 120, 166, 177, 134, 167, 50, 90, 204, 192, 24, 253, 50, 86, 184, 56, 168, 252, 89, 10], public_signals: }), ctx: EventContext { id: EventId(0xd738f5c0fdc1deeb881312e2222aac4f1cb39e017fd4453c46b36b072fda5e2c), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 74, ts: 32742384731912054343937228447293185, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.940083Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2aSkShareComputation, data_hash: [137, 183, 168, 232, 5, 103, 160, 142, 51, 23, 172, 176, 46, 191, 77, 41, 54, 81, 137, 175, 130, 130, 142, 109, 203, 154, 138, 173, 135, 65, 61, 249], public_signals: }), ctx: EventContext { id: EventId(0x48cda04453f59b51130a20eaf0324d5ef821d6108b379a9bfe4d67756357ca72), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 75, ts: 32742384731912220364633891833257729, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.940144Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2bESmShareComputation, data_hash: [217, 210, 171, 137, 154, 180, 94, 218, 159, 205, 109, 235, 60, 18, 207, 140, 209, 231, 50, 56, 213, 41, 254, 174, 91, 211, 205, 47, 153, 200, 36, 17], public_signals: }), ctx: EventContext { id: EventId(0x695a7c68641c4bc7f45680be160278d3e1dade3ac577c473c261a0589bcedd57), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 76, ts: 32742384731912220364633896128225025, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.939166Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [109, 28, 143, 38, 37, 253, 43, 98, 136, 179, 27, 149, 56, 26, 38, 10, 57, 92, 14, 200, 181, 158, 225, 41, 169, 39, 157, 102, 152, 169, 70, 139], public_signals: }), ctx: EventContext { id: EventId(0x9e83b255754b3647341276c616c635c34eaae25a306a91e091b341b89e592010), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 71, ts: 32742384731914028145553115398209605, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.940198Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [149, 96, 131, 165, 165, 219, 140, 45, 17, 67, 130, 19, 57, 223, 94, 212, 43, 40, 234, 207, 12, 69, 129, 64, 241, 231, 120, 98, 34, 87, 204, 31], public_signals: }), ctx: EventContext { id: EventId(0xee2ffa147e2060581c442f66636758641c27e4c3ea019b883cd7da34fdc8d074), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 77, ts: 32742384731912238811377965542809345, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.940851Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [43, 107, 112, 112, 148, 245, 1, 235, 69, 167, 70, 142, 126, 4, 89, 219, 119, 94, 134, 29, 221, 98, 82, 224, 61, 113, 175, 119, 156, 203, 58, 213], public_signals: }), ctx: EventContext { id: EventId(0xde066be8f8a61cebb514bc21e196844ee2afcc99d3780470ed083b6f7b57fb58), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 72, ts: 32742384731914194166249778784174149, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.941796Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [224, 168, 69, 80, 12, 126, 136, 205, 231, 225, 126, 139, 249, 166, 180, 88, 210, 63, 104, 199, 160, 216, 57, 160, 163, 66, 155, 35, 30, 240, 143, 163], public_signals: }), ctx: EventContext { id: EventId(0xc1639704b62795f56c662ca7df44afb1902b8e0153b7a51ed232eb57a3ffaa76), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 78, ts: 32742384731912404832074628928773889, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.942676Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [211, 112, 114, 208, 128, 22, 223, 104, 165, 49, 25, 211, 189, 138, 24, 48, 149, 247, 7, 151, 239, 80, 179, 146, 221, 178, 164, 125, 177, 179, 202, 244], public_signals: }), ctx: EventContext { id: EventId(0x71fe7db6dfedfc4c471dd0b17dad514766da81d1f62a3da64a1c3d6f8a27540d), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 73, ts: 32742384731914766015316063780274245, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.942804Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [53, 22, 222, 219, 51, 193, 113, 202, 168, 120, 245, 182, 200, 38, 159, 66, 54, 135, 189, 132, 132, 207, 91, 230, 102, 49, 214, 173, 147, 173, 114, 129], public_signals: }), ctx: EventContext { id: EventId(0xa695f400140ab50b1bff86797133fb2be1247bfc0091552f87625898ce97d885), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 79, ts: 32742384731912570852771292314738433, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.943637Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [69, 31, 207, 187, 229, 79, 144, 137, 182, 75, 145, 61, 0, 175, 189, 116, 158, 225, 198, 182, 153, 135, 7, 227, 87, 195, 27, 110, 215, 243, 155, 248], public_signals: }), ctx: EventContext { id: EventId(0x38f2e4fea5246fbb79ece37506c097a025187be949f4aff18044afbcc69111a0), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 74, ts: 32742384731914932036012727166238789, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.944597Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C2aSkShareComputation, data_hash: [169, 7, 45, 84, 203, 3, 62, 98, 144, 48, 245, 220, 212, 60, 229, 199, 235, 69, 210, 128, 67, 14, 111, 158, 70, 187, 96, 75, 155, 250, 180, 226], public_signals: }), ctx: EventContext { id: EventId(0xc9d53e3c7c5a5e4013e401ee6902c755eb84935baa1acf34d232379e2ed084ef), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 75, ts: 32742384731915116503453464261754949, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.944704Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C2bESmShareComputation, data_hash: [218, 174, 66, 113, 111, 102, 34, 152, 141, 101, 158, 164, 12, 138, 101, 8, 16, 230, 23, 43, 81, 73, 110, 153, 1, 141, 147, 41, 215, 246, 95, 195], public_signals: }), ctx: EventContext { id: EventId(0x7484a181df1e7d07b58bd7febb533c053104daba749161fa6b3bdf13b2b9319e), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 76, ts: 32742384731915116503453468556722245, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.943770Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [34, 29, 66, 206, 166, 100, 13, 173, 176, 217, 189, 154, 223, 48, 142, 198, 126, 82, 156, 75, 84, 143, 250, 224, 173, 184, 145, 41, 142, 209, 40, 160], public_signals: }), ctx: EventContext { id: EventId(0x75909db4a8aa21793450318543068193090ae3f35d7b64d3c70030c2c92728f3), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 80, ts: 32742384731912718426723881991151361, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.945055Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 81, ts: 32742384731912884447420545377115905, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.945252Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding +[CIPHER] [cn4] 2026-03-31T14:43:52.946822Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:52.947020Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3aSkShareEncryption, data_hash: [90, 247, 6, 12, 206, 144, 114, 132, 137, 38, 213, 14, 129, 5, 44, 138, 198, 55, 0, 75, 106, 26, 93, 96, 190, 39, 49, 44, 194, 214, 243, 72], public_signals: }), ctx: EventContext { id: EventId(0x7796e9d489dea2c61b6b180237abcea81c0b937145f5808e64109cbfe7d9dd32), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 78, ts: 32742384731915300970894201357271109, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.949260Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3bESmShareEncryption, data_hash: [20, 59, 252, 156, 21, 167, 180, 196, 181, 146, 190, 5, 59, 179, 239, 163, 88, 106, 2, 232, 73, 117, 119, 167, 225, 179, 224, 173, 6, 209, 174, 249], public_signals: }), ctx: EventContext { id: EventId(0x095d8d1221d8686102172771ea6aa195198f3807d5b5d7e56c1190acb605660e), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 79, ts: 32742384731915466991590864743235653, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.956733Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 81, ts: 32742384731915799032984191515164741, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.957015Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding +[CIPHER] [cn5] 2026-03-31T14:43:52.944779Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3aSkShareEncryption, data_hash: [230, 52, 183, 38, 39, 231, 22, 116, 38, 203, 171, 193, 42, 161, 44, 60, 178, 26, 160, 142, 100, 237, 117, 108, 144, 77, 202, 168, 186, 208, 94, 221], public_signals: }), ctx: EventContext { id: EventId(0x6cb65e5ec61a91cd960160b6b380536980688bc4f50996ccb61239112b5f991e), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 77, ts: 32742384731915134950197537971306565, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.954521Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3bESmShareEncryption, data_hash: [82, 242, 17, 221, 155, 251, 130, 43, 214, 59, 153, 237, 53, 85, 152, 183, 91, 36, 126, 128, 16, 57, 207, 183, 254, 17, 171, 202, 226, 74, 58, 1], public_signals: }), ctx: EventContext { id: EventId(0xb018422bfbc7ec2bd3b1b2e4a45569a13be09d94cd13632ee9759b9b99f2a45a), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 80, ts: 32742384731915633012287528129200197, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.959677Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:52.967812Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa46903a511f890dbea25e1141c0c8b123dd984855517d5de87dee21c0f71638c), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 54, ts: 32742384732405726108837843496534085, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.969357Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(39)` +[CIPHER] [cn5] 2026-03-31T14:43:52.969362Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... +[CIPHER] [cn5] 2026-03-31T14:43:52.969363Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... +[CIPHER] [cn4] 2026-03-31T14:43:52.967823Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x14335fd712fe013c41cd1bc608b8ec9029433f082e9a85c75dd01f24ad614334), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 54, ts: 32742384732151013466668061978926849, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.969513Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(163)` +[CIPHER] [cn4] 2026-03-31T14:43:52.969518Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... +[CIPHER] [cn4] 2026-03-31T14:43:52.969517Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... +[CIPHER] [cn5] 2026-03-31T14:43:52.973562Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... +[CIPHER] [cn5] 2026-03-31T14:43:52.973584Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... +[CIPHER] [cn5] 2026-03-31T14:43:52.973592Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... +[CIPHER] [cn5] 2026-03-31T14:43:52.973689Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(39) in 4.327875ms +[CIPHER] [cn4] 2026-03-31T14:43:52.973863Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... +[CIPHER] [cn4] 2026-03-31T14:43:52.973884Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... +[CIPHER] [cn4] 2026-03-31T14:43:52.973893Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... +[CIPHER] [cn4] 2026-03-31T14:43:52.974076Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(163) in 4.559125ms +[CIPHER] [cn5] 2026-03-31T14:43:52.987314Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x28c0906ee9153d2397590803bf9364da6a78e9334d47d57d701ec57a05439f0e), causation_id: EventId(0xa46903a511f890dbea25e1141c0c8b123dd984855517d5de87dee21c0f71638c), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 82, ts: 32742384732730259677326615638114373, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.991567Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key +[CIPHER] [cn5] 2026-03-31T14:43:52.993033Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 0 (1 SK + 1 ESM requests) +[CIPHER] [cn5] 2026-03-31T14:43:52.993125Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:52.996880Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd4342d1e60c122843a163b7308d7f00be511d65ae333d63dff0d06b5012b02ec), causation_id: EventId(0x14335fd712fe013c41cd1bc608b8ec9029433f082e9a85c75dd01f24ad614334), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 82, ts: 32742384732732657754056197850930945, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.997236Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key +[CIPHER] [cn4] 2026-03-31T14:43:52.999489Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 2 (1 SK + 1 ESM requests) +[CIPHER] [cn4] 2026-03-31T14:43:52.999600Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:52.993398Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0x70cbae3ae534cce2d60a6cdba9550f3b7807a08ce47bef733140208f35c82aa9), causation_id: EventId(0x28c0906ee9153d2397590803bf9364da6a78e9334d47d57d701ec57a05439f0e), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 83, ts: 32742384732987167482041168563470405, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:52.999107Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:52.999137Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:52.999471Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd0549fe9b491f214b10a4235fac83121a8ed338fa41a43b521df66e43759bc10), causation_id: EventId(0x70cbae3ae534cce2d60a6cdba9550f3b7807a08ce47bef733140208f35c82aa9), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 55, ts: 32742384733099120771824511832227909, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:52.999836Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0x444238e332c87a57f2ec41cc77058575c2163f9333ad9b146b7d4f98594dc860), causation_id: EventId(0xd4342d1e60c122843a163b7308d7f00be511d65ae333d63dff0d06b5012b02ec), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 83, ts: 32742384733106130534572521432948481, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:53.003554Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:53.003572Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:53.002713Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xabb4bbb9a6781e4573ddcba8d17f5645a1fcf529b4163b0f6c2d7b6bd89e4bc4), causation_id: EventId(0x70cbae3ae534cce2d60a6cdba9550f3b7807a08ce47bef733140208f35c82aa9), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 56, ts: 32742384733099581940426354571018309, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:43:53.004866Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(71)` +[CIPHER] [cn4] 2026-03-31T14:43:53.008262Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x99f39751155c0f873b6514ba6095cfdcbcbc129ac5618afb18fd70ee54b4c437), causation_id: EventId(0x444238e332c87a57f2ec41cc77058575c2163f9333ad9b146b7d4f98594dc860), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 55, ts: 32742384733181079655744003341164289, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:53.009583Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa09d5fe01f4973a682ba8c6f8ee8eef2e2e6681ae15b1f844855a3e715ef76f5), causation_id: EventId(0x444238e332c87a57f2ec41cc77058575c2163f9333ad9b146b7d4f98594dc860), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 56, ts: 32742384733181374803649182693990145, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:43:53.010976Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(191)` +[CIPHER] [cn3] 2026-03-31T14:43:53.353493Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:43:53.572805Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:43:53.577419Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:44:00.837851Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:44:00.837908Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(160) in 7.973871375s +[CIPHER] [cn3] 2026-03-31T14:44:00.838046Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd483360d8546ee84533ed229b6af40dcd2e9f8946ead4427cc073b865f689f38), causation_id: EventId(0xe639be8389f6bc55f08306b98c0fb8e6ab2f129bccbab28b47cbb929b04345d8), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 84, ts: 32742384877700122299605597611591521, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:00.839546Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(233)` +[CIPHER] [cn3] 2026-03-31T14:44:00.841927Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:44:01.719098Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:44:01.739948Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:44:01.740062Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(71) in 8.735201542s +[CIPHER] [cn5] 2026-03-31T14:44:01.740342Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(168)` +[CIPHER] [cn5] 2026-03-31T14:44:01.740291Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0645e21f6ebbadf79499dd82a1fc273d58337afa4bd08953f0eac3153772a46e), causation_id: EventId(0xd0549fe9b491f214b10a4235fac83121a8ed338fa41a43b521df66e43759bc10), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 84, ts: 32742384894342405868024881860509765, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:01.742372Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:44:01.933140Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:44:01.933947Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(191) in 8.922979709s +[CIPHER] [cn4] 2026-03-31T14:44:01.934823Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(50)` +[CIPHER] [cn4] 2026-03-31T14:44:01.934083Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd375f63fe596467e2e3951f6fdd80b3b6ee1478ae8d46a118c0133b7bd69168c), causation_id: EventId(0x99f39751155c0f873b6514ba6095cfdcbcbc129ac5618afb18fd70ee54b4c437), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 84, ts: 32742384897918417887177920669687553, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:01.935083Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:44:02.327780Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:44:02.483132Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:44:09.241789Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:44:09.241893Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(233) in 8.402351416s +[CIPHER] [cn3] 2026-03-31T14:44:09.242079Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb46eda42b955a3360b9ed7831179e31f91fa7c458131bea4d47ddf25a1fb76d0), causation_id: EventId(0x4738b086fc3c5f3c33f7b144b07bcd79dd0cc51ef48913a30fd8c914f6927b9c), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 85, ts: 32742385032726079879714752944113505, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:09.244031Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:44:09.244045Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared +[CIPHER] [cn3] 2026-03-31T14:44:09.244327Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 1 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) +[CIPHER] [cn3] 2026-03-31T14:44:09.244560Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0xf71c50a2af6e4578284a92107b7f032ac8b23834a9998fa33155292ca03d66af), causation_id: EventId(0x0a180a338eb7c4da93446a41cb9758e95832912730225d573ab847b9fb9018e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 86, ts: 32742385032770554979676466673059681, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:09.245875Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 +[CIPHER] [cn3] 2026-03-31T14:44:09.247098Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09.245851Z }, value: }), ctx: EventContext { id: EventId(0xf50fef34eb2eb482730bd0db7b4c26677f2631494d3a8f96d40731074716ed96), causation_id: EventId(0xf71c50a2af6e4578284a92107b7f032ac8b23834a9998fa33155292ca03d66af), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 57, ts: 32742385032799055199270347930306401, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:09.256911Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), causation_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), origin_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), seq: 57, ts: 32742385033000364517346741210193665, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:44:09.256882Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), causation_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), origin_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), seq: 57, ts: 32742385032998482949451222864822341, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:44:09.259890Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xfc4d7ea05cbd967c9ac656aecea8c9962f1ebf86e24fd48f4d9ab81b002c5f61), causation_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), origin_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), seq: 85, ts: 32742385033053804734928277810118725, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:09.261241Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 1, waiting on 1 +[CIPHER] [cn5] 2026-03-31T14:44:09.261247Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 6.792µs +[CIPHER] [cn4] 2026-03-31T14:44:09.259875Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xfc4d7ea05cbd967c9ac656aecea8c9962f1ebf86e24fd48f4d9ab81b002c5f61), causation_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), origin_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), seq: 85, ts: 32742385033053694054463835523915521, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:09.262092Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 1, waiting on 1 +[CIPHER] [cn4] 2026-03-31T14:44:09.262097Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 6.417µs +[CIPHER] [cn5] 2026-03-31T14:44:09.884233Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:44:09.884340Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(168) in 8.144003917s +[CIPHER] [cn5] 2026-03-31T14:44:09.884525Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xedb5d6eec8f5283e7b83a7713a9db74afaee00c3302c946e57ac92c68c563d9f), causation_id: EventId(0xabb4bbb9a6781e4573ddcba8d17f5645a1fcf529b4163b0f6c2d7b6bd89e4bc4), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 86, ts: 32742385044577172163125381642256453, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:09.886608Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:44:09.886617Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared +[CIPHER] [cn5] 2026-03-31T14:44:09.886881Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 0 (signer: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc) +[CIPHER] [cn5] 2026-03-31T14:44:09.887179Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0xe77b6d24af9ef23667ae8cffff4341a3861007a5c604831ac7d668578e6346fb), causation_id: EventId(0x70cbae3ae534cce2d60a6cdba9550f3b7807a08ce47bef733140208f35c82aa9), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 87, ts: 32742385044623547277726687455019077, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:09.888852Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 +[CIPHER] [cn5] 2026-03-31T14:44:09.891012Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09.888827Z }, value: }), ctx: EventContext { id: EventId(0xb8e575990552c09955fe5e27f092c03a077850321fc24b2d713f27fe46e1fd11), causation_id: EventId(0xe77b6d24af9ef23667ae8cffff4341a3861007a5c604831ac7d668578e6346fb), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 58, ts: 32742385044659905810295968981254213, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:09.898370Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), causation_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 58, ts: 32742385044833378991565133575757569, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:44:09.898391Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), causation_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 58, ts: 32742385044832991609939584732071777, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:44:09.899807Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xb9cbbe7dc4a4ed3588bfea08fb70aa4e10068764dd29fb06a969cdf15a18eaa1), causation_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 86, ts: 32742385044860348131400896940220161, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:09.901086Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 0, waiting on 0 +[CIPHER] [cn4] 2026-03-31T14:44:09.901090Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected +[CIPHER] [cn4] 2026-03-31T14:44:09.901100Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) +[CIPHER] [cn4] 2026-03-31T14:44:09.901091Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 6.292µs +[CIPHER] [cn4] 2026-03-31T14:44:09.901103Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn3] 2026-03-31T14:44:09.900271Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xb9cbbe7dc4a4ed3588bfea08fb70aa4e10068764dd29fb06a969cdf15a18eaa1), causation_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 87, ts: 32742385044869128781579981743687521, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:09.901523Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 0, waiting on 1 +[CIPHER] [cn3] 2026-03-31T14:44:09.901527Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 4.875µs +[CIPHER] [cn4] 2026-03-31T14:44:09.901196Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), causation_id: EventId(0xb9cbbe7dc4a4ed3588bfea08fb70aa4e10068764dd29fb06a969cdf15a18eaa1), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 87, ts: 32742385044885804638222616121450241, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:09.903175Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs +[CIPHER] [cn4] 2026-03-31T14:44:09.906556Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 116, party_proofs: [PartyProofData { party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C4aSkShareDecryption, , [207, 91, 179, 182, 224, 174, 15, 119, 62, 37, 240, 97, 130, 96, 93, 250, 129, 58, 79, 166, 46, 67, 140, 27, 53, 165, 205, 24, 199, 29, 45, 250]), (C4bESmShareDecryption, , [107, 206, 217, 199, 8, 83, 24, 66, 8, 11, 118, 14, 164, 156, 50, 24, 49, 147, 137, 207, 206, 229, 40, 24, 15, 140, 148, 150, 3, 37, 71, 52])] }, PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C4aSkShareDecryption, , [246, 55, 190, 228, 208, 191, 49, 207, 49, 223, 224, 149, 191, 144, 127, 238, 145, 197, 201, 194, 87, 46, 163, 212, 222, 218, 251, 130, 172, 37, 70, 81]), (C4bESmShareDecryption, , [241, 138, 245, 238, 165, 120, 206, 86, 142, 125, 126, 246, 47, 176, 171, 148, 80, 213, 37, 206, 122, 80, 109, 189, 120, 149, 106, 41, 117, 210, 155, 246])] }] }), ctx: EventContext { id: EventId(0x9de2b9e21d07d4b4d34f30d4774d8c25d8041eedec28106f32a84e63babe8de9), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 88, ts: 32742385044955846925470491288936193, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:09.911318Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 116, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x10b8ee4c4c98459b51a6001280102d1c70b2a9952fa1a14d1de35e25dd54e98b), causation_id: EventId(0x9de2b9e21d07d4b4d34f30d4774d8c25d8041eedec28106f32a84e63babe8de9), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 89, ts: 32742385044989567573637232349290241, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:09.914259Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 117, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb851055099b71fd16ce2d019e77e100e2f94ac16cf4ddd1520796b5eef51f4fe), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 59, ts: 32742385045075695421717382245785345, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:09.939992Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:44:09.940048Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(50) in 8.005222333s +[CIPHER] [cn4] 2026-03-31T14:44:09.940101Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(87)` +[CIPHER] [cn4] 2026-03-31T14:44:09.940161Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x82d8e2c96c262ce89d6f687fb07ec5abd4df4ca64e9506cfa8f510ddcaceed29), causation_id: EventId(0xa09d5fe01f4973a682ba8c6f8ee8eef2e2e6681ae15b1f844855a3e715ef76f5), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 91, ts: 32742385045604600467798782509719297, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:09.941138Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:44:09.941142Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared +[CIPHER] [cn4] 2026-03-31T14:44:09.941285Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 2 (signer: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65) +[CIPHER] [cn4] 2026-03-31T14:44:09.941378Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0xa9d75a6e747355af565aff34d627e7902f12c9408bc52a63d7fd48716c536e5b), causation_id: EventId(0x444238e332c87a57f2ec41cc77058575c2163f9333ad9b146b7d4f98594dc860), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 92, ts: 32742385045627068602080560743587585, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:09.942685Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 +[CIPHER] [cn4] 2026-03-31T14:44:09.944742Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09.942662Z }, value: }), ctx: EventContext { id: EventId(0x453ec784c0d77fd73e4cccb0ef29f5808d3a778e2dd652e5420ab495786461fd), causation_id: EventId(0xa9d75a6e747355af565aff34d627e7902f12c9408bc52a63d7fd48716c536e5b), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 60, ts: 32742385045652875597039680406298369, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:09.950976Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), causation_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 59, ts: 32742385045804268025652613753309025, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:44:09.951195Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), causation_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 59, ts: 32742385045808566117021789050830917, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:44:09.952464Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x5c01a625ea03927182348b3453daa83f0aa5c24f718dfef4b630dcef1f184ab9), causation_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 88, ts: 32742385045831753674322440985216865, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:09.952590Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x5c01a625ea03927182348b3453daa83f0aa5c24f718dfef4b630dcef1f184ab9), causation_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 88, ts: 32742385045834410005469056132644933, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:09.953833Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 2, waiting on 0 +[CIPHER] [cn3] 2026-03-31T14:44:09.953837Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected +[CIPHER] [cn3] 2026-03-31T14:44:09.953839Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 6.875µs +[CIPHER] [cn3] 2026-03-31T14:44:09.953850Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) +[CIPHER] [cn3] 2026-03-31T14:44:09.953853Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn5] 2026-03-31T14:44:09.953854Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 2, waiting on 0 +[CIPHER] [cn5] 2026-03-31T14:44:09.953856Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected +[CIPHER] [cn5] 2026-03-31T14:44:09.953858Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 4.208µs +[CIPHER] [cn5] 2026-03-31T14:44:09.953864Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) +[CIPHER] [cn5] 2026-03-31T14:44:09.953866Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn5] 2026-03-31T14:44:09.954060Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), causation_id: EventId(0x5c01a625ea03927182348b3453daa83f0aa5c24f718dfef4b630dcef1f184ab9), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 89, ts: 32742385045859110195783753222258757, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:09.956148Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs +[CIPHER] [cn3] 2026-03-31T14:44:09.953960Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), causation_id: EventId(0x5c01a625ea03927182348b3453daa83f0aa5c24f718dfef4b630dcef1f184ab9), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 89, ts: 32742385045858888834854867735644001, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:09.956333Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs +[CIPHER] [cn3] 2026-03-31T14:44:09.957383Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, party_proofs: [PartyProofData { party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C4aSkShareDecryption, , [207, 91, 179, 182, 224, 174, 15, 119, 62, 37, 240, 97, 130, 96, 93, 250, 129, 58, 79, 166, 46, 67, 140, 27, 53, 165, 205, 24, 199, 29, 45, 250]), (C4bESmShareDecryption, , [107, 206, 217, 199, 8, 83, 24, 66, 8, 11, 118, 14, 164, 156, 50, 24, 49, 147, 137, 207, 206, 229, 40, 24, 15, 140, 148, 150, 3, 37, 71, 52])] }, PartyProofData { party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C4aSkShareDecryption, , [92, 132, 213, 248, 224, 88, 148, 105, 232, 108, 138, 146, 146, 11, 163, 14, 60, 173, 245, 138, 93, 10, 234, 190, 44, 2, 23, 165, 17, 177, 111, 29]), (C4bESmShareDecryption, , [227, 118, 168, 36, 94, 27, 141, 27, 52, 171, 13, 37, 103, 219, 237, 71, 32, 68, 213, 184, 54, 55, 21, 164, 106, 205, 118, 221, 181, 148, 107, 116])] }] }), ctx: EventContext { id: EventId(0xea4a9fff747686aaa9a4adba4ce8dca2945a50131e7d0efe69e3e98df1f13eb1), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 90, ts: 32742385045922161167027691497686881, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:09.957422Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, party_proofs: [PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C4aSkShareDecryption, , [246, 55, 190, 228, 208, 191, 49, 207, 49, 223, 224, 149, 191, 144, 127, 238, 145, 197, 201, 194, 87, 46, 163, 212, 222, 218, 251, 130, 172, 37, 70, 81]), (C4bESmShareDecryption, , [241, 138, 245, 238, 165, 120, 206, 86, 142, 125, 126, 246, 47, 176, 171, 148, 80, 213, 37, 206, 122, 80, 109, 189, 120, 149, 106, 41, 117, 210, 155, 246])] }, PartyProofData { party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C4aSkShareDecryption, , [92, 132, 213, 248, 224, 88, 148, 105, 232, 108, 138, 146, 146, 11, 163, 14, 60, 173, 245, 138, 93, 10, 234, 190, 44, 2, 23, 165, 17, 177, 111, 29]), (C4bESmShareDecryption, , [227, 118, 168, 36, 94, 27, 141, 27, 52, 171, 13, 37, 103, 219, 237, 71, 32, 68, 213, 184, 54, 55, 21, 164, 106, 205, 118, 221, 181, 148, 107, 116])] }] }), ctx: EventContext { id: EventId(0xfdf3659e49db7896d7ebf8e89a9893465ccf0312efb70fb37b2a39a8633a2854), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 90, ts: 32742385045919099007511456684113989, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:09.964054Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x5e634e70829339b4324c1b7f9984a332726f8654b1397eac609e298f06468960), causation_id: EventId(0xfdf3659e49db7896d7ebf8e89a9893465ccf0312efb70fb37b2a39a8633a2854), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 91, ts: 32742385045926643725837603890724933, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:09.964092Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x5e634e70829339b4324c1b7f9984a332726f8654b1397eac609e298f06468960), causation_id: EventId(0xea4a9fff747686aaa9a4adba4ce8dca2945a50131e7d0efe69e3e98df1f13eb1), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 91, ts: 32742385045925370900496516959668065, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:09.967377Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x2f335ccbfb822f1534e4bf4db25fece9bc13c66d625d130750dc823ee9b826fe), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 60, ts: 32742385046050015550202572399937377, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:09.967377Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe057fc943ca1ebee9b44f5bdf6035ccb169c121c7ca381eb87d4ffa2e3e21650), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 60, ts: 32742385046048742724861487412871237, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:09.969458Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(20)` +[CIPHER] [cn5] 2026-03-31T14:44:09.969499Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(180)` +[CIPHER] [cn4] 2026-03-31T14:44:10.082245Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(87) in 142.136041ms +[CIPHER] [cn4] 2026-03-31T14:44:10.082336Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 117, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x22bd52ab9443e1a8f8fee6f6510119e915649f4be678baaeeaa78fd054119d34), causation_id: EventId(0xb851055099b71fd16ce2d019e77e100e2f94ac16cf4ddd1520796b5eef51f4fe), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 93, ts: 32742385048227801262056575587720961, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:10.082500Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C4aSkShareDecryption, data_hash: [207, 91, 179, 182, 224, 174, 15, 119, 62, 37, 240, 97, 130, 96, 93, 250, 129, 58, 79, 166, 46, 67, 140, 27, 53, 165, 205, 24, 199, 29, 45, 250], public_signals: }), ctx: EventContext { id: EventId(0x1ab2b5433adabd723e0e548c05a08d4f834653a7f30fb77a71fadcf9beb56feb), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 94, ts: 32742385048230383806226894924947201, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:10.082536Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C4bESmShareDecryption, data_hash: [107, 206, 217, 199, 8, 83, 24, 66, 8, 11, 118, 14, 164, 156, 50, 24, 49, 147, 137, 207, 206, 229, 40, 24, 15, 140, 148, 150, 3, 37, 71, 52], public_signals: }), ctx: EventContext { id: EventId(0x8da6878ba86f4841196b75e8919abf5ab9ca5f5f645cc3dbcd2b3d8fee05585c), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 95, ts: 32742385048230420699715042344050433, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:10.082566Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4aSkShareDecryption, data_hash: [246, 55, 190, 228, 208, 191, 49, 207, 49, 223, 224, 149, 191, 144, 127, 238, 145, 197, 201, 194, 87, 46, 163, 212, 222, 218, 251, 130, 172, 37, 70, 81], public_signals: }), ctx: EventContext { id: EventId(0x62b3d378ec745bb1496d528f299249e487ad82a06dc98e0d22da82aecc056a99), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 96, ts: 32742385048230420699715046639017729, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:10.082604Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4bESmShareDecryption, data_hash: [241, 138, 245, 238, 165, 120, 206, 86, 142, 125, 126, 246, 47, 176, 171, 148, 80, 213, 37, 206, 122, 80, 109, 189, 120, 149, 106, 41, 117, 210, 155, 246], public_signals: }), ctx: EventContext { id: EventId(0xb873558a4d49c9388b3cbad1cd8ba9d50edc9634ec8d33ebee6cd22bca6072be), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 97, ts: 32742385048230439146459116053602049, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:10.082633Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 98, ts: 32742385048230457593203189763153665, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:10.082693Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated +[CIPHER] [cn4] 2026-03-31T14:44:10.082698Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:44:10.082980Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 99, ts: 32742385048235641128287902147157761, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:44:10.083864Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated +[CIPHER] [cn5] 2026-03-31T14:44:10.086260Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), origin_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), seq: 93, ts: 32742385048291737677016052922515525, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:44:10.086295Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), origin_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), seq: 93, ts: 32742385048293047395845285328684897, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:44:10.086511Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), origin_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), seq: 15, ts: 32742385048291848357480491433472349, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:44:10.087877Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 1/3 +[CIPHER] [cn1] 2026-03-31T14:44:10.089696Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), origin_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), seq: 15, ts: 32742385048276021051065249995847996, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-03-31T14:44:10.089700Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), origin_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), seq: 15, ts: 32742385048309501891559034440407269, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:44:10.114789Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(20) in 145.323875ms +[CIPHER] [cn5] 2026-03-31T14:44:10.114839Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(180) in 145.330958ms +[CIPHER] [cn5] 2026-03-31T14:44:10.114909Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc633ee3ead5d3204314d6d459ff7597ac404d3294f55d3cecf621c68a906466b), causation_id: EventId(0xe057fc943ca1ebee9b44f5bdf6035ccb169c121c7ca381eb87d4ffa2e3e21650), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 94, ts: 32742385048828796183978032808263749, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:10.114949Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd0710ddfaa9e436eeb1e500e3a597843b598d23ecd0ab1db1fd8c7eed81cb0fa), causation_id: EventId(0x2f335ccbfb822f1534e4bf4db25fece9bc13c66d625d130750dc823ee9b826fe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 94, ts: 32742385048828427249096557645236065, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:10.115099Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C4aSkShareDecryption, data_hash: [207, 91, 179, 182, 224, 174, 15, 119, 62, 37, 240, 97, 130, 96, 93, 250, 129, 58, 79, 166, 46, 67, 140, 27, 53, 165, 205, 24, 199, 29, 45, 250], public_signals: }), ctx: EventContext { id: EventId(0x1ab2b5433adabd723e0e548c05a08d4f834653a7f30fb77a71fadcf9beb56feb), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 95, ts: 32742385048831655429309456816768865, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:10.115086Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4aSkShareDecryption, data_hash: [246, 55, 190, 228, 208, 191, 49, 207, 49, 223, 224, 149, 191, 144, 127, 238, 145, 197, 201, 194, 87, 46, 163, 212, 222, 218, 251, 130, 172, 37, 70, 81], public_signals: }), ctx: EventContext { id: EventId(0x62b3d378ec745bb1496d528f299249e487ad82a06dc98e0d22da82aecc056a99), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 95, ts: 32742385048831231154195762469077061, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:10.115133Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C4bESmShareDecryption, data_hash: [107, 206, 217, 199, 8, 83, 24, 66, 8, 11, 118, 14, 164, 156, 50, 24, 49, 147, 137, 207, 206, 229, 40, 24, 15, 140, 148, 150, 3, 37, 71, 52], public_signals: }), ctx: EventContext { id: EventId(0x8da6878ba86f4841196b75e8919abf5ab9ca5f5f645cc3dbcd2b3d8fee05585c), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 96, ts: 32742385048831692322797604235872097, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:10.115166Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C4aSkShareDecryption, data_hash: [92, 132, 213, 248, 224, 88, 148, 105, 232, 108, 138, 146, 146, 11, 163, 14, 60, 173, 245, 138, 93, 10, 234, 190, 44, 2, 23, 165, 17, 177, 111, 29], public_signals: }), ctx: EventContext { id: EventId(0x9653f93f70f415c4de2ba4b056cf7a7800e6213f955b2f66eb244c7c93338ace), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 97, ts: 32742385048831710769541677945423713, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:10.115161Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4bESmShareDecryption, data_hash: [241, 138, 245, 238, 165, 120, 206, 86, 142, 125, 126, 246, 47, 176, 171, 148, 80, 213, 37, 206, 122, 80, 109, 189, 120, 149, 106, 41, 117, 210, 155, 246], public_signals: }), ctx: EventContext { id: EventId(0xb873558a4d49c9388b3cbad1cd8ba9d50edc9634ec8d33ebee6cd22bca6072be), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 96, ts: 32742385048831268047683909888180293, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:10.115225Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C4bESmShareDecryption, data_hash: [227, 118, 168, 36, 94, 27, 141, 27, 52, 171, 13, 37, 103, 219, 237, 71, 32, 68, 213, 184, 54, 55, 21, 164, 106, 205, 118, 221, 181, 148, 107, 116], public_signals: }), ctx: EventContext { id: EventId(0x18c5bc9ab23c7fab56facb8b6d2605c7b9acfeb9c60afa9f417573ef7ca28a01), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 98, ts: 32742385048831710769541682240391009, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:10.115234Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C4aSkShareDecryption, data_hash: [92, 132, 213, 248, 224, 88, 148, 105, 232, 108, 138, 146, 146, 11, 163, 14, 60, 173, 245, 138, 93, 10, 234, 190, 44, 2, 23, 165, 17, 177, 111, 29], public_signals: }), ctx: EventContext { id: EventId(0x9653f93f70f415c4de2ba4b056cf7a7800e6213f955b2f66eb244c7c93338ace), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 97, ts: 32742385048831268047683914183147589, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:10.115265Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 99, ts: 32742385048831729216285751654975329, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:10.115268Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C4bESmShareDecryption, data_hash: [227, 118, 168, 36, 94, 27, 141, 27, 52, 171, 13, 37, 103, 219, 237, 71, 32, 68, 213, 184, 54, 55, 21, 164, 106, 205, 118, 221, 181, 148, 107, 116], public_signals: }), ctx: EventContext { id: EventId(0x18c5bc9ab23c7fab56facb8b6d2605c7b9acfeb9c60afa9f417573ef7ca28a01), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 98, ts: 32742385048831286494427983597731909, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:10.115299Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 99, ts: 32742385048831286494427987892699205, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:10.115334Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated +[CIPHER] [cn3] 2026-03-31T14:44:10.115339Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:44:10.115367Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated +[CIPHER] [cn5] 2026-03-31T14:44:10.115374Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:44:10.118223Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 100, ts: 32742385048838406937640435484655685, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:44:10.118941Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated +[CIPHER] [cn3] 2026-03-31T14:44:10.118223Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 100, ts: 32742385048837779748341928387905377, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:44:10.119191Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated +[CIPHER] [cn4] 2026-03-31T14:44:10.121137Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 100, ts: 32742385048932485332416354169003777, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-03-31T14:44:10.121125Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 16, ts: 32742385048940343645391752078195004, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:44:10.121148Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), origin_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), seq: 101, ts: 32742385048937724207733287710556229, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:44:10.122569Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 101, ts: 32742385048955580655996637584525153, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-03-31T14:44:10.122495Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 16, ts: 32742385048942723275377262218729701, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:44:10.128203Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), origin_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), seq: 101, ts: 32742385048979727443989124330692353, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:44:10.128221Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), origin_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), seq: 16, ts: 32742385048955377741811824005099869, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-03-31T14:44:10.128221Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), origin_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), seq: 17, ts: 32742385048976241009359190865639740, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:44:10.128952Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 17, ts: 32742385048955802016925519324787037, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:44:10.129617Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 2/3 +[CIPHER] [ag] 2026-03-31T14:44:10.129651Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 3/3 +[CIPHER] [ag] 2026-03-31T14:44:10.129653Z  INFO e3_aggregator::publickey_aggregator: All keyshares collected, transitioning to VerifyingC1... +[CIPHER] [ag] 2026-03-31T14:44:10.129682Z  INFO e3_aggregator::publickey_aggregator: Dispatching C1 proof verification for 3 parties (0 missing proofs) +[CIPHER] [cn2] 2026-03-31T14:44:10.131145Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), origin_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), seq: 17, ts: 32742385048998543122944307321919717, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:44:10.134065Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 18, ts: 32742385049102361398591141712376157, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.135473Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, PkGenerationProofs +[CIPHER] [ag] 2026-03-31T14:44:10.147602Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, correlation_id: 78, party_proofs: [PartyProofData { party_id: 0, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C1PkGeneration, , [167, 1, 102, 160, 20, 248, 64, 89, 83, 41, 175, 187, 42, 101, 184, 8, 202, 181, 190, 171, 251, 185, 96, 93, 191, 14, 33, 109, 238, 134, 195, 48])] }, PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C1PkGeneration, , [195, 160, 166, 13, 241, 176, 189, 66, 192, 144, 172, 102, 183, 50, 205, 4, 80, 65, 29, 119, 49, 48, 86, 190, 87, 120, 180, 27, 120, 50, 65, 241])] }, PartyProofData { party_id: 2, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C1PkGeneration, , [22, 84, 201, 12, 100, 5, 176, 106, 181, 89, 169, 210, 128, 79, 111, 210, 23, 210, 25, 130, 178, 136, 242, 110, 240, 239, 78, 32, 22, 77, 225, 121])] }] }), ctx: EventContext { id: EventId(0x926c3178d2c758cad48a4b11f7b68ecbf4f9c859edd5837ecab55427795c02e7), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 19, ts: 32742385049226674006903870380716381, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.157023Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, correlation_id: 78, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x863facfc994647cde32254c36c3bf29774e0ef089223b519ea1f67a93b3ea072), causation_id: EventId(0x926c3178d2c758cad48a4b11f7b68ecbf4f9c859edd5837ecab55427795c02e7), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 20, ts: 32742385049434568812614577027428701, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.163258Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }] })), correlation_id: 79, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe984f93fd6a690247966175b23973b01d23ae4f7650eb12c05a0108828931194), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 27, ts: 32742385049609148798528164223922525, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.164846Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(42)` +[CIPHER] [ag] 2026-03-31T14:44:10.262856Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(42) in 98.002583ms +[CIPHER] [ag] 2026-03-31T14:44:10.262953Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 79, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xadc0611e7437f80201f563f421b6bcd7c8148559950ad598e1f2dc9cf819a3cb), causation_id: EventId(0xe984f93fd6a690247966175b23973b01d23ae4f7650eb12c05a0108828931194), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 22, ts: 32742385051559504602697401406730589, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.263108Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C1PkGeneration, data_hash: [167, 1, 102, 160, 20, 248, 64, 89, 83, 41, 175, 187, 42, 101, 184, 8, 202, 181, 190, 171, 251, 185, 96, 93, 191, 14, 33, 109, 238, 134, 195, 48], public_signals: }), ctx: EventContext { id: EventId(0xd0e4b6d6cf218728977773bafb952af2bf6c4769418643ece72e4739af580d98), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 23, ts: 32742385051562308507796605258576221, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.263165Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C1PkGeneration, data_hash: [195, 160, 166, 13, 241, 176, 189, 66, 192, 144, 172, 102, 183, 50, 205, 4, 80, 65, 29, 119, 49, 48, 86, 190, 87, 120, 180, 27, 120, 50, 65, 241], public_signals: }), ctx: EventContext { id: EventId(0x7d921d8e1b9796c71df9dacfff0174deb6bf39e7d9cb6fe8f8e7e22dc223da9c), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 24, ts: 32742385051562345401284752677679453, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.263201Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C1PkGeneration, data_hash: [22, 84, 201, 12, 100, 5, 176, 106, 181, 89, 169, 210, 128, 79, 111, 210, 23, 210, 25, 130, 178, 136, 242, 110, 240, 239, 78, 32, 22, 77, 225, 121], public_signals: }), ctx: EventContext { id: EventId(0x032a08c34b81181312e3b91a01d46242bfbacbe684e0529a05a0937ea60b9b50), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 25, ts: 32742385051562363848028826387231069, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.263238Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x305f112b0f0602912ec06a9ae327d0a8783578da11afff704ca89fc33f1cc633), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 26, ts: 32742385051562363848028830682198365, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.268099Z  INFO e3_aggregator::publickey_aggregator: Aggregating public key from 3 honest shares... +[CIPHER] [ag] 2026-03-31T14:44:10.268187Z  INFO e3_aggregator::publickey_aggregator: Publishing PkAggregationProofPending for C5 proof generation... +[CIPHER] [ag] 2026-03-31T14:44:10.268229Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 2 (buffered=1) +[CIPHER] [ag] 2026-03-31T14:44:10.268244Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 0 (buffered=2) +[CIPHER] [ag] 2026-03-31T14:44:10.268255Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 1 (buffered=3) +[CIPHER] [ag] 2026-03-31T14:44:10.268267Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: proof aggregation disabled — skipping cross-node fold +[CIPHER] [ag] 2026-03-31T14:44:10.268271Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: proof aggregation disabled — skipping cross-node fold +[CIPHER] [ag] 2026-03-31T14:44:10.268498Z  INFO e3_events::eventbus: >>> PkAggregationProofPending EnclaveEvent { payload: PkAggregationProofPending(PkAggregationProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, proof_request: PkAggregationProofRequest { keyshare_bytes: [, , ], aggregated_pk_bytes: , params_preset: InsecureThreshold512, committee_n: 3, committee_h: 3, committee_threshold: 0 }, public_key: , nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"} }), ctx: EventContext { id: EventId(0x2e3be6e677eba8ab70bb0cb6cc1831d88d8507d2100967ac323d97b2f0c21f29), causation_id: EventId(0x305f112b0f0602912ec06a9ae327d0a8783578da11afff704ca89fc33f1cc633), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 27, ts: 32742385051657327686520283158950237, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.269422Z  INFO e3_zk_prover::actors::proof_request: Requesting C5 PkAggregation proof for E3 31337:0 +[CIPHER] [ag] 2026-03-31T14:44:10.272007Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkAggregation(PkAggregationProofRequest { keyshare_bytes: [, , ], aggregated_pk_bytes: , params_preset: InsecureThreshold512, committee_n: 3, committee_h: 3, committee_threshold: 0 })), correlation_id: 80, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xac786cc7d4499bcbe5c39506f5723dedcf3a9e09439c55c5408f8775d3388551), causation_id: EventId(0x2e3be6e677eba8ab70bb0cb6cc1831d88d8507d2100967ac323d97b2f0c21f29), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 28, ts: 32742385051680127862195388164747613, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:10.272756Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_aggregation(139)` +[CIPHER] [ag] 2026-03-31T14:44:11.678056Z  INFO e3_zk_prover::prover: generated proof (9792 bytes) for pk_aggregation / 31337:0 +[CIPHER] [ag] 2026-03-31T14:44:11.678159Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_aggregation`(139) in 1.405400958s +[CIPHER] [ag] 2026-03-31T14:44:11.678746Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkAggregation(PkAggregationProofResponse { proof: Proof { circuit: PkAggregation, data: , public_signals: } })), correlation_id: 80, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x963d45c98275df212fb925de6d6179cca6fd76f342798b1f2349290ba3acc9f9), causation_id: EventId(0xac786cc7d4499bcbe5c39506f5723dedcf3a9e09439c55c5408f8775d3388551), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 28, ts: 32742385077666978576033719003787613, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:11.679182Z  INFO e3_zk_prover::actors::proof_request: C5 proof signed for E3 31337:0 (signer: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266) +[CIPHER] [ag] 2026-03-31T14:44:11.679286Z  INFO e3_events::eventbus: >>> PkAggregationProofSigned EnclaveEvent { payload: PkAggregationProofSigned(PkAggregationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C5PkAggregation, proof: Proof { circuit: PkAggregation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4d5595d28ffdd3c11eb588a433687562ac5852f1030814c57b969180a8957df3), causation_id: EventId(0x2e3be6e677eba8ab70bb0cb6cc1831d88d8507d2100967ac323d97b2f0c21f29), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 29, ts: 32742385077685609787548165650919773, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:11.679614Z  INFO e3_aggregator::publickey_aggregator: C5 proof signed — waiting for cross-node DKG fold to complete... +[CIPHER] [ag] 2026-03-31T14:44:11.679638Z  INFO e3_aggregator::publickey_aggregator: C5 proof ready — publishing PublicKeyAggregated (dkg_aggregated_proof=skipped) +[CIPHER] [ag] 2026-03-31T14:44:11.679819Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x4d5595d28ffdd3c11eb588a433687562ac5852f1030814c57b969180a8957df3), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 30, ts: 32742385077694021502845777206456669, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:44:11.680429Z  WARN e3_net::net_event_translator: GossipPublish event: PublicKeyAggregated +[CIPHER] [ag] 2026-03-31T14:44:11.681103Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.publishCommittee(..) +[CIPHER] [cn4] 2026-03-31T14:44:11.683048Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), origin_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), seq: 102, ts: 32742385077734327638646836294196993, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-03-31T14:44:11.683061Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), origin_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), seq: 18, ts: 32742385077748605418559886735726821, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:44:11.686611Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), origin_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), seq: 102, ts: 32742385077728590701239911680542561, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:44:11.686629Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), origin_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), seq: 102, ts: 32742385077735010168177563576500293, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-03-31T14:44:11.686732Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), origin_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), seq: 18, ts: 32742385077748550078327663998695740, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:44:12.710761Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 31, ts: 32742385096711655412148492025868637, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:44:12.710754Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32742385096711452497963684938260225, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:44:12.710754Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32742385096711434051219610285606753, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:44:12.711237Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 19, ts: 32742385096719292364195009137899836, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:44:12.711389Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 19, ts: 32742385096723295307659005718976741, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:44:12.716248Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32742385096733902185501389491470405, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] PUBLISHING PRIVATE INPUT +[TEST] ENCRYPTING NUMBERS +[TEST] +[SERVER] 📝 Input Published for E3 0: index 0 +[SERVER] 📡 Fetching E3 data from contract... +[SERVER] ✅ Received E3 data from contract. +[SERVER] 🎯 Committee Published for: 0, expiration: 1774968522 +[SERVER] 📥 Setting up session for E3 0... +[SERVER] 📊 E3 0 now has 1 inputs +[SERVER] ⏰ Scheduling E3 0 processing in 268 seconds... +[SERVER] 📝 Input Published for E3 0: index 1 +[SERVER] 📊 E3 0 now has 2 inputs +[CIPHER] [ag] 2026-03-31T14:44:19.047438Z  INFO e3_evm::ciphernode_registry_sol: Committee published to registry tx=0x2df4d0822f7f9ab3b140c141672670cfb6f00f5924a9fa78d16b6eed5424214a +[SERVER] 📊 Processing E3 session 0 with 2 inputs +[SERVER] 🔄 Calling FHE runner for E3 0... +[SERVER] payload: +[SERVER] {"e3_id":0,"params":"0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000ffffee0010000000000000000000000000000000000000000000000000000000ffffc400100000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000","ciphertext_inputs":[["0x0a8a2408021080041a8024cf724fbb12a414e3e19510b9cd51959009a5fb4e290a44af61a5adfa7181aa0b380e72a6811086d2d21df243ab8ada507162441a4d5a9cc126478c3368e0b07a4dea9b09fa7cb6cb5f9c4497c46271c0b63a8e12b629887c43e86015878a98c5e7a9b87c253f9c6a8894ed72ef4e751ac0e39c15df72dabb360d9074e9b0e99fb0162fb725cfd07cb4d6f1a2b2c9f391ce5fae4155cd497c2d2361f471a1f726076533b86547feee1684cd783fa420bedaad525777bea368e6daace94a8277fc81e57c55b5bbb69c73032e2f5f881d85e5b9d8aac5b3107afc14c4e4d7bda25cfb0867921c5bec9655d5a19bb8e5c086f66256e5081efa17ac53d5dde7a62d6aace9ff0b6b2deb8b5d99f86947b51c87df07e224ad30b0c67015b420182bfe6dbda49eea65629a19125729befe5d6a0856d874b1bac944ced5218033a3489e4abda6b410d3a574c2e5f9fcc9c735a59dbeccc146f3ae218ca53e691face45a21fb6547e88ae5e71ebde9fc6f8c364ffdd66f9d1ec704fb1941952832c8123471472a54af12db75396251d5b9196fd653bc0687e9f171d6fa10175abcb45385ee3bcdff0fb06b09a2c86539225b78c7f79af204dd8af762b2a8678b4fb0ee8f59cf529d5a56d302d0dfe92a2a242b221cbb55ba5f337fce5ee56c0cf8a4eb2a0cf11d940f8319166deb58e079b18955a569fa08ccc1b8854427618009553347026c443608b4fe6c3d6e609adfe79240c9649bb27355922849f19c01cbfc28ce5042fb842da0c2fd8ac98faa36ecd9a84e32c998bfff9ec1d96bb022166c22d203b7c48140f4ebda5582148e63c58f425a6c5ee3fb2e61b3556d36dc83731580245748e916bbdd568d373a66f3864ab496c4dfb374cfc3f63fe51500fdbf813f5093464db770dda24d28a460a311c2f10cd4a10f76c86125d938c57acaaa347f1ff1f7f0de46bab7d8156e43c2fceca3f67ad7e28fd85481035735113194edfdc21c90382815cc3e528e9400891a6f2ded17bc4785d3f38d5a60ba08e732790140af99c84e67820af152927543d84a10f2f293a53739d35c07a87e3bcda509e5e072aa17b595c3cead110ed68b875f30fa3c0bf7ff4daf070f74133a294efb1009ac6e6a59d58b95e67c8d74e3329c50776a82f4fae1354654a25f0b29a7975380774d1bd3de2cb19f77cefa62ef3f1fa7d8ec44db11c58f11899de5c9f9362b0617d17033c67670063d90d34873dac81efc56c08c08655f8df563644f015b10228687216005d185c5aa1e4f4a6226031cc911558f4618eaf7ca1a2180546c3724959d6034bb41ec1cb90d557ad077af0f1509c9349f270960d9c2167453422061a2fb1e75078850e44acd956733a4c3cb0960244a9ff54c79af09e9090d2298c985941bf79cf959df9bd25c03263aff9fd9278480fd9b6694c619ea3c131045bef9af7848967a95c6a2cc47a78651e1c18bf7128a7adc7e9b4c078c03e538d96d08dabba0e29138f8fd541a44edece7db502fa53fcaf683bfff05a74e6173a7559796a2535ba9922a4771fcce74866b7032fc296db605634bb08e96dfb74cebc483396179add759e3f6aaaca3ad0a8cea824ee37fa75f8b3d1f92c0df94399764368dc0e99114bce15a55ef158274e8f258b7a46b9c9699f1ca38ff74e5130e293b609882f59aa1111eab9cea4ae4330bf37b12e8e6b116275518ecb174f1fa94a9e8833c3a4e3dfc86b940f63f099b14a8e379401dce4c69626a47affc8a18f76370dfe80001388b7070ad25ac1376076fb0350a45f75033624cc502ab7fc37292b0dead7758d155389aba09b71e42ef043c8c261d29421ab092e081365db6e4933512bdedd31ed90de6ffe1b9181fc2fc221a8806cf38af8f377197279ded3bceeeaba57b23d1783319e96dafa956722445f59e75acf7adb0253aa22a385620c1c5196ab767195559b5ec3f1a0dc9a1644523f2606fddb280f9860cfe34d40189007a30a77010fd5f1c9f013cc187f55c951848456e26a92dfc42a791cdad842b150c839a9dda100e921d78d87f1ada14aa6820a08aa4caef8646a14147073bd16f85eb73a15895688d14fba18f102ce1b42266b2367a1c13f8a4de1d549c6db3b2757f05719040d57686cf240dbf5880a8e8edf2a9a4f48677b2b08b28b4b80254cefac47aa4242ab6771510d0bc3720411df3f7f91839ee0be9dc18dbd0778d0bf6ce93ff8895ce21b12a89fa1f00a44237313615c308d7088cc56ecc5d80691b26293faf387bf0b8fb4fefdfbb87177e690257cf211f3c2f50956fa6c43862a43571da648279b177558da3bb079d587507bc3a8de6303d88f5880580b1e7bfd5b218acfc5d99c58243985ef97b198e966424d85c3726491bcb7836c32b1521c0fc5021cf49818c6d51c7a1500b7f034bb586d753c5e7e54c4331f5c929ce603579dce0d8bb3d14fcf0d817edd614464f8330557574121e0806d7b5cfb6db244349baa199e346900f7e83d311261c6edc462410cb34c4275d86083411c9cac8bd7d6b2cc8e9f70dd42d10025804029a80e0527ed068444a64d7d92cd7cd9ecb5993b053db33045faf46b7ca7205c9128748e7a0923356d53bff97f59e278819ff8389918fe3db95b7dca48e5a0d687d68d7368f65259bc7cece16e01afc5d4fad313054f11b8c2221aee9eec4f51989ed9a3ad7da1e35b2d37eff7e26b822959c1368b00120441e6fc5e07a0667bc7f2856b8e9802a60654bdf0df1a0155dd01cb356d2f9ee7a50919f1231c5e95e0e9a25040a10e55ac6ba6ceb303e64a294d99214c92da85940ac5ce5cfebbf5aefb96ef1178068727545a8ee987a815fdbd823c1b8d59a861c04cf8318bc3c51f9172441258494f8f9da7dd5f7e9e97baa96861674c0c885e5d3e882e263891804adac8ee261ef86b7400387672c18e9393dea2ddca4abaebf9d02cc51d332581441027a2137f122f51a87592c94ea5d9a3ea03ed32639c3a376014d507b2076ee149f09353cf07db265bd73db3ba3cec18b178dd2b1682711dada7a11e522aa77967298bfcc1b6eb0d5cc749076e1cee48c446d70a0f1c1d32b24adedeffcb9e0ba548f1575180f1509b90a2d1250033fdc85535ecc1bf3a00aec3d67f91b277ed16dc999d9a2e28e6f8f7bdbfe6064bbb392e8f96d49ad4128aff965d0da5b463d8ee5e92d7253820c48fa25889d7cf5183b9389421f452fe45afbb1e8e91051cd610eef7075b342b178e97e523224665e5a6db311f6ea41e9c47fcb03ecff0b058b6ce5af595e3afdd97f6db688e5b7de6ac2a5f38bc3c6b33ed3a661d9dd88a8b0ac1039e20ca4a91fa0fa2ffecab367f430053f1d775e34907be73c99f26adc52380b8d73a45f1d6fb080e0172514394db0426918c0568c84d266e66d57e7a6b45fe0e20cd676897bd9e3e92ad00b47c54f746d679719b31cdfec8ddcae85e03ab7b2e2fa7aa46704f0f8e8259df1b369ce22e9272a95ad46a112fd62507f2377c69a7e5d8272014bbd20a3f1c7e369a6043007e3734f26e738a40eec5d26f21e214faa8389efebb20e39f28d76d373963897bd751a9d872d6714b616c89a614f8b4befa3338d0eb241f933921170c32fb1a88c39eb44e492c01107241755233ce7eda478ccab7287d9ff0e4458c810eb6978b7f0208a08d20f096f579859e5e971a91e71d449180c1297a3e797b08169a7343d913b8f67de3d39aa5d61257a30e426425878ea782cd10933495f1ba00f76a413364f2ee2c87c901ffdf3012718ad19cc17a92483677b15c604f4b71a59671de27a02ae9c94f6b7e1333e899a80279c74f072d93e6307d3004878e746f7665ea1237b8d00bb626cff7e4ad8cf2a9892fc2bc86775604fa80d861b8e93e68991bd6db6a5135db02732970b9305663def6b6f90bf244c5a147dcff0d4e6eef11db59c24422f5700591a1d05e2efa10e45f3606ec2c8c228648194c4f88ddce6c1c68a1b95910efaef38ff9006ec36dbd4b2d506861dccc3ad64b5ff50525d92d9340081d64f6145658719d7a8987182c5b6486d7b9e6d9c838c14422fbacc4c1cb7600542f81f33d0fc9e14ec8f58c88059dd901bc97939568cb5d2ef530c999efe166100c6386603bf02a31ea82f80a481ccb52e90ae811d4de32bfefa8609995057451348b077680b1a07de80762d9ad386a4fcffb5ea7fbeda5d80f90614193dd190c9c0cd287ead2bc08c6cb677be738023f56f8f94bb5b29dc7a36d5351c2ba97670053b9e775203cce5174391c4b154a0f9ccdedfa808f995c6ab47bc1da374b4308389dbda0e577777e1436129fceb9c9193388ae543c891d2308cc2bb83cb7e2d82f066a04812ee24c5ecf7b8012a5169b9a0c6e094e00e28113209ee5ede9409d3f007193ca4f65f2e062410dfe8337b059d1a8fa10591995f5344a9dfa97a2c52def1dc432d02addb42210ccd18f63fc8d6f420815551b26600979f72bc5e739a448ad9302569a027c5bab08267e945acba2f8e4c6932731231d55edd4cc4d3048062f5f4df6b63175966c931ab5a72a68044a6addcc876a5d61e9eaa11c395da812c71048654d7e56f6619b32d3cb45da75d4ed39d113819ad3c1fd2f0199896635f70cca58552c5ef2727cfc788cd202bbb8fbbc98573431a2574c24e90ac09b69e6d5414272885da48a1051fbcf60c4031f21c0bf9b7da98201fdf7280b3ff00d7804f4f75ac07d00f9181fbed3a8b105506235023617186b035337a5c5db5c227e0e519766e7d7bd86522e89196e4ccb580ca7a19c848ce7f3dc1c7b03ae1428b516754dc7faecb9f575088538d3f2b56a43863931da34459edbc1a9f509b6c80bc5c9132e1528be381c359e60fdc3d6bac4651b19cdb3b17fefa28cbba477b13128096a8dcd14454638ccdef1fdaf1a865eb1cfa9acd55de517b8ee367bf5e0f555c76077ea0851fddc1e22bec61680762e5864acc6b49684600fd044a544c464855c6c8b8efb4c129482c4d1813258e536a3f65599c985eddb69adde245dc7c44c997833dd04d26bbe1bc452a4d325d0174a158c02f5162e3a2addb5c2de06de31dc4138a1a79a30a7886884d1f1dc346311f274cbbb87e957c4b98e82469b89d9db71fb927c36aec1ccab7be22b76ba2e94bbe4b65b2d9bb78aaab188d3b8b426b2016d48d865ac98b03750bb4631dd88a0938a2d4dd5fa8de0b1ce9b3870febcc1e7c7886fc19df187658309e0d41392cf0c54783d2fb4bcd1fe9532b81a76ad47855ced3e11a48bfbbbffb6c4a544fe25520a0d3dce5447db8dd4b2b9952950a9435e9605d8df197c3a1e74fc9b49290917c595b2bc1183aae068226d1de50843d51516b98d06c1dcc8c8c8f31f77f62286a95a88388e48277df39af1f160f7fa1bbfe76a6e023b50d2bc334084de40cdc5fb4237ee87c3c36a5a5805635285ea89be89384fa9289b5a7acadeb028fdd726a553250d9dcabf6efc7b00cc78396a637154ba546f12b3ece232c2ab698f5d84e37d5946e5ddd7a43d49602e1f03805bc86c648c8106452dfc488d3ecc75f9f9827c44e1a4a32961a1acf624792b807e80bbdfc7e45d154a61a8c9213930b69ff9b045e386c8f76cd211e672274c7b960b9927d475ba3c42816babc25af898827d548ab489cf4e74d95446f2c575581ef6302816c979bdb24af5c85dc8126de4b3e4e200928d37d96f02b1d5b984b5c40fcef77e86eb54b7ffe27c3eda47713139b13511eb4d0063f7c51b00ae944197f0cc4cfe8291337fc25ebd7ef1c549bd1963ec4b042a3d4f9fade51abb5008665fd5a46016dde7ece22337a3f37a07533b12e7ac12d09f85901a9a7eacf60c65091f30f39c19a389b06b84cd1a2d3517f429543a5b31a9f1df18e5f8abc7fb6e8e92404c6c03914b2d03f5f3ed69fc2e58d29059646e9a48dd9257918eef91e806b7d6763d38019158a0bf0437fd8b12f4d9ed719f8bc9ac4ea6b744b2a7a5efc7e74039a2c1714cafb93b2c138e3b9870deef9473ee520b525deb221552867aad1358bb2c568574cf3de4d5c2e9957d9bb7325501a3691de0c056cb23240b58aa6706b25b26b75a1ebdd2427bac296f433719615c46df8a8a7c7308d0522ee3753178861a0b8ccd1077f7652b6da6c47662554a5562a4a16422171d0d061751b5182d4206ecfe0719f20c5134444323215d81abd3104b0f6942ebc0c7b11c447610de678555174ae6ebfb5aab011eab79f00fcb69642be2d594f16b2ce5d36fb8cb3bcc3574bb2e17c9199ed516f30aa4b795b8746ff0529f502a22739422be1be142b57464501ad50623dd3fedd686f32a9db592c58d65ce1306c1bb48fada354c2d57a11ca4461aa68333cb46def92ebee72f2315c122de45299d9bb067cdbf201610ae54230eecc46b633a403914339fdc6c9de42c7da3ba1f9357308f463eb96dfb730c425643e68ec271391948d2f13edb6ab583985f213028c960d5ff7c9535536f2af660d8f198b3364a2a6b920010a8a2408021080041a80245535610ea61a170ad1fc09783e5924b26a430ca091f091d19241f0a98ed4803bda2ca210f0714ff4e133d341b4ce6854508ee6a7aed673cd6f4e9ac6a5ef89cf217b91516df86de2985c7f46891b86e725a5b770eb80e9cfc916523bfbf8850e44854d462e8a50ecc67c0f16208afa46f6e8d779e77b23f4f4dc52d319ba5f5b3bfea4a27b14831d32fe3650ffebd524b2f838ec704a9314e3c7a6b070e62598307a3a9fdd5db895b0adacc788beb0507878a7fc52398dff4af6ea261ad9f32fd1234de430e3dd43ddbda52198559858413c6794b9f5d40c70e5ff67e0016151cfdcf8b0753ca04afc5be9e325c189177c154017376008bc07b815f7675710649126e359f1b54c797afae9d0a5fda062991631f9962dec0714998398f627e7a1c30e9055348420b073c918dce321d6d38ee0b8ce8a298059196f2f054f8332cb516adb18a9a8674c49e4933ea22d2444f147abc0a2ae8dc2a5bb8b131094b75ed2c55d045e8027228fcbebe471c4fac9285b7a519c5e7ea32d5cbac505f4a32949e8e4522e74c46f6f4790a358f8993f087bcdf84688a89767306434f8762ea823ea41e0418ccd5e138f78573cd7bcc3ef8ce753feddd2e650057eafd274d138740349f226106e8badab6340f39fd55d01e0c9b782ef0a851983ab0d7a4c5cd3dc4b240f0ded9e931bef82053601b6b054255354044b2dad7ceb0946acf8e1d42e67585da8dce4e3b8f46cf90606bc30ad0cc421820fa04c3d005955eb5b7b786ac0ba623ee360591206c1dc5e7da8604641464b1f376c379c79e2b22bddde2fa5f057ea80be73d966592a54487e95de7402b658c7b6b63313cd90a64dcc8588c58840dcf60600797b4f49de2a116df63a17b426b2b0c4198f8ae6fafaee8c2618424cdaf0a464aa13e5c2ceee66a1cdba4f2705d1224eba572d846dd414e75d37c1c16949b9cf7090a23a2ab56b6a479ad698029d6725365be5daf236f2a32e15abf30099c70fd61554d334cd4593abe9fb7a74f303253c7294e56389c7ed881430ea4e7c5ec1177620959fd2ae4413328a063ad6036504512be08e9edfffac0f627bed02a5439e37e66e58a254da629dfbf4e5cf08c55d134354e0a724a4ea37a1b73f119eef26ea33d3ac81d71f688cd7e674d0c584ddee9af41d7af956b388d41e3ad563a5981bdf5a1fa7c14ba771d7f3484d477c9bb65995226be638495a1bcb6c0b3507025dbe48e17dfc0b16289de0712a738fdd397a18bef047be72e995f8e776663471c7d47c137a525d636ecbadf6bc4621f938d23e027ba65ffc82c44a5bd338dfca5f74cfd2ce8d9efbae7e2b87e6dc0b848280fd147d182c520aacdbc6f79eaf7b69058044b11e104b925cdca57a83502719a4e4512a147f9dc7369632569ed38aec94a4fbe3c84e1ea403ec8ee4767fb7604ce1270a190092cf3e5e1b747b66be457536cd4a579fe2224e8496c68c614c3f3625bf038e5e20062970b9c7ca4407a2fd3fbd13d09676051cf879afc847cbf39d97354260c5b813fb61db2a7dcce68f438dbaa006ca1c66aa2e81375ff25817dbd6a9424205e53ab155bb3b12f3f50f05cbb9038edf4cf241b319d4bde6177a32d93a8849c3cd1a7fb7604e5e3b26d62021132eb09159174fb191be798a0d3efe932586665dd4d41d8f6d84853b1b973bef642ec5d581439b19f5c8ea433a2b3834f50aa7be9d7297e9fc4642142abb30eccf9b2c3a5a903c71a40ccb57e6e2b7745a6bd1b701aace917a5f4fc190fe54f7fe133a5a0bd07637da5c7e90d751508cc13f612aafd4c29836530c3488ee1e100ad16a4eec0a797a3dd610d35a67901824ceda5ed9137d5fc70df37a662cbe4358e11c5099e7890374ba55a3361792eb64b0e7d13b741191578fbebde0c0f77bced0761b9d941d68aecc6300456de66c45a4ebcc6509d59292149ea7a4e10544e8cfe944f06e732019cf5197bd73c0d433b45847ac582c124bb0bb5181c5b367680b0b3aa4be6f2db299f7bc77f831975a6a093e9e811b3e0b5a36f2b903c8c2b50bb5d173d223f818f3789212db372203443db2daebd6385bac62945da6c19ccef9a3e6e35540b29a2da1ae6dbb573f96d8a6b4f3eff0dfaf8e98c4f2ff12bf77a2509400df5bb2e3b5e4917c42c0c8846c914d431414173ee71a392210dcce69843e833f50c24b7926ae47a4ef0d93dec374514ce712c5c851f081c54d0d92b41aa9134a31a4afbf57ab87ecf48dd48f96a4067950d13f9de4a49fb1bd334fe924a4f03c1efc323ff964e1fb4f0bf21a9e0e3a7b53e68a25d4c4bf2d1dc5eadfbe6e534080c7211af9d69aa26d37ff3eeae2bc17ff923f8e4bf37d0fb94fcc2e01e902e48e5c85a30943ad31f38c851560c7125d0fa0715501435df8f6c55632d1ef4448bc308d6a5fe93a29d0993275bc883df48eab26435dc72e0844cb560b9c9eacc35edfb654f893a00492eb3abe70a43232f427785ad70cef1a22e9dbda55572006667b8a7646fd845f4f9917652217c7962ec86506611bbda5c2b8145ba24f697d8e3406f70a26ba436c2e7d1323bbbdba8a032e838a84f693d52a239ddccddf90b45697dd0e4bdb0f05594becba4b50aa06017b32af21b6bdd022e0d6a31d3d35514b93f3767c95c58083775a23f05447223abf05e9432183295ae35359419c5d4167ce02d5f967f33596ec4ced74b8b09e04fd093f555dc670ab6cd013948a5631e8b1bd2b816e4dbfbbcdb96db6d1e1d602d8410a4709da9892aad2290f57fbbcae0c449c576ec379e016a9aa8ac8257ff354394666b8672e65144c9cf8f3098f47d451b1d34fb5bd8bf4c1cc1bad118cfd935e02311722e8101b231fd62047231c93d7ca2df0d7fce0688d8b41b4acf3b09e56bbd2373f9cf34f9fd2b0b9bbc2f07c0a9a551f5a149b37ba9daf3b9f68ee13b2eef64ff6d691b365b2def15b254d685a372a49191e94afe1fe405eb451019b18131868b88b0bb7ff08c77941d2d6628f33abb941107fdef73062613deac823c6a2f559c24c542667c8c3ad5f6f2abfcf025cda9b88200fb3e11b133f66c27d1cbb058b0984d2b8b955587de1021b39c715400c07c87ed89f6fecb0adcb9f604e9c740315de819a589dece92763b07bcc55a768011aa034eaf701cf50207185c78b8b5bccdd0ea6c2671d264aa6cf28b83d13042a6a6528bdddce8c1ed188ff5f1de57587124a3a896458645dc5092ff896d9f053034fbb42d62ae8e2a07f342e168c7f81f2e31ca6cfdb96f092910a5a07665a2c0c76f19f2b279f99d96115c3b77490d162936b5f028c03fcd56943507346f4f6fed8a6b4417e9104dd92829e9604fe686c0cad8087000ce3e85960cde9a9d34da8ec22441c7ba046f63a70ce7b12fd3510e1c309fc6c9d0449fe94fef3f40c73b24c406e1c6eb0b547f178213454ef5b44aeb2f20dcd237ca9b317e9e0795c1e55591e95c2108d3c63f09259bd72da954fa845470f63ad675b65416162b2d51961a1421eb4957d08cc9f8e46d530e0def22ed61c42c4c3b2727f336bb0ab1215a3bb61ecf10b1daf9b0307f9d7e3ab7cc79ef1b3a821a3c165bfce3d83a7c29ebfd084b5bd554d7251e55f8f8555a06f2f3c698635e2e90bb7e7a6196409d88093d44b3ad3500495889d50598ad8ec9171dcf8894f4e15cd42e9efbc285204c272aa5d512bf4c44e548a65dc698105d372fff5d1144d8c1afae855112ae39784f88890c46900ea35ce83b45bab2ec02872938300b3330baebed529960946b19f50f945c81d185d36588e9849afa1ae706f51a62e08c5512dd24c37959c99723742f3ce0628ad8106c7155a83b0f0d34a1b0d3a87a34fc92a49409aeb3062c0fc0119233577a674ea8bcbb253f7aef016da6d2ad9b63ecfe790553bf6a553914448c5dc14dc2c8443bc6ca2b0ccd589f1589c29a7cadb8507c433783822d671ee02f078bb8b569a2fb1017086c2f5aac40dfab07ace907aa19ca2b94c50214231fd42ef403709cf386f3721c3de28f3a00a66f5d5db95cf7746ccb229e3f22b7ca630e54ce839eb3725221cf7cff4f199f0ab3a3cf0043e14b24de4982d7b6beba9a229f5ba41f968c9c072359e621b059f2a7551cda72af7c4275593e0ef93815bedb1f5192af22dab8d0bc07235c54ffe728ecfff6e138ed3743c30f332244da04522ab9b5756937ab8f3c72f2b3cd16ad39becf721a1024529d74be63fc61035279e78e4b885a1f4db9aa4995f89b30f909a288ca531da90f5ede198f0f36a9327c186207a22bade63b2b26b2bb11b2a29ccea4ea8c3bb8b6976401a40ee193ddeacc43513be327f4223c0c0974aa3c4d6f4d3d9b8fcedde64624f7623e6cb196ee53539d366bdca099f68083526cb66e6f562ba1a9a03387d2cb369d54146bf2da01d908737a0b6531393751ff96df5fc59224e11144a67d29db358e207a0902a2d8735ad7fdcce327cabe42a0142d8c2e3db42429166e1583591341ca29ddef2a82237ee3029b98077b93350c7df740b98e71c2fe434186f3008bc8056bb01343a4b4ec162ba278d0431250ed929ca3cad7e356f9a74b3fb85901fd44cd2326696d3451f3581d589ac7c6d21855fee546cc30726dfc39eb383560e3e987334d224bc9e30f8d1186f6f708a74c00071fbccb2add53025609bc67d2e7699134aeb4a35e59a6e53cc415ce62659d70dc8abf64ccbf1280eb864fbd20304fb1b5e57d5a172e9da6b96e81eb1c5c7626fc41c9558b80ec53514e85746bd1deb9c3728b2ad4b59f12e533d07405554649e0a05b7a6761509e5f6388b6eacc6f0b1043f8f3e019c7eca337271e7083117e03f47ca05655e38a1d00982815151769ca6182fee5a09d074557e499317ef32318e3917c00ba730f6f4564d060fb064017b5a10ea93fe8ac3e8016eda0737f60e2b98715487de00455ebd0cc043064a8d84b32be7c6797eda13bd264579231286fa76f93a6cea35f702afd75872d444abd1e10264384b2fb3f2d668e20a12a779ec6cb011ed29b7e44cfcac85627942b4229221cee37adb7ad86bdf2ce9c18ff5f04d93376bcc24f028ee2521edddd94a5f4235c4e85cdbaa33a2fa5568ac3863eb3b01fbaa36c90a8229e7551f8322be72f75b08e981a0b72ff10ee2b20d533e0cd89ac09e0017e495cba98979159974b4557227b63c4883db5697bad4690de5d15f73aa47b201b75dfa333c16723ad276edb8ee6744d60e28953808972d59ff968b6a3cc4194339d5a6453030ca7cf1f3bd024df2f91a925b47c1abf9964e7a74a6d553b697f5f049d99ce0f443876f2fbac8a5b1cea908b41dd830c56d8f58dc91ce0d759dc2cb22af4a830b5594d3a43962b244a6dc8ea1a55dc3d6786b50656d47491ff80fdab7672a9ec8390fb32aa2ced743f3ba27d8ca58ae57eae5247cae00694e9ea2abc4020489d573c8bf578977ed0ee3db7b5f1dbad2266c09248c58f2e2381286b63e280bee3d2b398631b1c3510983a22a0aebaba1596a734d4fe0f9a90c4bf2eafa2ac797d3e51edfe2d4af0b753612427bf61a7ba29a183b39d4f4936d60c2851bdca030be431e480e3740497f2caa6742032df2fbe60835c2c318447b20b2d6cb3cf7a811ae1253a173bb5ce66eaa7ae49c225de1354fdf1242620d376e54b0002feaaeb5c6099cb8885afdf0103c80decc7bfdf943d5a6a215e4113288c5cf9fbed7cfc20cc29a49890bf3d004f2c47fe9828db1f98f3d839f7c601c8290916e6e442fa49ee60250c028f300f2b52b16e2c52f1f933b3f692bf27d75bda7edd3a0d21841855ee5057cdbf383ea3fdb2035f831b0cdbd510f0f0b925ef042badd194da2d11627a6d5492b167a4d6048cf7bc5c2f88ce3f13647f3525cf19bfb89079aea0ab7c3f9abe35a83acea41b58d1d6a12b394d03ea4930de27bf9fd2b2a59c90e9c9c98504536c416acd935b6fd4803aec2e959caaa7ab608cc80dfa9f3274d478671ce0df30f9f82bcc2322df84c8689f8e3526f18941f3a1dfe5a8b3486db59e74e0231dd360ca6132cc5114656f5d6766ec691a85791a8cee527da5f1671ccc75dc057bede2986c0a8ff4406328a5f42b84dcf32e9e1098f8349a2ed02a42015a12ea2f590b2c75449a67c440070f2fe03a0d2aa593e6288501531ab5e3a3e3b3eb26a892ec33a010a77924dcdd0793ada6512cd790860d1d953bd802ccf059ceb1597dd7cbe94e96ba89350e360cb1f0464b6aeaf5d824bf0855b8d97c5adc27de06a5c190580596ec35799cfb69021b5045d6c6603daf0f41428e167a2c5bd8cab45c8b953a44a8ade858a6eeeb6ddf61f63a9643926fc21e76ec67e0dfe6783f6a8a14cba1835ab722f9ecb394da81c0bc409978244c3a474b18a320b041f256caaff421a33f782630b9929969868ec8767919fb10b54792aa7355bc12cf3a288889e0dc12d6fd0721b99ab6e6f5244b381fb83a367b6cbb14b3b988dbe043e65f102afcada3ff49e642001",0],["0x0a8a2408021080041a8024f91968a3a13ae388c0dc4c9263264abd7fb75077d628f580339133710f4e73a950812815d6ed746404a3ad32857840f6834385fff3071d7a90e6342643dafe39f12dc79ed78e8ee9689ca83a06803da74c66a6aa2f85463b8bcfe08688a1d33b20ada03d2bdb84116655c07b4761bcb2f894b47a0d48f817187ddb3232654ad99bd9382b39fb78d48e635729536fcf0b8c33926f66aaf8482bfd135402a95721931e3d17cbf084591de135368a16a3c1d9e70d39c56fcf087ef4abfa041d311770aff936182f0619b1bb49744dca9e4512675997a100c4bc2d3a1ee22ea75c39ebbd83c5a326b75d79d9cd9157460f65b0d559fa93009e52d30f6be6b15a981794f8c2ac3eb2a4799151ddce4e6130c6f945c1f33db1940f56dcc349018a541988121893ae3f2869f0f532c17da614c76d14ee80671b16c36a61f41ac04c3e9df1e496f1eed70debbb65e8ace73aa2c0e6d39865046f17d211f720a796cfb4d08eccb7ece034900cf8bb980b98e08a2f6eea01d57a00deea50ce76e1224c596b218e52540f49abaac909da5fd4df4c839d353e4f0d46abe2a28c00315706a8f601f8efff2dbac8ec9a6cd7629561fab7c38cc358debcf6e109b63cea22c7d6cdbaaa0837ee2e66e66c60247006f4cb4c98a8c1759a75e8fc68bc12df52602bc386a9dd4902b398ccd4c53922692cff9f8905b4cfc4afdf56b5c9518338559008f2cc59436708b1301ee8d6897a1cc395c1b2e4106fc3dd6ff25b8a03bce63cedf6d24f4919e0bb974305eafd9c02d4a953e7d86f58a39c963302ea2e22e2f0d6ee2d4a94fa075980944e72f2c02612b6e789ef21ef8ea046abe2c1929c5b2dc6f7cffba66460072a956421673bd6b45ef83ecff5ce68bf51f994794fb0f078ba223cf7d72c7912965ddc7d1d278c7ebf3957c5d54b95aac92b0fdca3dda57660988064a76dca7b21de8fb4ad3673872b46aff0d039dd0d8c3beb54af8eea81b9e911f9a37e76f74488f4598e065c3e07a80c304a9d6d7a1164f3e68b2abd8f3355819b4c1bcc7461bd9bd5af2fb4796b70546adb1c51b207d6172c4e940b26d5ef341e0398d014a9312f9dc8dba756389816883da5406b92ab80ff07629eebfc48157166ffbe49bb1458776d8b1d76c3bdfdb80bb3b5245ce73ca1f7dda592e019245ef0a844b2103bbca5c5da0cf1c3c742be250b320676674ac22d7de443825972c45426b95d89c5503eb83b5234a0c3c2e02cfff31e5c025f50a9b40c60b95c22df23b919493bd60d6f9e1db497242d97fe67d151fc56fd1bbae937a3bf975c3edf3ee216c12884512c38fba4d56f95b94d023e02724fd0633426828aba201627be4e204c83d7f8cfe06627211bb9dd2fc3d77eccc4422b701187103bebc028e74da14db6dca042ad7a733bbaaf537ee1d2a80447a088b508e4882be5000903e99e16c3e5dd002e408ff49b3ce8c0e279594d86c5cc7d5fa4f54714cb67111c17af06c20608fac8ca68f6e647bd0ea082f7e144eafc86f90086ba0d3a2dcd8e704b3d57ef136010b468fb18920e2b2f792b0a52534b25646206cd268bddeb954af7fa2ab24eb50b893c59cab93ce8b95b71fddf2a464c69213e254a9bcfa81917e4b36bb261416bde89ea9c2c31058513fad044ca42b0c4b7569f6b73970dea602e28329651ca45ee60266a7af1e4bc242f531934ed70b368e1c94d9f4c7e706bcaf5ace6a771bc906fd410642175a7e1440dcb5412e42c6c031cd8841bbd5a3f72d295836512acaf1b96a2ca851385d82a1c599d96d22190a6cf07e1afd26c6323aa70df3d71819e9241026275f2ad4992c6fcc691152b3c670fc6b98199408b4129c7fe24818768cae7a3a65a062c1dea551d63625a5f3f1acf854a162e0d71716035829cf8ed5c50660294e08b248656cf8072993712ebf29421b3d52cd231e80ca8b43ec224df31a6eb1d991e5c6cc2b04cb816d178e8d9dcf6205da108b92e6beb09ab2e20b82dc73aa209ebe66ddc0a3c922cab174aeebbd0e31f8f71307c4b8aae88167720ee49eee1df79d0a8a8b0143eae80fd3b68e2caf060e0a8cffd7156b4b4dc5a66f5cc2b6d1214aa0a622fd118fa442786701a6913b8e7a212b77cf1f03e6b88b80755da8e6047701af55df194e8448b581fd490333f75f1bb3775c4f53c81a3dea27a43c9d106a93d080557e678d7eeb98919f91643fbf9075f8d637e42c3b68083809f58907eb3386134d35592d20050fe1217ebd530735c26ae1574859b8569b4836bfa7328b49b23af5cd8861311470ee8ff3ff024f9d0e846be5007da32d0f8392c4c7bd9d9fdfc4da29c5c14f77b3471f0dd13bba1ff297e2979b84d962f4ea4bac38c7fa8543fcde7cd1b210f1f985e77dd8e842a618738b9d98786e2c8bae8a0429bf0eae23ba6e8d97a8546b38c148c46a2b7ddd1e168911aa90f3882dc31fd357db91c0de333af1898e1bbc78a51f68a636ea114e0e61ff8b4be9cf84374c5c3b1f376d4d6aea8585f03a731a88eef172eb0cc9e0d09388c9766eb0fead46afe2c4e0b1b04c91dbf83c369a884ddc98efa4429cf6eb3fd885c6be46737a46fb336650214ec496538189db66e801d4ce83e5f39f22fa75f2e03431398c9df31f850f28f937927d33adbb9a4774bbd834368265e576b1c82bf878ada7b536adf4e997e6879f532ddba215118a37234f981294509ba9e25b6eb03167eaeeb094ef88d16146de5886fe0970cb2654edb7b42dabef69512914df51dbec0e62a0e1f58d30236245d506d3c59ebc4040edae7d823917f3c4cc5476207d1bae77dff1d371dec65401453bc92402d26eada87a7ce790a9e9c7073a5ec9937dbf64c21eee20c8654004f119bf31692e64958bd119582f84d92f2b055eccd902e747e8bfc8a120deb227f7db05bbf9963cf125712ae626fa8195b02812cd86a6fd8b860d8bbd850032b5dd6435fdc8ef8ad062fc3814ed13540178d67ae4a0ee23560df9042732445fad3eb83ad7e7a2e68798965a856cdceb2f2aea32d3720a321d91f160acefafecc6bf85e3e0463cd00627269719167e9305bdd8dbe86a1be2e26f71302f3030fa347bec86c8116a441f01ef3bfb90063051fc9f61df826fbb2cc0d61a7f4c2fc2771b204706f74fc9bcd9f727d8690e950c9221f24b014d4e3e39e7ee42dc47485b38ea4e1377f04dd92f75f5ff76e784e30b84a2ab1a97fb44371703ad29bba1d98c832cfd7beed551378aaad1f751f2e1a4a92f1a7f8848b6556604d24c3811ed8061b267401e981d4e5aee76560eef84ccddd18913eb8b541ad1467a0e77054c03acd4f089e5729dcf1c277028cfa7b839f90812e259205d48a7a44402846f456b1af6ffb652b44f5ac18d7561949fbb6dc3d0729661a7b13c16a6bb98f6b11759f9624931743e000319713b6ab6332e42b0e37f4306dff60fe04e589f14be536aa45b1edf5c77eb54accb0b176a0f2c9e7a0301859ec79f8411bf738f5ad535255f71c347fbe13837d7a6cffb8abb4b64fc865831dabeaf90c8dc123df738d2eff8cd4f0784e822acce8e9ce67f133ed854891f9c0ab70f9a299441d62eabf14f33dbff16eaf3faa5aa0ce753d4dfbe36613df671b236df28c2af57734d50322e486d45003c03279de665501673a9c4c7969452f7a6f3de32c4bd099e2ef56fe14a90689ede6bfbe515515d07161a9739cc6865fc4801e2a87ed7c6bc287895e8e219d346e19a023b33165c71ea949f74be28d5989821de78eab01e885d968986e942ec88bea607ee78c4f6fc765d91d7d97cc850a6b9bceaea226e81885fcc3ec78cd5271bb5b3172ceadbfd39bd5a36574a113ffa8a98427c164598fb34bd6d897262b069d208be0c63f956507bbfc5b0a3b70402b9537366f59be25a391e772f0c93673f568140171263b240ed2265b299dabb697b91772daaed47d92b799e9be8e53c6de151fc618abc1a9fb019e11868fbe16d11cd1fa476053601bb481368b6801ba875bbec524281474b2113301bbdb2dad47d0bff6a30eca6ad542a8441304ff0dcd7f955cf16cd114c804e344bc820ebbd0be16fa3228ee7e82759eea4a4fff8df7d7f1a39c9aad87a77a6c4edc96cea28e8b06ec319309a819f173e8199d9a2bbe77d8278d17721666d585ec40e4dfcc7c5b8863108fcb5d9140e3cc2de4101d5096158950f9016ca6502f4b90dd9bdf1bb8dfecbc73f204377d170733a0d21b126318c82062733ed7aab4ea3f176ba814381660d0c335f246a1890e46d7df93421d5ca7bd447fe3891f0d8a544ad7b5565669102d08912b17405f346ab492a27add87c786e8a4201fe3dbd4c0fd94decbd76455224494e6d3967cc1e67fdfa5562c80d9cf62cd5372e2b7d51e1f53c638d9661eda183c3c2416d206a17977df4cfe0c2e86d526f869146d6142589fa512a33adf18e66b88c143a0a9b7f82669b3e60623dd079a6870eae998ef508b383b04ccfccdb4e2ec68020f06d40ccc9e2f1ad8f911c0b7115ef5c8ddf620b86e3d96e28a5e66006958c49b8bbb78bb2d406eea934051451f203f8bc4252902fcd4f3415c4f6028e49522371f490d2dd6eac01115dcf877b9f0bb475b5addbe94dd494c57967bd1d8db93b53eead38801257e5666587dd369726d98861e08c025c05be7b18809d0205afedf8b00338f19bfa33c882ae0ed10fda0fcb41e3332d4313361d1ccefe631c75eea3605fbb6df834683e595ff37ad4a78ef8ca2982ecc8c881bdbf81f96eb00bb6efc0f6d061fc77a9aa547db18188d65dda543b8017357e6102ecb6079b589559020c4476be84e6c8f5340fd9b1c21d731c066c33fecba16b4a10827bd5d47e27ff8e1f66f87d500061dbcd8da6720e18d22d716640dfe33de353c39a8c600068cb824ce933cc2a3b743e9ad431d69a62bd2b1ed4201501aa961d041bf0801942c0bd159351f8183aea5e67830f42f4f448e88816603ad8f513e48ef6acc9a81adf00d1ca57d1b4de4665f204ad53f165a1e306ebe4b1afe3b7592d03c94cf1a2890c9712934eaf13d538fab7f2bffda79a0fe4a86ea35661700f2208701d8e21f50f5807eb78e5d8b43f0d98298a5a4897f9d93ad46b0a1d5177c0769fa0bc5c41f3e80459df83d9572a753f2c0e639b652575fda8b0aadafadbba3e9072a47e2f9c16df858021dd3da794a870f3284c8ff8d8b5dc2bcaa3ac2c956a9edc8ebb95367c7f385423582b3a2005e4cb07264bf0e4446eaac57c76bda7b25e6b83fa2c83b1729340b418d933f09cd5c714db122ef893a8439a48ee9913c3d664eeec67b6a78809a0ac08040ebf948c732a2ef4a84ead067ccd236a0fc6702f5b6ba69aeae6511a45feebc801514943166f39934889fb42d80024644e4ae78e83042066002f2d6dce3677e6f00982803f653049567bf5f1c503d7dbfbc8a622c6a8567fcee1db4331bcc07e692fd138e497cd18476c88d683d60030a3eb7772df2ece383e73ae9830f1ba68031942ee10db966fbf89cf3cf499deee408e8bcc23b7ff19613c5025da0c5c8d82dcea370c4c319d93d0162274cdaeb20b75c27669dc97906e58bbf400561581731305591729ed9329e506d224dde0e455264efbeedc6e8195725abd9114efc50e86b4930ac2b9db02a9fb935e46fe89157d99ed5823a15e0f6319012159fc761483da0835c7c8ee411faca7c9fbf0081aba4a03116df1393970516721158f958de891dd7d5724a6800a5cc3664bbdfeec866f3b097b14ae4f16885e8ef0b3907b8d3f67f0804e5b668ce35e6d14b7eebe250ab7c2f8b9b88f835206fab2850562fe693dd7a6f083515cfdf1f4c776511e9d6ac8b27c2f05894a767ffacb4537a63ca7a352de9e2e9ace0ab9aaad7c0d6d811d91721ce62740e9601e79cfd6d6c064e2152f3cde64cef3f6e5d135db6e2c21280d362d8d1eb0a56a3ff714b420b732c60fad0c3e97db03531820e93ccf053cf0e4bcc4d52bdb9282cc22f44d64614bfa1834734376f03b9a299e47a305348528348109335f67519863aba594f37a816d2ed09c748a82065b71f3051e8d30feb14d93935e99efc4e46c9a933a7afca30134033ba1312545c2083a1dde65a71de30ff2f47c0900c7d1c120273947f00bdef4a85022787ef40345e1e1fa5d7492e1acf98b8a9d7900affc24840035212540231ca433adf63cc2c104e96fde9439ca456b452c62a542f59ac78b61da3d08e65f8c5ca4f14299fe38511db412ec4fd5abeb15a6e9aebaa99065c4f3017702786a5e77811c8b6ab77377b94563ba2242a9de1fcee6b105fdec37fb9abc78a4751600d511425610e3c17b4606fd75713c133d79268664c63dd5abc3f04146853268892133507fd4e2b8f09eece55c6cc58a6999703b16072f469b1827ee3906bc58d83fdf526d7a9d093abf0d7a6faa7790ffdaf2eb173e3119f2e565551ee26eda0f1a9c59cdaf3b3620e3dcc3d2c7f38b9f4c19757f1509acecd4280bebd93362620010a8a2408021080041a80240b7ec335838fc75d9c80cca5e807e6384c4b05100b56f82fefc1af9d4bc855c47a406ed7bd6884ee2a049beaf2bf840c981c6035c1061ae92cc3d8ebe15635c20ded06803e4377cece70bf08da4410cab92a704298316592e6403238e82267561743ff63d29cae853b3f4683a49a67d340972e070589173fba4c26931804cb3bb47fe220689b8ae3a1063f7a5209dddf10bcf458fcb134734e91b72d1da5a642ef38cb8e2d2fcf18589a7fa2d23a780114282ea4cc80e1d550c6ec7a2e3fd25e6d8deef3425112847a42ff4755acc3e21036c0180c5c110512094a23d5b87b71096a9afddb793234dd83693b2e1f4e2d1f1be4efc60a63c576b736e1aeff27807d5af3c262ad83c2cdc32c8a930453062b2c1236d14adaae62999c215e123570c11a905da7cdd994602c330a1af8810e4adff4df7cdd225927381ee9273f0a0ba7431587d2fdddf422923e11306d8db53624e3d4694a56ca1083528f28689fadf106ab73452c62656cf3f2652a449b541ef3a7065f88bc2a316954cf16bdf91c5dd95ee71787632006cd13bf6bac88548068c54fdf1bbecf131f5a4464e73c7d8d1d8e357c4e89e5ff36a91c114a6facb2b231866b9bb8fe92de137552f9d0703baaf11c6df697301377486797c586a1eff3415d5f47ada28d57f16ecc2e0e4d1f70f00896d864c3b87322ea51140b9743f633ded39612364f3eb8797fc69baff17237899e25b8ad3d34dfeed015463ff5d75446c45df9175f76b668a682a11b0fe797bfbf08d750e4d70d5ca08c0765b61f1d69d899dc3cfc25aa6f5bc072e010a69e3f20785009ce62d607e7e87acf0da7209942ba2814ac8133da864b660267c7e767f892f82a18fe4f2fce456ee2b55ac925ad911f29b91b7d47729fcdeadcb0209f600f415b8327a41be848817521848127c0bf30723eb741e7d9d704af72208087fc05d098d543ff7aa7c03770e2de9c62218d3ab816a6b6a8cef1501e50c4273f4285099bbccdab9f9da76184db49c09a3df2679439ec21ca9c7aefeca6477a4a4f988e92374b6068884e176b54ac88b4d747c311878d4bb2cc8cca9e14d03ad4ffe6f8722d89d98c1b522134b64cf05783fabcc178f296922ce1bd6c4d4059916479b4964c862f95313ebf2067d2bd53a018628618f117f2d21b9b8b20246bc36fb983ead8f31e7a99686591ae244133bf41b75bfa2016e1d2d6a6b8bcb6a24fd9e4c758dd561777e7eeae54983324268f135ca7f8809e9b217a85693c2e602d91d54e4a89f9257c6fd6534d4c520012c6e119150d9022947ffa043637af9c28bd571e5dfbca3347267e16ca227dad5061753912410e6ea3e5b6006b262b37173d761720eb1910cda36ae4b1cc0e3135bb135e0d55b77820ecfdfb4d55e8633fcb24fe3c00642d9afb83bc18bbbd65c7ce183752295bd76d6408412492b8f2936c4340792e03b49e3446b281da8619f59bd5c890d0a540840c82198db2d3c9ca509cdcc95d9e0d2039f4a5ee9d05a2c65d034cfbf93d212f2c9ca41cf8b17fba2ec3e3a5e584a461f414851b49477b91afdb80967d18e96ae0a9c66909e8752b3a115486e7463ebd37c67f72d3c5df89056702703500f16812e0148e0ac585dbc59e70dee609f3b2da0a9a775698dd06aaa864d95c3ce243e4d2b198e232cafebd665f1a1efe623bf92a2b46419733d950918f7e66a5513c264af09c374cb015535455639db36b8874dba5111a992ec57ff000d4e49bc7c869f2ec215cb1eefe0624a13447d4d5f2191723023b2235eec507c0278ad5616a6b6c8806316ccb25edcf5cd11761f3d5668f78df26aa009cbd8cf5514d61e11f8e9d44195cd33396c7bd67874938e89301f6f87208884f479d1caee129ad93178856fcb73f6a1194707bf5e675f097c32bbb42a2314634765723b6f7242adf92a17ec571d034b37d4d32f7381f3bd05b280ab7233ebc862ebd37aece78f6e49181f1a8ca8d009a8074c566599b0b22ad5c3d4cb297036673fec125f6198b55b5674bc7542988022d565cffe5851bfb5b075cb4887e79bca792a33fadc68315e797d0c8ff2781138806ac42ccfd9daab1e68ed0066af70e2b12d68fec5f31a4094dea5a1b2845a008cea376243c0fc6eaf4ac85b982fe200a6a8306c926d3173aa3a9796fb85ae5381dbbabce59af5bf95034a2ab53d50faac5a914681808a5cbb947bddb3ae91e77ff1a4411da259f93db713ae35883665d7c0ad948e6c9786a3c7acfad25471670493eafa41ec7a43a89cb5e316206669a2ed496a3ada84962de9ce7340d6801f3ebce45adb949ebd6234d9c229078a0081395c7db7fc1f3ef3dff99e7a863cfed6dd69d3c29c4a8019ff4f0ae36330c5c9bed82ef158c87cb4609720bcb1053540bb0e8d68e7e99b39e7614d0d3aad466885b7716f15f7bb9ce5ca86b0df3170f974f1e7d58c849b506eaa8637a106a0d59a507f623d53ac80690239984d8969b8ed33e84b6304abc060b74b615735358f7ffe39ab78e1b519e688c66942d4780a02f460d2187c30aec04e913dce24ddfbe7c79debe92fe93fd294dce81be2ca90778b5a6e27edc7abf644447d04242d4a2db1d9d5493ed47569a5b5901a97c7546e1d436863eb653262000ff0f522c7cee96ccc6cfb6b50270fcc5fbdb7922fb7ec94111e59baf77660bb0d8343b0bed2b5c93e656692dadc52325b86f024ac575618f1b3a90c832c7c33f27ec402e1d6556af841fecceeaef9511bb32240d666680c4e1328a916b58edcb5585fc1b5ae002a3443866d742c5b95d53d65958becd68a87c5d27368143be1edbfc24c51903bf6abcc0c4bed54eece8f25980d19325e4f73d0dbbb92e8ad625c611a33eb05e317a480e1ad509b01a647858b65eb7b1002030f9029e4fa9f15251b86a838b4c758d47b982d0d54b3d5d96533ba2d50e9bce82ff2d6eacc36ba7fcbe5d75a6f4c3a153715a2d3e0f58974adc17eee398e72df423b87ac4de59806a4f7fb8db36861b3564ac91b70e332bf0c69c87f216830c3bfc812631b91f13a1aaed3d7d8f26d26d77ca984542e159a271281010c9b46cd9d6e200fcc9c3aba0ed3bfada2b5e5b2305f068fcaf3a53912e7d7ce9e75fe4a6a116bd498857c25d07a08538bedd20785b4d62d46eff75c5275f709835e8507caeafd69016074c8182f08612c1b08620c6a0e0ae4d95a30365ce6718d0445cf1d0fc44c986a701a90d9e47fa8845d9b55ea1b9beceddc7bcc153e82f919204a92f558ddcde5340ea8fb3aafb94a9f257fb9d43ffa8f3af452b64f485356bfc01af7d2335c29e5fae3c89c57730ad1e0a31e5f9f8f8979daa88966e06e293d2c5421a03bfd63776244c2fae7ed11229cc4773889e1cc29717e87af570adae1f722f8103efed93e6de5ee5fbb7902efc00e1ae2955961f5e1bc4270a93570e4f9e82fce3a3f9482f6dee24087e14025fbaedd86fa8454e80f24c549eea81feef235ffc64abe93bd66a25fe8c3d8b63357e053539bf77e4ff9408ec2d6e371207690ebbafdde6776a037f5fb538433dd31ceb7585c2c7e68e4acf433fdf7544c4989a96e2db951e0952412a17344c2cdc6284a282539f2341007384c3c15a5df8fc0f83d346480eccd1d5ab5492dc54f2178d170f673b1715bf659240f7c866ac495b4aaefec3178cc59e851a1889f6a80e4108d5855b518c98da4142cebe3c4fa8a5e7cff0e369f2a58957dde04dbfb48f1d5721007e00ce8ad6b0b774670b811308fdb61cd35532b6f15b1d2f8a98f514c9ea843c4d84650594c61217e02bcf0ffe945f76f39da1c6997111d68757797bb4369ad232f6a3160bd16abdded3e13a6cdeb31aa2fa695ff752a5d281de2b23a5c3d0b1e8ce48383d2193dc67eb6624dbed8677cd148d44141fd466b13c950bcd81452316ed4188ba16c442e82d4578adb4390fd11921c2e0fc93a068f260fa834062230f76a05c5b5bbdd81c0f7e23392d76641586d5bae87adc0a8afd4351378dfbae75fcc7ef9275a3e3b7f4fc1402d8d1e058237caebc23cf5fc0da860b915c40a481d8aab0679c09012220eeb8e9b9ad2cf0dda855ac06d5411d6d392e2c4b4a2f08c68887869f6ba5e0ef7f035c131a2c50c734a630d40fdf75039e7092e7763f3b8c5602c183de6a5a006a7b442f78c25f15993f997d522650b1441088dcc222c2c8df554e43610e9db6e86b3903d3dbcc44643b005a79f6e71e2faf20e23dae0955e552956243aab3241a73fa84545502e078169127910a585acf1fa7c111736d821b0bf7468d1dc75638ad3390b8328f417d8fa6fe4879ffac08bfffb2cdd66a1ead83fd3a13a94d4b2f9af6561d1823cf85506972de476f296cca7ffa66267c50605ce19b9320ce58f387920e2c6dab7eec295bb82388097165f510517c5f09314758d3a987ae14bd81b4f0eb83bcc1c8c0e2a541dc1a953e9406ccc0a714cd4d608d4c7b6aa821039a69d41eb3618065bcecc0b86b1c673b7fad1f37e87f106d34bce9b24d0712c09a7bd520d04ebdd5601dc05a8cda254a07d50a46e7be435a811afd4d32df0d7b59da032792a5f427af479f474d108b7e710aeeb811e68b4fc1227fc9516c205bfc54b51644740ea0d320f96bce8824aca4c54708e87743010e6d98a5d435fc8722ead90d5fd7de7df6312cc3b20387e5f74f1a2cabe075af8c4cb875566219c601b7eb35b3b5daec6145a1a77bf5bfd5d152086a5dc3c97d36a6dbc7bdc0b52b10cdf97b8e2214cb444644052f02348233ff83dbb4f9dee6be6564eec22435b40d3ff2ca4ea2843d64eb75c71d8a2ca56855dde933a3df08f038ced74446a2e0cf85e4b1089cc398fa4e247853b915b46fc730159d5bd37bd8f37c5bf3c0219a2ada2f44ecf8a502ec261bb0e95e30f671aaab9adec0cd4e909a7f3ad3040026375ee8a43e024d8f931c510b20249d6303fa96bfaccb43203f15e24cfce4a41d2a66ca5ce38447acb3f42965a02db8ba32485385104716cc60ca52c8ef3e2c71e4d663eacc2e32aac05e348f6b04e0ecbe341ab46ac8ab6b13bf56fa9a8a2f4f91a145d2f259cae6e22276f53f4fc430cc399b03ef2150a9e086c60e06f4864c94936ef3212209782a4b7694794456b0fde43e4b0bf125d66a9c8eafc13803215247361256a88a7137817863f7a04b19f359d58e7211d70d47b97df894866c444d173470b063eb139486eb37650efd91db36e7e96d0c0940462139ed8efbb8106bcf5427b5db14837247bf026e31e5c8ed43e5a3423af096cf1194880b890bb6750dc4ddd2c133df20894a1d59f0084e997a3735860d778945cf765ce4f64afcc889d4ec05ed0abffd7730e45c08a89cf5450f46af845a18af3105879f04048323cf57f88faf7553e0b4450511d62f3526bff374be6455094e7262fe1aab9d3061f779ac05cbf7e07ebdb1afd21818b092faf9a8746126b11c0607e00e9e13961b0e5b2bb539bf147cba0445d18904f82074340210ee73bf22cd0ff4a7e243081de789f11f8178e0924fb4f9697515094a7f27e9d863d705cc3e0445b8960bd2291414c5eb9dbe26e53ff4e926a7c9b608bfeeb2f5675ecd25106041745a857309a16776a44f5a4b95e68db80fe2257ac38757edcf81f98df71828bf41a5b00b1bc5ef502c54fae3fea1061d5552e22990e27abde01b689015d5858e489251a55e711c18740b582bbd56c913d05af4bae77f5014dbd1050690d16ff8c4cf21a3a9feac6c2a8dc05b12106722dfc9918dec09394c7804e131ccc8f1f46b1b5eeb7c02ebe683808884e14fb64d3f0eb151a549afe8b4a6c1a130045bef9860d416e038e4b596b51d5f5ff314b17f318f478b692522429125947c411701771d7a8658fa121cde9cb326cc52b659bf9222a447e81ad8382c3e437f761a2b3714406c7a62d7ade43ce6a8ae505562abed545eb77ddf91d581a286fefffea3bfc45176b02aa58b90dc05a30a2f933eebae6f983fc6b2ec33cb3852b445b2898d3edab29358363d013829370b90cc30d80584fd249b545b86915b912da834062eaacd6db4806c95d861e1f9fcc2e748052f2771af3318055fc5ae39057b2cded17d0f43d0208e9df7d8718ca21534fee143b5ffc20a18a22f496ac9ce62bafd53cb65bbc4bacb7a82b00c47f99f3c8322f159138ffa03e1acbb4b7e1be4bbbef66d1c57b8bf36efe4d060cf5930f0a61ce72d90dba8095c60626f66e3fb0037d7caf7fef8ad4f582f3e86a34fa5dbdf120d920a3d0b035308a5646f9d315c6a4de9519768a4abc5d9c6199e8250994cb6e56a3a682fa4504f2d6f5dcdad408e81852fbe8028a408da4daca02827be8c938f1eabe34afc01f9a3ae3eb0a06e6afc5a78ee5de78ec7a847dc3fc5932199918a0c2c708194255d0696ea74743f5e54568a8db1d20e4df001909f61810fc376ec9a831d0bddba328d2930d479a5895ee454d7ebdbdd28fa6d49d72c5d6cc7123862e5cd37f918b3df5053f4862001",1]],"callback_url":"http://127.0.0.1:8080"} +[PROGRAM] Processing computation... +[PROGRAM] fhe_inputs.params = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 255, 254, 224, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 255, 252, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] +[PROGRAM] callback_url:http://127.0.0.1:8080 +[SERVER] ✓ FHE Runner accepted E3 0: { status: 'processing', e3_id: 0 } +[SERVER] ✅ E3 0 sent to FHE runner - awaiting callback +[PROGRAM] computation finished! +[PROGRAM] handling webhook delivery... +[PROGRAM] handle_webhook_delivery() +[PROGRAM] call_webhook() - status: Completed, ciphertext len: 9242, proof len: 11 +[PROGRAM] callback_url: http://127.0.0.1:8080 +[SERVER] 📨 Webhook received: +[SERVER] 🔄 Publishing output for E3 0... +[SERVER] ✅ Successfully completed E3 0 +[PROGRAM] Webhook response status: 200 OK +[PROGRAM] ✓ Webhook called successfully for E3 0 +[PROGRAM] ✓ Webhook sent successfully +[PROGRAM] ✓ Computation completed for E3 0 +[CIPHER] [cn5] 2026-03-31T14:48:43.693026Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 104, ts: 32742390095444970597845071794733125, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:48:43.693042Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 32, ts: 32742390095445690020863942720893277, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:48:43.693815Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 33, ts: 32742390095445837594816532397306205, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:48:43.693800Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32742390095445505553423208399734625, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:48:43.693023Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 20, ts: 32742390095446962846205030037616956, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:48:43.693901Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 21, ts: 32742390095447110420157619714029884, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:48:43.693163Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 104, ts: 32742390095444066707385459997810433, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:48:43.693880Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32742390095444509429243229027049217, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:48:43.693726Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32742390095445155065285808890249285, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:48:43.693016Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 104, ts: 32742390095445321085982471304218465, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:48:43.693944Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 20, ts: 32742390095457532830559267219069157, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:48:43.694796Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 21, ts: 32742390095457698851255930605033701, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } +[CIPHER] [cn5] 2026-03-31T14:48:43.698987Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(0)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7cf2b0466a88d94adbefcb7a1e9e9ef162e1e29f97bc2d4eeafd680f75673579), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 61, ts: 32742390095513094423709281168851013, aggregate_id: AggregateId(0), block: Some(613), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:48:43.700449Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(135)` +[CIPHER] [cn5] 2026-03-31T14:48:43.700458Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(0)`... +[CIPHER] [cn3] 2026-03-31T14:48:43.700888Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(1)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x26d13b6c04c8c464d4766f235262e6888d9eae50f01eef7cfe61338eeb2a6747), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 61, ts: 32742390095512651701851511167616865, aggregate_id: AggregateId(0), block: Some(613), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:48:43.701001Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(2)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1c8bf6d4c09b0f116ac6828d8ba0e28adedac03c5ef842bf8ad1f095ab3f781e), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 61, ts: 32742390095511212855813762765692673, aggregate_id: AggregateId(0), block: Some(613), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:48:43.702368Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(38)` +[CIPHER] [cn3] 2026-03-31T14:48:43.702377Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(1)`... +[CIPHER] [cn4] 2026-03-31T14:48:43.702444Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(150)` +[CIPHER] [cn4] 2026-03-31T14:48:43.702449Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(2)`... +[CIPHER] [cn5] 2026-03-31T14:48:43.733226Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... +[CIPHER] [cn5] 2026-03-31T14:48:43.733247Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... +[CIPHER] [cn5] 2026-03-31T14:48:43.733322Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... +[CIPHER] [cn5] 2026-03-31T14:48:43.733368Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(135) in 32.912125ms +[CIPHER] [cn5] 2026-03-31T14:48:43.733646Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc9e817caa4be223929ccdbd9cf31e970fb482a1c802632176b990b1830579c3a), causation_id: EventId(0x7cf2b0466a88d94adbefcb7a1e9e9ef162e1e29f97bc2d4eeafd680f75673579), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 106, ts: 32742390096200862829753468091301957, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:48:43.734116Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... +[CIPHER] [cn4] 2026-03-31T14:48:43.735607Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... +[CIPHER] [cn4] 2026-03-31T14:48:43.735618Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... +[CIPHER] [cn3] 2026-03-31T14:48:43.735653Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... +[CIPHER] [cn3] 2026-03-31T14:48:43.735663Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... +[CIPHER] [cn4] 2026-03-31T14:48:43.735688Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... +[CIPHER] [cn3] 2026-03-31T14:48:43.735729Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... +[CIPHER] [cn4] 2026-03-31T14:48:43.735732Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(150) in 33.283958ms +[CIPHER] [cn3] 2026-03-31T14:48:43.735789Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(38) in 33.411459ms +[CIPHER] [cn5] 2026-03-31T14:48:43.735231Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0x335ad6e46558c3d012d947422dfc4b6ddda96f79ca4c7966a4f53082768d5bd6), causation_id: EventId(0xc9e817caa4be223929ccdbd9cf31e970fb482a1c802632176b990b1830579c3a), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 107, ts: 32742390096213388168979516876849221, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:48:43.737687Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 +[CIPHER] [cn4] 2026-03-31T14:48:43.738573Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x434663b9677551f35a79d0bb598a9af1a6d33d77d6beb18ca19bc7a7fb899c84), causation_id: EventId(0x1c8bf6d4c09b0f116ac6828d8ba0e28adedac03c5ef842bf8ad1f095ab3f781e), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 106, ts: 32742390096243991317397800994086657, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:48:43.738597Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x6737758dd5b526298bf88cd44414303a519e469937b6b2764008781a2cf8e254), causation_id: EventId(0x26d13b6c04c8c464d4766f235262e6888d9eae50f01eef7cfe61338eeb2a6747), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 106, ts: 32742390096245928225525539553904481, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:48:43.739061Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... +[CIPHER] [cn4] 2026-03-31T14:48:43.739061Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... +[CIPHER] [cn5] 2026-03-31T14:48:43.738591Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbff61ca069039a4b9954c3ca0196eabe3aecd11d9f4df57f1d5c300252235e4a), causation_id: EventId(0x335ad6e46558c3d012d947422dfc4b6ddda96f79ca4c7966a4f53082768d5bd6), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 62, ts: 32742390096279279938810807395221573, aggregate_id: AggregateId(0), block: Some(613), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:48:43.741376Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(52)` +[CIPHER] [cn4] 2026-03-31T14:48:43.740618Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0x2cdab83857a3604994cf93abb70f93f9567cc441d86f2e93dc0d29fdc2e708cd), causation_id: EventId(0x434663b9677551f35a79d0bb598a9af1a6d33d77d6beb18ca19bc7a7fb899c84), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 107, ts: 32742390096304644211912157999800065, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:48:43.743342Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:48:43.740603Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0x662aca4a40cc029687968ccf4f311721f0f3b151c085a84e75dccdbaa8d7fd2f), causation_id: EventId(0x6737758dd5b526298bf88cd44414303a519e469937b6b2764008781a2cf8e254), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 107, ts: 32742390096304644211912157056698209, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:48:43.743532Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:48:43.743858Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1cca42c8a83afdf97cef721c7f0f35fb055f87cc7a00017c5ae2f7057a2d7753), causation_id: EventId(0x662aca4a40cc029687968ccf4f311721f0f3b151c085a84e75dccdbaa8d7fd2f), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 62, ts: 32742390096387101157921638752421729, aggregate_id: AggregateId(0), block: Some(613), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:48:43.746018Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(220)` +[CIPHER] [cn4] 2026-03-31T14:48:43.743850Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8a27d7faf3adc1a9ef75f0b0446376f5f167e6e347fcda516aed8d93446cca99), causation_id: EventId(0x2cdab83857a3604994cf93abb70f93f9567cc441d86f2e93dc0d29fdc2e708cd), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 62, ts: 32742390096383614723291708590268161, aggregate_id: AggregateId(0), block: Some(613), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:48:43.746109Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(156)` +[CIPHER] [cn4] 2026-03-31T14:48:45.467188Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn4] 2026-03-31T14:48:45.467364Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(156) in 1.721251959s +[CIPHER] [cn4] 2026-03-31T14:48:45.467676Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x15fe354d60cbc7d065fefa11b4a1430a06475177b960770459ee2104751a52e0), causation_id: EventId(0x8a27d7faf3adc1a9ef75f0b0446376f5f167e6e347fcda516aed8d93446cca99), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 108, ts: 32742390128186594716362145086971649, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:48:45.474431Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 2 (signer: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65) +[CIPHER] [cn4] 2026-03-31T14:48:45.474612Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x2cdab83857a3604994cf93abb70f93f9567cc441d86f2e93dc0d29fdc2e708cd), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 109, ts: 32742390128316607368593650006761217, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:48:45.477098Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0x2cdab83857a3604994cf93abb70f93f9567cc441d86f2e93dc0d29fdc2e708cd), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 110, ts: 32742390128317050090451419036000001, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn4] 2026-03-31T14:48:45.477214Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete +[CIPHER] [cn4] 2026-03-31T14:48:45.477135Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated +[CIPHER] [cn5] 2026-03-31T14:48:45.486493Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), origin_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), seq: 108, ts: 32742390128522288565015511536173125, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-03-31T14:48:45.486497Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), origin_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), seq: 22, ts: 32742390128499433049108184621406437, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-03-31T14:48:45.486588Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), origin_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), seq: 22, ts: 32742390128519779807821484648462652, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:48:45.486500Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), origin_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), seq: 34, ts: 32742390128495300978435670715806045, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:48:45.489173Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=2 +[CIPHER] [ag] 2026-03-31T14:48:45.489179Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 2 [] +[CIPHER] [cn3] 2026-03-31T14:48:45.486493Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), origin_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), seq: 108, ts: 32742390128511939941590159505721185, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:48:45.491934Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn5] 2026-03-31T14:48:45.492018Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(52) in 1.750631125s +[CIPHER] [cn5] 2026-03-31T14:48:45.495765Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x524eb93d2c3ff9379d1c5b4f53564176bf8389b9a1141555812fe77fc2e92723), causation_id: EventId(0xbff61ca069039a4b9954c3ca0196eabe3aecd11d9f4df57f1d5c300252235e4a), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 109, ts: 32742390128643299206139046194774085, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:48:45.498231Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 0 (signer: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc) +[CIPHER] [cn5] 2026-03-31T14:48:45.501774Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x335ad6e46558c3d012d947422dfc4b6ddda96f79ca4c7966a4f53082768d5bd6), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 110, ts: 32742390128755547643827568816357445, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:48:45.504266Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0x335ad6e46558c3d012d947422dfc4b6ddda96f79ca4c7966a4f53082768d5bd6), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 111, ts: 32742390128755971918941264136044613, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn5] 2026-03-31T14:48:45.504314Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated +[CIPHER] [cn5] 2026-03-31T14:48:45.504398Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete +[CIPHER] [cn2] 2026-03-31T14:48:45.508808Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), origin_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), seq: 23, ts: 32742390128933429596930349242276069, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:48:45.508826Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), origin_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), seq: 35, ts: 32742390128945051045696783293755741, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-03-31T14:48:45.508808Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), origin_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), seq: 23, ts: 32742390128944479196630499655317820, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:48:45.511355Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=0 +[CIPHER] [ag] 2026-03-31T14:48:45.511360Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 0 [] +[CIPHER] [cn3] 2026-03-31T14:48:45.513330Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), origin_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), seq: 109, ts: 32742390128955916177956200994015073, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:48:45.517850Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), origin_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), seq: 111, ts: 32742390128973625052266963106668289, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-03-31T14:48:45.534071Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn3] 2026-03-31T14:48:45.534158Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(220) in 1.788132417s +[CIPHER] [cn3] 2026-03-31T14:48:45.534306Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x07c458893a6c8567c5f915a1b8618371e294eb5d300de8e6510e478b66096c2f), causation_id: EventId(0x1cca42c8a83afdf97cef721c7f0f35fb055f87cc7a00017c5ae2f7057a2d7753), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 110, ts: 32742390129418505179092615419889505, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:48:45.536661Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 1 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) +[CIPHER] [cn3] 2026-03-31T14:48:45.537202Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x662aca4a40cc029687968ccf4f311721f0f3b151c085a84e75dccdbaa8d7fd2f), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 111, ts: 32742390129464437571836152203413345, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:48:45.539695Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0x662aca4a40cc029687968ccf4f311721f0f3b151c085a84e75dccdbaa8d7fd2f), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 112, ts: 32742390129464861846949847523100513, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } +[CIPHER] [cn3] 2026-03-31T14:48:45.539732Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated +[CIPHER] [cn3] 2026-03-31T14:48:45.539808Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete +[CIPHER] [cn5] 2026-03-31T14:48:45.544492Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 112, ts: 32742390129603415341687480937283653, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-03-31T14:48:45.544498Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 24, ts: 32742390129603858063545247577831740, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:48:45.544499Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 36, ts: 32742390129604208551682646701650269, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:48:45.547148Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=1 +[CIPHER] [ag] 2026-03-31T14:48:45.547152Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 1 [] +[CIPHER] [ag] 2026-03-31T14:48:45.547308Z  INFO e3_aggregator::threshold_plaintext_aggregator: Changing state to VerifyingC6 because received all 3 shares... +[CIPHER] [cn2] 2026-03-31T14:48:45.544759Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 24, ts: 32742390129610572678388079462996197, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:48:45.544916Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 112, ts: 32742390129614926109989475668598529, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-03-31T14:48:45.551731Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 37, ts: 32742390129664547851547750644986205, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.558676Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ThresholdDecryptionProofs +[CIPHER] [ag] 2026-03-31T14:48:45.560616Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, correlation_id: 87, party_proofs: [PartyProofData { party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C6ThresholdShareDecryption, , [47, 191, 140, 45, 252, 95, 85, 125, 239, 68, 99, 120, 147, 195, 204, 13, 98, 216, 221, 5, 241, 56, 144, 214, 32, 105, 27, 242, 148, 205, 14, 55])] }, PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C6ThresholdShareDecryption, , [107, 50, 197, 213, 155, 86, 164, 83, 240, 170, 141, 224, 72, 81, 11, 188, 89, 149, 16, 133, 103, 29, 176, 189, 178, 124, 15, 186, 42, 97, 111, 127])] }, PartyProofData { party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C6ThresholdShareDecryption, , [228, 163, 146, 93, 123, 58, 201, 68, 131, 130, 167, 248, 222, 201, 15, 62, 222, 45, 126, 139, 142, 206, 113, 89, 4, 179, 247, 9, 4, 45, 23, 80])] }] }), ctx: EventContext { id: EventId(0xc4f31ccfe7b1b21682428da3bfe9eee5ceb5e88dbd34e57bde7647cfca7671cd), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 38, ts: 32742390129900500154994569519706461, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.566297Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, correlation_id: 87, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xa2848a1bf74554b1a857d857468bc3776b70ea5c5428b46d30497a1e311fbc7d), causation_id: EventId(0xc4f31ccfe7b1b21682428da3bfe9eee5ceb5e88dbd34e57bde7647cfca7671cd), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 39, ts: 32742390130004576685058438809923933, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.569802Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xf02ebb8bf4a5a72b39ab9fc9c3c88a5dcbf987225c180c9900bb8cbb962fc8a6), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 29, ts: 32742390130011826255479406663709021, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.576820Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(52)` +[CIPHER] [ag] 2026-03-31T14:48:45.677535Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(52) in 100.709708ms +[CIPHER] [ag] 2026-03-31T14:48:45.718781Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xac098f3b9b02a0e725e68319cacfb2d54eeb81aa2d6d8f7a6746cdd47bd62f82), causation_id: EventId(0xf02ebb8bf4a5a72b39ab9fc9c3c88a5dcbf987225c180c9900bb8cbb962fc8a6), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 41, ts: 32742390132769134879153068181959005, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.725635Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C6ThresholdShareDecryption, data_hash: [47, 191, 140, 45, 252, 95, 85, 125, 239, 68, 99, 120, 147, 195, 204, 13, 98, 216, 221, 5, 241, 56, 144, 214, 32, 105, 27, 242, 148, 205, 14, 55], public_signals: }), ctx: EventContext { id: EventId(0xf2b977b71ae3fd3c6b28fe80e469e5c4c28414ba961d40d12fb7b84119acba3d), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 42, ts: 32742390132825231427881218928423261, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.727780Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C6ThresholdShareDecryption, data_hash: [107, 50, 197, 213, 155, 86, 164, 83, 240, 170, 141, 224, 72, 81, 11, 188, 89, 149, 16, 133, 103, 29, 176, 189, 178, 124, 15, 186, 42, 97, 111, 127], public_signals: }), ctx: EventContext { id: EventId(0x7effd7a1e8fe9b702eeae0a67fb649f46b821b99827173ec635f96d3997a167d), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 43, ts: 32742390132825563469274545700352349, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.729897Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C6ThresholdShareDecryption, data_hash: [228, 163, 146, 93, 123, 58, 201, 68, 131, 130, 167, 248, 222, 201, 15, 62, 222, 45, 126, 139, 142, 206, 113, 89, 4, 179, 247, 9, 4, 45, 23, 80], public_signals: }), ctx: EventContext { id: EventId(0x6e68b4940bab921ddd78f6ccb40f0a260ad825ebb560f7de73b26e199e0e724f), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 44, ts: 32742390132825877063923798762729821, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.731918Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xd7c38ca6ed81f848a2cc195081ffa58c2351815845fb5b5df8d0d65644150016), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 45, ts: 32742390132826190658573051825107293, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.731985Z  INFO e3_aggregator::threshold_plaintext_aggregator: C6 verification passed: 3 honest parties, transitioning to Computing +[CIPHER] [ag] 2026-03-31T14:48:45.732010Z  INFO e3_aggregator::proof_fold: ThresholdPlaintextAggregator C6 fold: no proofs to fold +[CIPHER] [ag] 2026-03-31T14:48:45.734845Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateThresholdDecryption(CalculateThresholdDecryptionRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, d_share_polys: [(0, []), (2, []), (1, [])], ciphertexts: [] })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x039389224905e9c22db554fb6171ebb1728f088d4c9c1b11ec1934b74e92216a), causation_id: EventId(0xd7c38ca6ed81f848a2cc195081ffa58c2351815845fb5b5df8d0d65644150016), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 30, ts: 32742390133067529411289393888899421, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.735564Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_threshold_decryption(81)` +[CIPHER] [ag] 2026-03-31T14:48:45.735575Z  INFO e3_trbfv::calculate_threshold_decryption: Calculating threshold decryption... +[CIPHER] [ag] 2026-03-31T14:48:45.746739Z  INFO e3_trbfv::calculate_threshold_decryption: Calculating threshold decryption for ciphertext 0... +[CIPHER] [ag] 2026-03-31T14:48:45.751084Z  INFO e3_trbfv::calculate_threshold_decryption: Successfully calculated threshold decryption! Returning... +[CIPHER] [ag] 2026-03-31T14:48:45.751114Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_threshold_decryption`(81) in 15.546958ms +[CIPHER] [ag] 2026-03-31T14:48:45.751163Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateThresholdDecryption(CalculateThresholdDecryptionResponse { plaintext: [] })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x624cf4d5933beaa3b233bdd3d376bcb2e8fbd68dfcd9abe8bb3fc70102ec52c3), causation_id: EventId(0x039389224905e9c22db554fb6171ebb1728f088d4c9c1b11ec1934b74e92216a), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 46, ts: 32742390133420581646116120997278045, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.751322Z  INFO e3_aggregator::threshold_plaintext_aggregator: Received TrBFV threshold decryption response +[CIPHER] [ag] 2026-03-31T14:48:45.751398Z  INFO e3_events::eventbus: >>> AggregationProofPending EnclaveEvent { payload: AggregationProofPending(AggregationProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, proof_request: DecryptedSharesAggregationProofRequest { d_share_polys: [(0, []), (2, []), (1, [])], plaintext: [], params_preset: InsecureThreshold512, threshold_m: 1, threshold_n: 3 }, plaintext: [], shares: [(0, []), (2, []), (1, [])] }), ctx: EventContext { id: EventId(0x5bb9ddc033fb38bd3b18a4e457c2295bb02289179ce21d3b1070e1b79979e61b), causation_id: EventId(0x624cf4d5933beaa3b233bdd3d376bcb2e8fbd68dfcd9abe8bb3fc70102ec52c3), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 47, ts: 32742390133424234101442715488498013, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.752409Z  INFO e3_zk_prover::actors::proof_request: Requesting C7 DecryptedSharesAggregation proof for E3 31337:0 +[CIPHER] [ag] 2026-03-31T14:48:45.754859Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DecryptedSharesAggregation(DecryptedSharesAggregationProofRequest { d_share_polys: [(0, []), (2, []), (1, [])], plaintext: [], params_preset: InsecureThreshold512, threshold_m: 1, threshold_n: 3 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x230ca0af660d9c4da16455207a2d76b16c76f58ce06248d56f3ea2751c43c8df), causation_id: EventId(0x5bb9ddc033fb38bd3b18a4e457c2295bb02289179ce21d3b1070e1b79979e61b), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 31, ts: 32742390133444285712250837771104605, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:45.755423Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_decrypted_shares_aggregation(63)` +[CIPHER] [ag] 2026-03-31T14:48:46.624505Z  INFO e3_zk_prover::prover: generated proof (9408 bytes) for decrypted_shares_aggregation / 31337:0 +[CIPHER] [ag] 2026-03-31T14:48:46.624542Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_decrypted_shares_aggregation`(63) in 869.117083ms +[CIPHER] [ag] 2026-03-31T14:48:46.624658Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DecryptedSharesAggregation(DecryptedSharesAggregationProofResponse { proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }] })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd90a1e1ed89ce45d9db0797ebeba9d7f33189c907b2492f97993e6ad0396260a), causation_id: EventId(0x230ca0af660d9c4da16455207a2d76b16c76f58ce06248d56f3ea2751c43c8df), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 48, ts: 32742390149532742683345139179860317, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:46.625164Z  INFO e3_zk_prover::actors::proof_request: All C7 proofs signed for E3 31337:0 (signer: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266) +[CIPHER] [ag] 2026-03-31T14:48:46.625258Z  INFO e3_events::eventbus: >>> AggregationProofSigned EnclaveEvent { payload: AggregationProofSigned(AggregationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C7DecryptedSharesAggregation, proof: Proof { circuit: DecryptedSharesAggregation, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xae9a83bc9f18fe8caa1e7648a505a2c6110ca268bae42d78df363d5eccd65d0b), causation_id: EventId(0x5bb9ddc033fb38bd3b18a4e457c2295bb02289179ce21d3b1070e1b79979e61b), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 49, ts: 32742390149543773836301217491726685, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:46.625672Z  INFO e3_aggregator::threshold_plaintext_aggregator: C7 proof signed — waiting for C6 cross-node fold to complete... +[CIPHER] [ag] 2026-03-31T14:48:46.625674Z  INFO e3_aggregator::threshold_plaintext_aggregator: Both C7 and C6 fold proof ready — publishing PlaintextAggregated +[CIPHER] [ag] 2026-03-31T14:48:46.625678Z  INFO e3_aggregator::threshold_plaintext_aggregator: Dispatching plaintext event with C7 and C6 proofs PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None } +[CIPHER] [ag] 2026-03-31T14:48:46.630504Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0xae9a83bc9f18fe8caa1e7648a505a2c6110ca268bae42d78df363d5eccd65d0b), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 50, ts: 32742390149560486586431998345490781, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:46.630945Z  WARN e3_net::net_event_translator: GossipPublish event: PlaintextAggregated +[CIPHER] [ag] 2026-03-31T14:48:46.633870Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 32, ts: 32742390149649990188677637089931613, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:46.635111Z  INFO e3_evm::enclave_sol_writer: publishPlaintextOutput() e3_id=0 +[CIPHER] [cn3] 2026-03-31T14:48:46.637650Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 113, ts: 32742390149729956824237170770544481, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:48:46.637651Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 113, ts: 32742390149722836381024719826722561, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-03-31T14:48:46.637659Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 25, ts: 32742390149719737328020334262253884, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:48:46.637698Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 113, ts: 32742390149719792668252557779599429, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-03-31T14:48:46.639200Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 63, ts: 32742390149782696065543907321716481, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:48:46.639211Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 63, ts: 32742390149782345577406505897133921, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-03-31T14:48:46.639251Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) +[CIPHER] [cn3] 2026-03-31T14:48:46.639238Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 +[CIPHER] [cn3] 2026-03-31T14:48:46.639251Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) +[CIPHER] [cn4] 2026-03-31T14:48:46.639232Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 +[CIPHER] [cn2] 2026-03-31T14:48:46.639194Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 25, ts: 32742390149725105330545785350150373, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-03-31T14:48:46.642563Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 63, ts: 32742390149785868905524585393487941, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:48:46.642610Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 +[CIPHER] [cn5] 2026-03-31T14:48:46.642634Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) +[CIPHER] [cn1] 2026-03-31T14:48:46.642760Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 27, ts: 32742390149783489275539074472638780, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-03-31T14:48:46.642786Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 27, ts: 32742390149811436092810746051713253, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-03-31T14:48:47.735256Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32742390170019770438583265789149253, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } +[CIPHER] [cn3] 2026-03-31T14:48:47.735251Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32742390170019290823237348368811873, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:48:47.735264Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 51, ts: 32742390170020213160441031072035165, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } +[CIPHER] [ag] 2026-03-31T14:48:47.735371Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn1] 2026-03-31T14:48:47.735311Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 26, ts: 32742390170020877243227685973555516, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } +[CIPHER] [cn1] 2026-03-31T14:48:47.735430Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn3] 2026-03-31T14:48:47.735371Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn3] 2026-03-31T14:48:47.735402Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 +[CIPHER] [cn3] 2026-03-31T14:48:47.735407Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down +[CIPHER] [cn4] 2026-03-31T14:48:47.735348Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32742390170021781133687300101381889, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } +[CIPHER] [cn4] 2026-03-31T14:48:47.735436Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn4] 2026-03-31T14:48:47.735454Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 +[CIPHER] [cn4] 2026-03-31T14:48:47.735457Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down +[CIPHER] [cn2] 2026-03-31T14:48:47.735367Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 26, ts: 32742390170020674329042876776863973, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } +[CIPHER] [cn2] 2026-03-31T14:48:47.735465Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn5] 2026-03-31T14:48:47.735393Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn5] 2026-03-31T14:48:47.735421Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 +[CIPHER] [cn5] 2026-03-31T14:48:47.735427Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] Answer was correct +[TEST] +[TEST] ✓ tests/integration.spec.ts (1 test) 520163ms +[TEST] +[TEST] Test Files 1 passed (1) +[TEST] Tests 1 passed (1) +[TEST] Start at 15:40:06 +[TEST] Duration 520.90s (transform 230ms, setup 0ms, collect 571ms, tests 520.16s, environment 0ms, prepare 38ms) +[TEST] +[TEST] wait-on http://localhost:13151/health && pnpm vitest run ./tests/integration.spec.ts exited with code 0 +--> Sending SIGTERM to other processes.. +[EVM] anvil --host 0.0.0.0 --chain-id 31337 --block-time 1 --mnemonic 'test test test test test test test test test test test junk' --silent exited with code 0 +--> Sending SIGTERM to other processes.. +[CIPHER] [cn1] 2026-03-31T14:48:47.823795Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [cn2] 2026-03-31T14:48:47.823859Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [cn4] 2026-03-31T14:48:47.823919Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [cn3] 2026-03-31T14:48:47.823945Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [cn5] 2026-03-31T14:48:47.824022Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [ag] 2026-03-31T14:48:47.824082Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [cn5] 2026-03-31T14:48:47.824866Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] [cn2] 2026-03-31T14:48:47.824868Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] [cn3] 2026-03-31T14:48:47.824864Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] [cn4] 2026-03-31T14:48:47.824891Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] [cn1] 2026-03-31T14:48:47.824903Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] [ag] 2026-03-31T14:48:47.824901Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] 2026-03-31T14:48:47.926127Z  INFO execute:execute: actix_server::server: SIGTERM received; starting graceful shutdown +[CIPHER] Cleaning up processes... +[CIPHER] 2026-03-31T14:48:47.926426Z  INFO e3_entrypoint::nodes::process_manager: Received SIGTERM, shutting down all processes... +[CIPHER] 2026-03-31T14:48:47.926465Z  INFO actix_server::worker: shutting down idle worker +[CIPHER] 2026-03-31T14:48:47.927072Z  INFO actix_server::accept: accept thread stopped +[CIPHER] 2026-03-31T14:48:47.927250Z  INFO e3_entrypoint::nodes::process_manager: starting to terminate processes... +[CIPHER] 2026-03-31T14:48:47.927267Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn4 +[CIPHER] [cn5] 2026-03-31T14:48:47.926027Z  INFO execute: enclave::start: SIGTERM received +[CIPHER] [cn5] 2026-03-31T14:48:47.926059Z  INFO execute: enclave::start: initiating graceful shutdown... +[CIPHER] [cn5] 2026-03-31T14:48:47.926304Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 65, ts: 32742390173541272328998492902195269, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-03-31T14:48:47.926155Z  INFO execute: enclave::start: SIGTERM received +[CIPHER] [cn2] 2026-03-31T14:48:47.926170Z  INFO execute: enclave::start: initiating graceful shutdown... +[CIPHER] [cn2] 2026-03-31T14:48:47.926286Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 29, ts: 32742390173543098556661789367490789, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-03-31T14:48:47.926155Z  INFO execute: enclave::start: SIGTERM received +[CIPHER] [cn3] 2026-03-31T14:48:47.926172Z  INFO execute: enclave::start: initiating graceful shutdown... +[CIPHER] [cn3] 2026-03-31T14:48:47.926346Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 65, ts: 32742390173543117003405862885361505, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-03-31T14:48:47.926435Z  INFO execute: enclave::start: SIGTERM received +[CIPHER] [cn1] 2026-03-31T14:48:47.926445Z  INFO execute: enclave::start: initiating graceful shutdown... +[CIPHER] [cn1] 2026-03-31T14:48:47.926494Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 29, ts: 32742390173548152964537984176257340, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-03-31T14:48:47.926467Z  INFO execute: enclave::start: SIGTERM received +[CIPHER] [ag] 2026-03-31T14:48:47.926477Z  INFO execute: enclave::start: initiating graceful shutdown... +[CIPHER] [ag] 2026-03-31T14:48:47.926552Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 34, ts: 32742390173548946174533152329314653, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-03-31T14:48:47.930375Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector +[CIPHER] [cn2] 2026-03-31T14:48:47.930451Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream +[CIPHER] [cn3] 2026-03-31T14:48:47.933250Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector +[CIPHER] [cn5] 2026-03-31T14:48:47.933293Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector +[CIPHER] [cn5] 2026-03-31T14:48:47.933335Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream +[CIPHER] [cn3] 2026-03-31T14:48:47.933286Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream +[CIPHER] [cn1] 2026-03-31T14:48:47.937366Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector +[CIPHER] [ag] 2026-03-31T14:48:47.937360Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector +[CIPHER] [cn1] 2026-03-31T14:48:47.937423Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream +[CIPHER] [ag] 2026-03-31T14:48:47.937463Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream +[CIPHER] [ag] 2026-03-31T14:48:47.937411Z  INFO e3_aggregator::committee_finalizer: Killing CommitteeFinalizer +[CIPHER] 2026-03-31T14:48:47.937897Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn4... +[CIPHER] 2026-03-31T14:48:47.937904Z  INFO e3_entrypoint::nodes::process_manager: Process cn4 terminated. +[CIPHER] 2026-03-31T14:48:47.937910Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn1 +[CIPHER] 2026-03-31T14:48:47.940734Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn1... +[CIPHER] 2026-03-31T14:48:47.940748Z  INFO e3_entrypoint::nodes::process_manager: Process cn1 terminated. +[CIPHER] 2026-03-31T14:48:47.940753Z  INFO e3_entrypoint::nodes::process_manager: Terminating ag +[CIPHER] 2026-03-31T14:48:47.944315Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: ag... +[CIPHER] 2026-03-31T14:48:47.944330Z  INFO e3_entrypoint::nodes::process_manager: Process ag terminated. +[CIPHER] 2026-03-31T14:48:47.944335Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn2 +[CIPHER] 2026-03-31T14:48:47.947107Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn2... +[CIPHER] 2026-03-31T14:48:47.947119Z  INFO e3_entrypoint::nodes::process_manager: Process cn2 terminated. +[CIPHER] 2026-03-31T14:48:47.947124Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn3 +[CIPHER] 2026-03-31T14:48:47.952787Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn3... +[CIPHER] 2026-03-31T14:48:47.952803Z  INFO e3_entrypoint::nodes::process_manager: Process cn3 terminated. +[CIPHER] 2026-03-31T14:48:47.952808Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn5 +[CIPHER] 2026-03-31T14:48:47.957910Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn5... +[CIPHER] 2026-03-31T14:48:47.957923Z  INFO e3_entrypoint::nodes::process_manager: Process cn5 terminated. +[CIPHER] 2026-03-31T14:48:47.957929Z  INFO e3_entrypoint::nodes::process_manager: SWARM All processes terminated, exiting +[PROGRAM]  ELIFECYCLE  Command failed. +[CIPHER]  ELIFECYCLE  Command failed with exit code 1. +[CIPHER] pnpm dev:ciphernodes exited with code SIGTERM +--> Sending SIGTERM to other processes.. +[SERVER]  ELIFECYCLE  Command failed. +[SERVER] TEST_MODE=1 pnpm dev:server exited with code SIGTERM +--> Sending SIGTERM to other processes.. +[PROGRAM] pnpm dev:program exited with code SIGTERM + +------------------------ + ✅ Test has passed! +------------------------ + diff --git a/logs_c0c3_debug.txt b/logs_c0c3_debug.txt new file mode 100644 index 0000000000..5db5753e20 --- /dev/null +++ b/logs_c0c3_debug.txt @@ -0,0 +1,6149 @@ +warning: /Users/ctrlc03/Documents/zk/enclave/Cargo.toml: unused manifest key: workspace.msrv + Compiling rustix v1.1.3 + Compiling tracing-subscriber v0.3.19 + Compiling tokio-native-tls v0.3.1 + Compiling tungstenite v0.26.2 + Compiling alloy-node-bindings v1.0.41 + Compiling actix v0.13.5 + Compiling derivative v2.2.0 + Compiling multistream-select v0.13.0 + Compiling if-watch v3.2.1 + Compiling serial_test v3.2.0 + Compiling hyper-tls v0.6.0 + Compiling reqwest v0.12.22 + Compiling libp2p-core v0.42.0 + Compiling tokio-tungstenite v0.26.2 + Compiling tempfile v3.20.0 + Compiling alloy-transport-ws v1.0.41 + Compiling prost-build v0.12.6 + Compiling prost-build v0.13.5 + Compiling libp2p-swarm v0.45.1 + Compiling libp2p-tls v0.5.0 + Compiling libp2p-dns v0.42.0 + Compiling tracing-error v0.2.1 + Compiling tracing-test v0.2.5 + Compiling color-spantrace v0.3.0 + Compiling libp2p-quic v0.11.1 + Compiling color-eyre v0.6.5 + Compiling alloy-transport-http v1.0.41 + Compiling noir_protobuf v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling fhe-math v0.1.0-beta.7 (https://github.com/gnosisguild/fhe.rs#3824c52c) + Compiling fhe v0.1.0-beta.7 (https://github.com/gnosisguild/fhe.rs#3824c52c) + Compiling acir v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling alloy-rpc-client v1.0.41 + Compiling libp2p-identify v0.45.0 + Compiling libp2p-kad v0.46.2 + Compiling libp2p-mdns v0.46.0 + Compiling libp2p-ping v0.45.0 + Compiling alloy-provider v1.0.41 + Compiling libp2p-request-response v0.27.0 + Compiling libp2p-allow-block-list v0.4.0 + Compiling libp2p-gossipsub v0.47.0 + Compiling libp2p-connection-limits v0.4.0 + Compiling e3-polynomial v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/polynomial) + Compiling libp2p v0.54.1 + Compiling e3-fhe-params v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/fhe-params) + Compiling acvm_blackbox_solver v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling e3-zk-helpers v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/zk-helpers) + Compiling brillig_vm v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling bn254_blackbox_solver v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling acvm v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling noirc_printable_type v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling alloy-contract v1.0.41 + Compiling noirc_errors v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling noirc_abi v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling alloy v1.0.41 + Compiling e3-utils v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/utils) + Compiling noirc_frontend v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling e3-crypto v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/crypto) + Compiling e3-evm-helpers v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/evm-helpers) + Compiling e3-bfv-client v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/bfv-client) + Compiling e3-trbfv v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/trbfv) + Compiling e3-indexer v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/indexer) + Compiling e3-events v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/events) + Compiling e3-sdk v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/sdk) +warning: unused import: `crate::traits::EventContextAccessors` + --> crates/events/src/events.rs:11:5 + | +11 | use crate::traits::EventContextAccessors; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + | + = note: `#[warn(unused_imports)]` on by default + +warning: method `pending_aggregates` is never used + --> crates/events/src/eventstore_router.rs:40:8 + | +26 | impl QueryAggregator { + | -------------------- method in this implementation +... +40 | fn pending_aggregates(&self) -> Vec<&AggregateId> { + | ^^^^^^^^^^^^^^^^^^ + | + = note: `#[warn(dead_code)]` on by default + +warning: associated function `new` is never used + --> crates/events/src/snapshot_buffer/batch_router.rs:50:12 + | +49 | impl BatchRouter { + | ---------------- associated function in this implementation +50 | pub fn new( + | ^^^ + + Compiling noirc_evaluator v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling e3-config v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/config) + Compiling e3-logger v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/logger) + Compiling e3-data v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/data) +warning: `e3-events` (lib) generated 3 warnings + Compiling e3-request v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/request) + Compiling e3-sync v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/sync) + Compiling e3-net v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/net) +warning: unused import: `NetReady` + --> crates/net/src/net_event_translator.rs:14:52 + | +14 | EventContextAccessors, EventSource, EventType, NetReady, Unsequenced, + | ^^^^^^^^ + | + = note: `#[warn(unused_imports)]` on by default + + Compiling e3-fhe v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/fhe) + Compiling e3-sortition v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/sortition) + Compiling e3-evm v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/evm) +warning: field `0` is never read + --> crates/net/src/direct_requester.rs:34:21 + | +34 | pub struct WithPeer(PeerTarget); + | -------- ^^^^^^^^^^ + | | + | field in this struct + | + = help: consider removing this field + = note: `#[warn(dead_code)]` on by default + +warning: struct `Expectation` is never constructed + --> crates/net/src/direct_requester.rs:240:8 + | +240 | struct Expectation { + | ^^^^^^^^^^^ + +warning: struct `DirectRequesterTester` is never constructed + --> crates/net/src/direct_requester.rs:245:19 + | +245 | pub(crate) struct DirectRequesterTester { + | ^^^^^^^^^^^^^^^^^^^^^ + +warning: struct `ExpectationBuilder` is never constructed + --> crates/net/src/direct_requester.rs:255:19 + | +255 | pub(crate) struct ExpectationBuilder { + | ^^^^^^^^^^^^^^^^^^ + +warning: methods `respond_with` and `error_with` are never used + --> crates/net/src/direct_requester.rs:261:12 + | +260 | impl ExpectationBuilder { + | ----------------------- methods in this implementation +261 | pub fn respond_with>>(mut self, payload: T) -> DirectRequesterTester + | ^^^^^^^^^^^^ +... +272 | pub fn error_with(mut self, error: impl Into) -> DirectRequesterTester { + | ^^^^^^^^^^ + +warning: multiple associated items are never used + --> crates/net/src/direct_requester.rs:282:12 + | +281 | impl DirectRequesterTester { + | -------------------------- associated items in this implementation +282 | pub fn new( + | ^^^ +... +297 | pub fn expect_request>>(self, payload: T) -> ExpectationBuilder + | ^^^^^^^^^^^^^^ +... +307 | pub fn respond_with>>(mut self, payload: T) -> Self + | ^^^^^^^^^^^^ +... +315 | pub fn respond_with_each>>( + | ^^^^^^^^^^^^^^^^^ +... +329 | pub fn error_with(mut self, error: impl Into) -> Self { + | ^^^^^^^^^^ +... +334 | pub fn num_requests(mut self, n: usize) -> Self { + | ^^^^^^^^^^^^ +... +339 | pub fn spawn(mut self) -> tokio::task::JoinHandle<()> { + | ^^^^^ + +warning: constant `ALL_PEERS_DIALED_TIMEOUT` is never used + --> crates/net/src/net_sync_manager.rs:34:7 + | +34 | const ALL_PEERS_DIALED_TIMEOUT: Duration = Duration::from_secs(120); + | ^^^^^^^^^^^^^^^^^^^^^^^^ + + Compiling noirc_driver v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling noirc_artifacts v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling noir_greybox_fuzzer v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling nargo v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) + Compiling e3-zk-prover v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/zk-prover) +warning: unused import: `SignedProofFailed` + --> crates/zk-prover/src/actors/proof_request.rs:21:34 + | +21 | ShareDecryptionProofPending, SignedProofFailed, SignedProofPayload, ThresholdShare, + | ^^^^^^^^^^^^^^^^^ + | + = note: `#[warn(unused_imports)]` on by default + +warning: unused import: `commitment_consistency_checker::CommitmentConsistencyChecker` + --> crates/zk-prover/src/actors/mod.rs:49:9 + | +49 | pub use commitment_consistency_checker::CommitmentConsistencyChecker; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +warning: field `request` is never read + --> crates/zk-prover/src/actors/proof_request.rs:184:5 + | +182 | struct PendingPkAggregationProof { + | ------------------------- field in this struct +183 | ec: EventContext, +184 | request: PkAggregationProofRequest, + | ^^^^^^^ + | + = note: `PendingPkAggregationProof` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis + = note: `#[warn(dead_code)]` on by default + +warning: `e3-net` (lib) generated 8 warnings (run `cargo fix --lib -p e3-net` to apply 1 suggestion) + Compiling e3-multithread v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/multithread) +warning: unused import: `warn` + --> crates/multithread/src/multithread.rs:85:28 + | +85 | use tracing::{error, info, warn}; + | ^^^^ + | + = note: `#[warn(unused_imports)]` on by default + + Compiling e3-aggregator v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/aggregator) + Compiling e3-keyshare v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/keyshare) +warning: unused import: `ProofVerificationPassed` + --> crates/aggregator/src/publickey_aggregator.rs:15:76 + | +15 | PkAggregationProofRequest, PkAggregationProofSigned, Proof, ProofType, ProofVerificationPassed, + | ^^^^^^^^^^^^^^^^^^^^^^^ + | + = note: `#[warn(unused_imports)]` on by default + +warning: `e3-multithread` (lib) generated 1 warning (run `cargo fix --lib -p e3-multithread` to apply 1 suggestion) + Compiling e3-ciphernode-builder v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/ciphernode-builder) +warning: `e3-zk-prover` (lib) generated 3 warnings (run `cargo fix --lib -p e3-zk-prover` to apply 2 suggestions) +warning: unused imports: `EventStoreQueryBy`, `SeqAgg`, and `TsAgg` + --> crates/ciphernode-builder/src/event_system.rs:19:5 + | +19 | EventStoreQueryBy, EventStoreRouter, EventSubscriber, EventType, InsertBatch, SeqAgg, + | ^^^^^^^^^^^^^^^^^ ^^^^^^ +20 | Sequencer, SnapshotBuffer, StoreEventRequested, TsAgg, UpdateDestination, + | ^^^^^ + | + = note: `#[warn(unused_imports)]` on by default + + Compiling e3-test-helpers v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/test-helpers) +warning: `e3-aggregator` (lib) generated 1 warning (run `cargo fix --lib -p e3-aggregator` to apply 1 suggestion) +warning: `e3-ciphernode-builder` (lib) generated 1 warning (run `cargo fix --lib -p e3-ciphernode-builder` to apply 1 suggestion) + Compiling e3-tests v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/tests) +warning: unused imports: `EffectsEnabled`, `EventType`, `GetEvents`, `HistoryCollector`, `OrderedSet`, `PkAggregationProofPending`, and `PkAggregationProofRequest` + --> crates/tests/tests/integration.rs:17:24 + | +17 | E3Requested, E3id, EffectsEnabled, EnclaveEvent, EnclaveEventData, EventType, GetEvents, + | ^^^^^^^^^^^^^^ ^^^^^^^^^ ^^^^^^^^^ +18 | HistoryCollector, OperatorActivationChanged, OrderedSet, PkAggregationProofPending, + | ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^ +19 | PkAggregationProofRequest, PlaintextAggregated, Seed, TakeEvents, TicketBalanceUpdated, + | ^^^^^^^^^^^^^^^^^^^^^^^^^ + | + = note: `#[warn(unused_imports)]` on by default + +warning: unused imports: `build_pair_for_preset` and `create_deterministic_crp_from_default_seed` + --> crates/tests/tests/integration.rs:22:21 + | +22 | use e3_fhe_params::{build_pair_for_preset, create_deterministic_crp_from_default_seed}; + | ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +warning: unused import: `BfvPreset` + --> crates/tests/tests/integration.rs:23:53 + | +23 | use e3_fhe_params::{encode_bfv_params, BfvParamSet, BfvPreset}; + | ^^^^^^^^^ + +warning: unused import: `e3_polynomial::CrtPolynomial` + --> crates/tests/tests/integration.rs:27:5 + | +27 | use e3_polynomial::CrtPolynomial; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +warning: unused imports: `compute_modulus_bit` and `compute_threshold_pk_commitment` + --> crates/tests/tests/integration.rs:36:21 + | +36 | use e3_zk_helpers::{compute_modulus_bit, compute_threshold_pk_commitment}; + | ^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +warning: unused import: `ProofRequestActor` + --> crates/tests/tests/integration.rs:38:20 + | +38 | use e3_zk_prover::{ProofRequestActor, ZkBackend}; + | ^^^^^^^^^^^^^^^^^ + +warning: unused import: `fhe::bfv::SecretKey` + --> crates/tests/tests/integration.rs:40:5 + | +40 | use fhe::bfv::SecretKey; + | ^^^^^^^^^^^^^^^^^^^ + +warning: unused import: `PublicKeyShare` + --> crates/tests/tests/integration.rs:41:32 + | +41 | use fhe::mbfv::{AggregateIter, PublicKeyShare}; + | ^^^^^^^^^^^^^^ + +warning: unused import: `rand::rngs::OsRng` + --> crates/tests/tests/integration.rs:44:5 + | +44 | use rand::rngs::OsRng; + | ^^^^^^^^^^^^^^^^^ + +warning: unused variable: `addr` + --> crates/tests/tests/integration.rs:1199:9 + | +1199 | addr: &str, + | ^^^^ help: if this is intentional, prefix it with an underscore: `_addr` + | + = note: `#[warn(unused_variables)]` on by default + +warning: unused variable: `addr` + --> crates/tests/tests/integration.rs:1419:9 + | +1419 | addr: &str, + | ^^^^ help: if this is intentional, prefix it with an underscore: `_addr` + +warning: unused import: `AggregateIter` + --> crates/tests/tests/integration.rs:41:17 + | +41 | use fhe::mbfv::{AggregateIter, PublicKeyShare}; + | ^^^^^^^^^^^^^ + +warning: `e3-tests` (test "integration") generated 12 warnings (run `cargo fix --test "integration"` to apply 9 suggestions) + Finished `test` profile [unoptimized + debuginfo] target(s) in 39.06s + Running tests/integration.rs (target/debug/deps/integration-1d1f88486c2791bf) + +running 5 tests +test test_duplicate_e3_id_with_different_chain_id ... ignored, Needs to be ported to trBFV system +test test_stopped_keyshares_retain_state ... ignored, Needs to be ported to trBFV system after Sync is completed + + + ############################### + ## STARTING TRBFV ACTOR TEST ## + ############################### + +test test_p2p_actor_forwards_events_to_bus ... ok +test test_p2p_actor_forwards_events_to_network ... ok +2026-03-30T15:33:13.202441Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +Building collector 0x781199F9d55d18E855a7AA84C5e4B40dA2C96fc8! +2026-03-30T15:33:13.602542Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:13.602564Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up history collector +2026-03-30T15:33:13.602744Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:13.603266Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:13.603919Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:13.603964Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:13.603968Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:13.664161Z  INFO e3_zk_prover::backend::setup: setting up ZK proving infrastructure... +2026-03-30T15:33:13.664214Z  INFO e3_zk_prover::backend::download: downloading Barretenberg from: https://github.com/AztecProtocol/aztec-packages/releases/download/v3.0.0-nightly.20260102/barretenberg-arm64-darwin.tar.gz +2026-03-30T15:33:15.308630Z  INFO e3_zk_prover::backend::download: installed Barretenberg v3.0.0-nightly.20260102 +2026-03-30T15:33:15.309140Z  INFO e3_zk_prover::backend::download: downloading circuits from: https://github.com/gnosisguild/enclave/releases/download/v0.1.15/circuits-0.1.15.tar.gz +2026-03-30T15:33:17.451080Z  INFO e3_zk_prover::backend::download: verified 204 circuit files from checksums.json +2026-03-30T15:33:17.452396Z  INFO e3_zk_prover::backend::download: installed circuits v0.1.15 +2026-03-30T15:33:17.452453Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:17.452539Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:17.452963Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up FheExtension +2026-03-30T15:33:17.452971Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up PublicKeyAggregationExtension +2026-03-30T15:33:17.452978Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdPlaintextAggregatorExtension +2026-03-30T15:33:17.452984Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:17.452989Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:17.452998Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:17.453577Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:17.453732Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:17.453753Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:17.453842Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:17.453849Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:17.453928Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:17.453932Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:17.453935Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:17.453938Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:17.454029Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:17.454035Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:17.454080Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xe7cda59d2aa536178ff04aa2b11fb613a6e4a473de744e386e08d0e238744414), causation_id: EventId(0xe7cda59d2aa536178ff04aa2b11fb613a6e4a473de744e386e08d0e238744414), origin_id: EventId(0xe7cda59d2aa536178ff04aa2b11fb613a6e4a473de744e386e08d0e238744414), seq: 1, ts: 32740845618951143623834887472199872, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:17.555795Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:17.555811Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:17.555966Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32740845620829926060998131594737856, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:17.556230Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:17.556237Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:17.556338Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845620838116415366858635655360, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:17.556487Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:17.556529Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:17.556552Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:17.556557Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:17.556594Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:17.556622Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:17.556696Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845620845273752067457941682368, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:17.556839Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:17.556931Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:17.556947Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:17.556953Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:17.556959Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:17.556964Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:17.556977Z  INFO e3_sync::sync: Sync finished. +Building normal 0x8f32E487328F04927f20c4B14399e4F3123763df +2026-03-30T15:33:17.558438Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:17.558490Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:17.558774Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32740845620850586414360686292547776, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:17.558882Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32740845620851176710171044998199488, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:17.559105Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:17.559147Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:17.559320Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:17.559556Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:17.559596Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:17.559602Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:17.926014Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:17.926047Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:17.926133Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:17.926141Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:17.926145Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:17.926651Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:17.926803Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:17.926814Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:17.926910Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:17.926918Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:17.926973Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:17.926978Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:17.926981Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:17.926984Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:17.927036Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:17.927044Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:17.927095Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xfa5a78e27555e32672a5dcd4b1b0b807fd17d1e4adae1c53eadb9b3bc3780ec5), causation_id: EventId(0xfa5a78e27555e32672a5dcd4b1b0b807fd17d1e4adae1c53eadb9b3bc3780ec5), origin_id: EventId(0xfa5a78e27555e32672a5dcd4b1b0b807fd17d1e4adae1c53eadb9b3bc3780ec5), seq: 1, ts: 32740845627677080759998010131729024, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.029635Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:18.029679Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:18.029909Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 10 }), ctx: EventContext { id: EventId(0x9e0ed163f3687631e43486fd4e40dc7bfeb5d1cd84b9bd1ca57d1fbb35dcb4bc), causation_id: EventId(0x9e0ed163f3687631e43486fd4e40dc7bfeb5d1cd84b9bd1ca57d1fbb35dcb4bc), origin_id: EventId(0x9e0ed163f3687631e43486fd4e40dc7bfeb5d1cd84b9bd1ca57d1fbb35dcb4bc), seq: 2, ts: 32740845629571321568695022858521216, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.030329Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:18.030340Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:18.030484Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845629583920694897366482274944, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.030661Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:18.030715Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:18.030723Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:18.030730Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:18.030737Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:18.030772Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:18.030849Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845629591539200199808527092352, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:18.031077Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:18.031091Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:18.031113Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:18.031120Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:18.031135Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:18.031141Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:18.031159Z  INFO e3_sync::sync: Sync finished. +Building normal 0xE7d68a2809ECC01b26b09Fda8f82CcE3aA2D2358 +2026-03-30T15:33:18.032771Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:18.032869Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:18.033400Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 11 }), ctx: EventContext { id: EventId(0xded13fc7480eeb2817fb88fb03a16bdf2c8c29a9256bf6216e958f44443b3500), causation_id: EventId(0xded13fc7480eeb2817fb88fb03a16bdf2c8c29a9256bf6216e958f44443b3500), origin_id: EventId(0xded13fc7480eeb2817fb88fb03a16bdf2c8c29a9256bf6216e958f44443b3500), seq: 5, ts: 32740845629597313031094879616748160, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.033693Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 12 }), ctx: EventContext { id: EventId(0xc6be85a677e5e9c678e0d80a7ab1355b2d30b063802c6744b12fc217a5186439), causation_id: EventId(0xc6be85a677e5e9c678e0d80a7ab1355b2d30b063802c6744b12fc217a5186439), origin_id: EventId(0xc6be85a677e5e9c678e0d80a7ab1355b2d30b063802c6744b12fc217a5186439), seq: 6, ts: 32740845629598198474810417675225728, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.034084Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:18.034148Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:18.034401Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:18.034790Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:18.034854Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:18.034863Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:18.078699Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:18.078730Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:18.078825Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:18.078833Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:18.078839Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:18.079255Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:18.079403Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:18.079414Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:18.079503Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:18.079511Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:18.079564Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:18.079569Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:18.079572Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:18.079574Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:18.079625Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:18.079633Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:18.079688Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x750d8fe7cc621f63c877fb692cc3639ece00861da23bdaef1f852b648b65dd4c), causation_id: EventId(0x750d8fe7cc621f63c877fb692cc3639ece00861da23bdaef1f852b648b65dd4c), origin_id: EventId(0x750d8fe7cc621f63c877fb692cc3639ece00861da23bdaef1f852b648b65dd4c), seq: 1, ts: 32740845630491850991461277733304552, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.180775Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:18.180798Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:18.180954Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 15 }), ctx: EventContext { id: EventId(0x34227114d2399085885c31ef6f079b91db2cca9d27ca7f4249115eabe4db0ff0), causation_id: EventId(0x34227114d2399085885c31ef6f079b91db2cca9d27ca7f4249115eabe4db0ff0), origin_id: EventId(0x34227114d2399085885c31ef6f079b91db2cca9d27ca7f4249115eabe4db0ff0), seq: 2, ts: 32740845632358938192881790000117992, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.181271Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:18.181281Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:18.181410Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845632368198458406792195029224, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.181584Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:18.181643Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:18.181652Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:18.181658Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:18.181666Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:18.181703Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:18.181786Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845632375761623477013111191784, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:18.182013Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:18.182027Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:18.182048Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:18.182055Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:18.182061Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:18.182066Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:18.182085Z  INFO e3_sync::sync: Sync finished. +Building normal 0x95b8a2b9b93aE9e0F13e215A49b8C53172c4f4ba +2026-03-30T15:33:18.183902Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:18.183986Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:18.184414Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 16 }), ctx: EventContext { id: EventId(0x2597900b15534c572675cd89f95dca20ef2e2fd45432a6b90c72f29b56b04724), causation_id: EventId(0x2597900b15534c572675cd89f95dca20ef2e2fd45432a6b90c72f29b56b04724), origin_id: EventId(0x2597900b15534c572675cd89f95dca20ef2e2fd45432a6b90c72f29b56b04724), seq: 5, ts: 32740845632381572347860231619950824, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.184592Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 17 }), ctx: EventContext { id: EventId(0x13a31292d3790c2cc4ab418bc996a36ce5da478853cb37418205063f09bc784a), causation_id: EventId(0x13a31292d3790c2cc4ab418bc996a36ce5da478853cb37418205063f09bc784a), origin_id: EventId(0x13a31292d3790c2cc4ab418bc996a36ce5da478853cb37418205063f09bc784a), seq: 6, ts: 32740845632382291770879106292463848, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.184880Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:18.184937Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:18.185152Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:18.185587Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:18.185659Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:18.185672Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:18.228834Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:18.228862Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:18.228942Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:18.228950Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:18.228955Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:18.229417Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:18.229562Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:18.229574Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:18.229659Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:18.229667Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:18.229717Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:18.229721Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:18.229724Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:18.229727Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:18.229776Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:18.229783Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:18.229839Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x410b8615b61527fdcd862ea422ad24d9a39dc4c38870fd1f2feb388b80d1f07e), causation_id: EventId(0x410b8615b61527fdcd862ea422ad24d9a39dc4c38870fd1f2feb388b80d1f07e), origin_id: EventId(0x410b8615b61527fdcd862ea422ad24d9a39dc4c38870fd1f2feb388b80d1f07e), seq: 1, ts: 32740845633261684954360987436240454, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.331204Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:18.331227Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:18.331396Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 20 }), ctx: EventContext { id: EventId(0x05c7f5f335a9b9bd9b2d4f876188db7bb28b06bc373b6f5b95a2d3b9a6f5c8ca), causation_id: EventId(0x05c7f5f335a9b9bd9b2d4f876188db7bb28b06bc373b6f5b95a2d3b9a6f5c8ca), origin_id: EventId(0x05c7f5f335a9b9bd9b2d4f876188db7bb28b06bc373b6f5b95a2d3b9a6f5c8ca), seq: 2, ts: 32740845635133881903889917248851526, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.331730Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:18.331740Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:18.331874Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845635143714018481204439862854, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.332047Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:18.332106Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:18.332114Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:18.332120Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:18.332128Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:18.332166Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:18.332255Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845635151350970527720194231878, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:18.332470Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:18.332486Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:18.332509Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:18.332516Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:18.332522Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:18.332528Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:18.332547Z  INFO e3_sync::sync: Sync finished. +Building normal 0x8966a013047aef67Cac52Bc96eB77bC11B5D2572 +2026-03-30T15:33:18.334247Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:18.334312Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:18.334690Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 21 }), ctx: EventContext { id: EventId(0x5541e35b0a8f6a830c67411be7d1d11567d8f82d035b83f903bcf1c0e1285838), causation_id: EventId(0x5541e35b0a8f6a830c67411be7d1d11567d8f82d035b83f903bcf1c0e1285838), origin_id: EventId(0x5541e35b0a8f6a830c67411be7d1d11567d8f82d035b83f903bcf1c0e1285838), seq: 5, ts: 32740845635157069461190570155232838, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.334837Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 22 }), ctx: EventContext { id: EventId(0x9c7c9ed8402112189404ec8baedb98e70091d08a1d62b0182978b47720860094), causation_id: EventId(0x9c7c9ed8402112189404ec8baedb98e70091d08a1d62b0182978b47720860094), origin_id: EventId(0x9c7c9ed8402112189404ec8baedb98e70091d08a1d62b0182978b47720860094), seq: 6, ts: 32740845635157825777697592246849094, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.335086Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:18.335138Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:18.335329Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:18.335658Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:18.335718Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:18.335727Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:18.380010Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:18.380031Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:18.380111Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:18.380118Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:18.380122Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:18.380581Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:18.380718Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:18.380728Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:18.380816Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:18.380823Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:18.380877Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:18.380881Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:18.380884Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:18.380892Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:18.380938Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:18.380945Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:18.380993Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xdf29a833f0e288439bd8a927b2710ae916786a5e79a3c0a27ee24ba37a069e7e), causation_id: EventId(0xdf29a833f0e288439bd8a927b2710ae916786a5e79a3c0a27ee24ba37a069e7e), origin_id: EventId(0xdf29a833f0e288439bd8a927b2710ae916786a5e79a3c0a27ee24ba37a069e7e), seq: 1, ts: 32740845636050168575519220333520602, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.482563Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:18.482583Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:18.482741Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 25 }), ctx: EventContext { id: EventId(0xa2c99ad1acd8458bd0b3a40746830696ce052d5e8a6eede4e08b9e7ea54fcbab), causation_id: EventId(0xa2c99ad1acd8458bd0b3a40746830696ce052d5e8a6eede4e08b9e7ea54fcbab), origin_id: EventId(0xa2c99ad1acd8458bd0b3a40746830696ce052d5e8a6eede4e08b9e7ea54fcbab), seq: 2, ts: 32740845637926017980374744637351642, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.483042Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:18.483051Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:18.483179Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845637934872417530125222127322, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.483349Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:18.483403Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:18.483413Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:18.483420Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:18.483428Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:18.483466Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:18.483551Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845637942306455391830171428570, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:18.483756Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:18.483771Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:18.483794Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:18.483800Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:18.483806Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:18.483812Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:18.483831Z  INFO e3_sync::sync: Sync finished. +Building normal 0x2B1eD59AC30f668B5b9EcF3D8718A44C15E0E479 +2026-03-30T15:33:18.485567Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:18.485641Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:18.486046Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 26 }), ctx: EventContext { id: EventId(0xa48306f7fadf633aa1c9b5c3f7d15dfd739d8bb917ab72cce543466d7254b9f5), causation_id: EventId(0xa48306f7fadf633aa1c9b5c3f7d15dfd739d8bb917ab72cce543466d7254b9f5), origin_id: EventId(0xa48306f7fadf633aa1c9b5c3f7d15dfd739d8bb917ab72cce543466d7254b9f5), seq: 5, ts: 32740845637947803585125795617810138, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.486213Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 27 }), ctx: EventContext { id: EventId(0x29be7fd43acf929ff9580376b0dc7b3e7f55210e0c6e59cfecdf2f7af81acfc9), causation_id: EventId(0x29be7fd43acf929ff9580376b0dc7b3e7f55210e0c6e59cfecdf2f7af81acfc9), origin_id: EventId(0x29be7fd43acf929ff9580376b0dc7b3e7f55210e0c6e59cfecdf2f7af81acfc9), seq: 6, ts: 32740845637948523008144670290323162, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.486485Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:18.486540Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:18.486736Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:18.487075Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:18.487135Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:18.487145Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:18.531876Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:18.531911Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:18.531988Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:18.531997Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:18.532002Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:18.532444Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:18.532598Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:18.532609Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:18.532705Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:18.532713Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:18.532766Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:18.532770Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:18.532773Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:18.532776Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:18.532828Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:18.532836Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:18.532892Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x5278f9b01ba39ab46d2800d5fb4291949392dc5fbb69fe4681cf69e5d9fcee35), causation_id: EventId(0x5278f9b01ba39ab46d2800d5fb4291949392dc5fbb69fe4681cf69e5d9fcee35), origin_id: EventId(0x5278f9b01ba39ab46d2800d5fb4291949392dc5fbb69fe4681cf69e5d9fcee35), seq: 1, ts: 32740845638851970745898670113990310, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.633083Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:18.633109Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:18.633283Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 30 }), ctx: EventContext { id: EventId(0x6d048b01fb637e20c63c999bda6ff541f0538faa3caa2ff572f1b9eed3b53c50), causation_id: EventId(0x6d048b01fb637e20c63c999bda6ff541f0538faa3caa2ff572f1b9eed3b53c50), origin_id: EventId(0x6d048b01fb637e20c63c999bda6ff541f0538faa3caa2ff572f1b9eed3b53c50), seq: 2, ts: 32740845640702585004861359751210662, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.633560Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:18.633567Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:18.633677Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845640711347208296371788228262, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.633793Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:18.633835Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:18.633840Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:18.633844Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:18.633850Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:18.633878Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:18.633937Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845640716881231518484653713062, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:18.634089Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:18.634100Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:18.634115Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:18.634124Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:18.634128Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:18.634132Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:18.634143Z  INFO e3_sync::sync: Sync finished. +Building normal 0x83A06c5Ac9E4207526C3eFA79812808428Dd5FaB +2026-03-30T15:33:18.635158Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:18.635220Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:18.635581Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 31 }), ctx: EventContext { id: EventId(0xd6d6fadb38ef2cbaf7bb2162d749d761ee41377837b2ea488cd0ee1d9759d226), causation_id: EventId(0xd6d6fadb38ef2cbaf7bb2162d749d761ee41377837b2ea488cd0ee1d9759d226), origin_id: EventId(0xd6d6fadb38ef2cbaf7bb2162d749d761ee41377837b2ea488cd0ee1d9759d226), seq: 5, ts: 32740845640720828834750258497758886, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.635698Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 32 }), ctx: EventContext { id: EventId(0x7240fc9e55072ae8c28597e6f86840018aa764c38de4499c86cf38f0abc11318), causation_id: EventId(0x7240fc9e55072ae8c28597e6f86840018aa764c38de4499c86cf38f0abc11318), origin_id: EventId(0x7240fc9e55072ae8c28597e6f86840018aa764c38de4499c86cf38f0abc11318), seq: 6, ts: 32740845640721400683816543493858982, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.635897Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:18.635944Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:18.636123Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:18.636378Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:18.636423Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:18.636429Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:18.666292Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:18.666315Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:18.666397Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:18.666404Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:18.666408Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:18.666814Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:18.666953Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:18.666963Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:18.667059Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:18.667069Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:18.667124Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:18.667128Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:18.667130Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:18.667133Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:18.667183Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:18.667191Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:18.667239Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x719d0da2ca46a80442c3007f3f686481ec98d5b501e48714a6759efc9e0bf6e7), causation_id: EventId(0x719d0da2ca46a80442c3007f3f686481ec98d5b501e48714a6759efc9e0bf6e7), origin_id: EventId(0x719d0da2ca46a80442c3007f3f686481ec98d5b501e48714a6759efc9e0bf6e7), seq: 1, ts: 32740845641330401492665991313290674, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.769538Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:18.769554Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:18.769677Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 35 }), ctx: EventContext { id: EventId(0x248633f4288c526a44957496c92e65def9ec41d673d3b4973f98b11168cc920d), causation_id: EventId(0x248633f4288c526a44957496c92e65def9ec41d673d3b4973f98b11168cc920d), origin_id: EventId(0x248633f4288c526a44957496c92e65def9ec41d673d3b4973f98b11168cc920d), seq: 2, ts: 32740845643219550999998660203836850, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.769907Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:18.769914Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:18.770015Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845643226450082282227576141234, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.770134Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:18.770173Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:18.770179Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:18.770183Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:18.770189Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:18.770215Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:18.770270Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845643231818084807677055661490, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:18.770402Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:18.770414Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:18.770428Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:18.770433Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:18.770437Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:18.770441Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:18.770453Z  INFO e3_sync::sync: Sync finished. +Building normal 0x409C702A02650Be6Be316e8d2996fe1f7aAD4448 +2026-03-30T15:33:18.771554Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:18.771608Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:18.771873Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 36 }), ctx: EventContext { id: EventId(0xf21539900b378d5e28a0134d91783f59e96ac4c03c76520d48c6018f09bfa6e4), causation_id: EventId(0xf21539900b378d5e28a0134d91783f59e96ac4c03c76520d48c6018f09bfa6e4), origin_id: EventId(0xf21539900b378d5e28a0134d91783f59e96ac4c03c76520d48c6018f09bfa6e4), seq: 5, ts: 32740845643235359859669829289571762, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.771972Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 37 }), ctx: EventContext { id: EventId(0x52cdf372b8b87ba22681396dfc223c5fa142137e9ecbd6b12c129af0c3a97326), causation_id: EventId(0x52cdf372b8b87ba22681396dfc223c5fa142137e9ecbd6b12c129af0c3a97326), origin_id: EventId(0x52cdf372b8b87ba22681396dfc223c5fa142137e9ecbd6b12c129af0c3a97326), seq: 6, ts: 32740845643235857921759819447465394, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.772140Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:18.772183Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:18.772322Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:18.772567Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:18.772618Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:18.772625Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:18.812734Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:18.812769Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:18.812855Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:18.812863Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:18.812867Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:18.813389Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:18.813591Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:18.813609Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:18.813878Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:18.813908Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:18.814006Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:18.814012Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:18.814016Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:18.814019Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:18.814100Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:18.814110Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:18.814200Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xa3e3dc636d243a2b0bafbc2c7d3e49026ddcf7cfce5c00e62ca188bad233f2d3), causation_id: EventId(0xa3e3dc636d243a2b0bafbc2c7d3e49026ddcf7cfce5c00e62ca188bad233f2d3), origin_id: EventId(0xa3e3dc636d243a2b0bafbc2c7d3e49026ddcf7cfce5c00e62ca188bad233f2d3), seq: 1, ts: 32740845644040135963373553900550425, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.915675Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:18.915700Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:18.915973Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 40 }), ctx: EventContext { id: EventId(0x4e50fd247b2700766b3bd6edc46ce1903ff9e0f5f6c46250ca104ee9b4ee77d3), causation_id: EventId(0x4e50fd247b2700766b3bd6edc46ce1903ff9e0f5f6c46250ca104ee9b4ee77d3), origin_id: EventId(0x4e50fd247b2700766b3bd6edc46ce1903ff9e0f5f6c46250ca104ee9b4ee77d3), seq: 2, ts: 32740845645915468859395014336936217, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.916562Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:18.916577Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:18.916721Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845645932034035573205514287385, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.916985Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:18.917094Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:18.917102Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:18.917107Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:18.917114Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:18.917170Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:18.917273Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845645942770040624104473327897, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:18.917452Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:18.917467Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:18.917485Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:18.917491Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:18.917495Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:18.917499Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:18.917513Z  INFO e3_sync::sync: Sync finished. +Building normal 0x271603Ea9118221DC5c7b6710391e8ADb19029df +2026-03-30T15:33:18.918743Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:18.918824Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:18.919224Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 41 }), ctx: EventContext { id: EventId(0xa08701f9fffa1e4b81d7ef3baf6f9be26dfef32b36d4b32ec8cb27af1ba13ab1), causation_id: EventId(0xa08701f9fffa1e4b81d7ef3baf6f9be26dfef32b36d4b32ec8cb27af1ba13ab1), origin_id: EventId(0xa08701f9fffa1e4b81d7ef3baf6f9be26dfef32b36d4b32ec8cb27af1ba13ab1), seq: 5, ts: 32740845645948027362685111695538457, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.919331Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 42 }), ctx: EventContext { id: EventId(0x108bd3085d4f3880c08980da759d76413154d1dc325ee9f6ed3c2be83a2e46c2), causation_id: EventId(0x108bd3085d4f3880c08980da759d76413154d1dc325ee9f6ed3c2be83a2e46c2), origin_id: EventId(0x108bd3085d4f3880c08980da759d76413154d1dc325ee9f6ed3c2be83a2e46c2), seq: 6, ts: 32740845645948617658495470401190169, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:18.919525Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:18.919572Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:18.919728Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:18.920070Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:18.920127Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:18.920134Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:18.958089Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:18.958116Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:18.958197Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:18.958206Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:18.958218Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:18.958750Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:18.958921Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:18.958932Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:18.959034Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:18.959042Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:18.959097Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:18.959101Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:18.959104Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:18.959107Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:18.959167Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:18.959174Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:18.959237Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x296aadcb1cf4283f6284c5a9f087eab939f0f63f130ff841c1506e853e416517), causation_id: EventId(0x296aadcb1cf4283f6284c5a9f087eab939f0f63f130ff841c1506e853e416517), origin_id: EventId(0x296aadcb1cf4283f6284c5a9f087eab939f0f63f130ff841c1506e853e416517), seq: 1, ts: 32740845646716444933819556771619320, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.060649Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:19.060690Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:19.060969Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 45 }), ctx: EventContext { id: EventId(0x00c954d0de7d161f772b9da7845568f371f9f9e87f398fe611d0d04e4a90410a), causation_id: EventId(0x00c954d0de7d161f772b9da7845568f371f9f9e87f398fe611d0d04e4a90410a), origin_id: EventId(0x00c954d0de7d161f772b9da7845568f371f9f9e87f398fe611d0d04e4a90410a), seq: 2, ts: 32740845648590191409850678186566136, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.061299Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:19.061306Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:19.061429Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845648601923539081557461393912, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.061522Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:19.061556Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:19.061561Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:19.061564Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:19.061568Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:19.061594Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:19.061636Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845648606830373005164202123768, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:19.061732Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:19.061741Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:19.061751Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:19.061754Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:19.061757Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:19.061759Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:19.061767Z  INFO e3_sync::sync: Sync finished. +Building normal 0xC4aA85Fd657631853cd6B99DD64DFeAb4E13494C +2026-03-30T15:33:19.062523Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:19.062567Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:19.062774Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 46 }), ctx: EventContext { id: EventId(0x7ccd5e68f63d24d9e75726d584a93619e2606dad935079538a1fc15e3e893e7c), causation_id: EventId(0x7ccd5e68f63d24d9e75726d584a93619e2606dad935079538a1fc15e3e893e7c), origin_id: EventId(0x7ccd5e68f63d24d9e75726d584a93619e2606dad935079538a1fc15e3e893e7c), seq: 5, ts: 32740845648609376023687336120246776, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.062840Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 47 }), ctx: EventContext { id: EventId(0xb6959fcac88ccabbdcd3f069b58899e35135df7ee62c184acb31f6a776716f8c), causation_id: EventId(0xb6959fcac88ccabbdcd3f069b58899e35135df7ee62c184acb31f6a776716f8c), origin_id: EventId(0xb6959fcac88ccabbdcd3f069b58899e35135df7ee62c184acb31f6a776716f8c), seq: 6, ts: 32740845648609708065080662892175864, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.062972Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:19.063004Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:19.063115Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:19.063293Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:19.063326Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:19.063330Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:19.093841Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:19.093883Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:19.093989Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:19.093997Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:19.094001Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:19.094557Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:19.094781Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:19.094797Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:19.094942Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:19.094958Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:19.095076Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:19.095080Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:19.095084Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:19.095087Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:19.095144Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:19.095151Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:19.095232Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xdf4bbe9c3d5f45b60b76340e9ec7e2709852a861e3cb3e11bc117b295e45b6a0), causation_id: EventId(0xdf4bbe9c3d5f45b60b76340e9ec7e2709852a861e3cb3e11bc117b295e45b6a0), origin_id: EventId(0xdf4bbe9c3d5f45b60b76340e9ec7e2709852a861e3cb3e11bc117b295e45b6a0), seq: 1, ts: 32740845649224814746218506731570771, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.197026Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:19.197068Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:19.197301Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 50 }), ctx: EventContext { id: EventId(0x08109f19ace30a5d5ecc9d69a1f0e24d85748052a8fc53f17ab29c7a956894c5), causation_id: EventId(0x08109f19ace30a5d5ecc9d69a1f0e24d85748052a8fc53f17ab29c7a956894c5), origin_id: EventId(0x08109f19ace30a5d5ecc9d69a1f0e24d85748052a8fc53f17ab29c7a956894c5), seq: 2, ts: 32740845651105847686158743419405907, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.197761Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:19.197774Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:19.197935Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845651119240022356256553879123, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.198154Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:19.198219Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:19.198229Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:19.198236Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:19.198243Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:19.198281Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:19.198369Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845651128389607416816491480659, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:19.198646Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:19.198663Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:19.198687Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:19.198696Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:19.198704Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:19.198711Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:19.198732Z  INFO e3_sync::sync: Sync finished. +Building normal 0xb068885143c60b270300e9149a2c26467Af211E9 +2026-03-30T15:33:19.200496Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:19.200590Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:19.201026Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 51 }), ctx: EventContext { id: EventId(0x558e82e724e2046c97c9555ba8fbb23065b2d4d851a474b626b5044279f8bb2f), causation_id: EventId(0x558e82e724e2046c97c9555ba8fbb23065b2d4d851a474b626b5044279f8bb2f), origin_id: EventId(0x558e82e724e2046c97c9555ba8fbb23065b2d4d851a474b626b5044279f8bb2f), seq: 5, ts: 32740845651135214902724089025578579, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.201157Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 52 }), ctx: EventContext { id: EventId(0x6d3a2bebe5cbb466cf0789fba678b53920a5cd252d8104a89b55df1abdff3bcb), causation_id: EventId(0x6d3a2bebe5cbb466cf0789fba678b53920a5cd252d8104a89b55df1abdff3bcb), origin_id: EventId(0x6d3a2bebe5cbb466cf0789fba678b53920a5cd252d8104a89b55df1abdff3bcb), seq: 6, ts: 32740845651136081899695553374504531, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.201328Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:19.201372Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:19.201508Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:19.201701Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:19.201738Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:19.201743Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:19.233064Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:19.233092Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:19.233172Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:19.233179Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:19.233184Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:19.233586Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:19.233727Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:19.233737Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:19.233822Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:19.233829Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:19.233881Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:19.233884Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:19.233887Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:19.233889Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:19.233938Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:19.233944Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:19.234003Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x3d1856679e2ee8b9a2052a8a6ae22170f75d66c705c41f0678836ec9a11a34e9), causation_id: EventId(0x3d1856679e2ee8b9a2052a8a6ae22170f75d66c705c41f0678836ec9a11a34e9), origin_id: EventId(0x3d1856679e2ee8b9a2052a8a6ae22170f75d66c705c41f0678836ec9a11a34e9), seq: 1, ts: 32740845651785204376905318161934356, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.336837Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:19.336883Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:19.337100Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 55 }), ctx: EventContext { id: EventId(0xb1dcad26493d2e684a5b5ae1406434591ba7073504e5df38b3ef3522cafbe96b), causation_id: EventId(0xb1dcad26493d2e684a5b5ae1406434591ba7073504e5df38b3ef3522cafbe96b), origin_id: EventId(0xb1dcad26493d2e684a5b5ae1406434591ba7073504e5df38b3ef3522cafbe96b), seq: 2, ts: 32740845653685071442544812301969428, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.337681Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:19.337700Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:19.337873Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845653700492920590433487120404, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.338159Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:19.338229Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:19.338238Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:19.338244Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:19.338252Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:19.338288Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:19.338396Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845653710970671224300512438292, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:19.338677Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:19.338693Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:19.338719Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:19.338727Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:19.338734Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:19.338740Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:19.338759Z  INFO e3_sync::sync: Sync finished. +Building normal 0xd9774e3479FbfAA672863639016809e3308c063c +2026-03-30T15:33:19.340345Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:19.340433Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:19.341035Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 56 }), ctx: EventContext { id: EventId(0x1865b63abe40ed38312853809f68178199b32779fc70ad2f072f7245c296221d), causation_id: EventId(0x1865b63abe40ed38312853809f68178199b32779fc70ad2f072f7245c296221d), origin_id: EventId(0x1865b63abe40ed38312853809f68178199b32779fc70ad2f072f7245c296221d), seq: 5, ts: 32740845653718312475365636913981460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.341423Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 57 }), ctx: EventContext { id: EventId(0x3956eb269ee5fcbcc918b8c551053dd0cf3e6a73b009d8d0efd2d954d61b0e24), causation_id: EventId(0x3956eb269ee5fcbcc918b8c551053dd0cf3e6a73b009d8d0efd2d954d61b0e24), origin_id: EventId(0x3956eb269ee5fcbcc918b8c551053dd0cf3e6a73b009d8d0efd2d954d61b0e24), seq: 6, ts: 32740845653719161025593027553355796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.341836Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:19.341913Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:19.342178Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:19.342555Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:19.342620Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:19.342629Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:19.382910Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:19.382934Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:19.382997Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:19.383004Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:19.383008Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:19.383499Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:19.383657Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:19.383668Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:19.383767Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:19.383775Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:19.383830Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:19.383833Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:19.383837Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:19.383840Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:19.383895Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:19.383902Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:19.383957Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xaa718b54d778d6fae15097354d8e16e5a1920dcc439d60bbab7029793218044d), causation_id: EventId(0xaa718b54d778d6fae15097354d8e16e5a1920dcc439d60bbab7029793218044d), origin_id: EventId(0xaa718b54d778d6fae15097354d8e16e5a1920dcc439d60bbab7029793218044d), seq: 1, ts: 32740845654551348990990286326528967, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.486389Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:19.486444Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:19.486746Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 60 }), ctx: EventContext { id: EventId(0x80a6ea514e0ee44b89d9b69e5cd3a0995292a864b0508b80ce81014f72e4eb89), causation_id: EventId(0x80a6ea514e0ee44b89d9b69e5cd3a0995292a864b0508b80ce81014f72e4eb89), origin_id: EventId(0x80a6ea514e0ee44b89d9b69e5cd3a0995292a864b0508b80ce81014f72e4eb89), seq: 2, ts: 32740845656444040273185107450985415, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.487491Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:19.487520Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:19.487980Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845656464368585154335376866247, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.488417Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:19.488522Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:19.488543Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:19.488558Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:19.488572Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:19.488637Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:19.488825Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845656484660003635415883643847, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:19.489351Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:19.489381Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:19.489442Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:19.489459Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:19.489474Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:19.489487Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:19.489531Z  INFO e3_sync::sync: Sync finished. +Building normal 0xC24560e5a5DCfdc16079f46a07b6aE6e4E95be27 +2026-03-30T15:33:19.492429Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:19.492577Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:19.493389Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 61 }), ctx: EventContext { id: EventId(0x1b15f05fd6264d5ec5b86356af37cf055d4b386b251c25c17d88e8ec1d37dbb1), causation_id: EventId(0x1b15f05fd6264d5ec5b86356af37cf055d4b386b251c25c17d88e8ec1d37dbb1), origin_id: EventId(0x1b15f05fd6264d5ec5b86356af37cf055d4b386b251c25c17d88e8ec1d37dbb1), seq: 5, ts: 32740845656498126126809223856323527, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.493744Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 62 }), ctx: EventContext { id: EventId(0x1751b189b0edf9be800db277ed7b1860ca7e8a53ad2f86e6eff2af21adaaf0aa), causation_id: EventId(0x1751b189b0edf9be800db277ed7b1860ca7e8a53ad2f86e6eff2af21adaaf0aa), origin_id: EventId(0x1751b189b0edf9be800db277ed7b1860ca7e8a53ad2f86e6eff2af21adaaf0aa), seq: 6, ts: 32740845656500044588192889649691591, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.494213Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:19.494291Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:19.494585Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:19.495087Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:19.495189Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:19.495205Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:19.540687Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:19.540732Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:19.540855Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:19.540866Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:19.540872Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:19.541561Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:19.541805Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:19.541820Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:19.541971Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:19.541982Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:19.542062Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:19.542068Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:19.542072Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:19.542082Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:19.542167Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:19.542177Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:19.542253Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xa890e90b46ac8fde649e74a4cc5a157659acec6174689ee046cdaa1af89cf862), causation_id: EventId(0xa890e90b46ac8fde649e74a4cc5a157659acec6174689ee046cdaa1af89cf862), origin_id: EventId(0xa890e90b46ac8fde649e74a4cc5a157659acec6174689ee046cdaa1af89cf862), seq: 1, ts: 32740845657470601580887047964834022, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.644434Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:19.644507Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:19.644874Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 65 }), ctx: EventContext { id: EventId(0x0e34e6b36621b85528c38bb3042acf9be75f5cb9974e4e6ae27bfa3b99a19342), causation_id: EventId(0x0e34e6b36621b85528c38bb3042acf9be75f5cb9974e4e6ae27bfa3b99a19342), origin_id: EventId(0x0e34e6b36621b85528c38bb3042acf9be75f5cb9974e4e6ae27bfa3b99a19342), seq: 2, ts: 32740845659359769534963790564931814, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.645535Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:19.645558Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:19.645839Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845659379581338098954623367398, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.646169Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:19.646279Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:19.646294Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:19.646305Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:19.646317Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:19.646383Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:19.646552Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845659394523200798659360176358, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:19.646956Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:19.646980Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:19.647018Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:19.647031Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:19.647042Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:19.647051Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:19.647082Z  INFO e3_sync::sync: Sync finished. +Building normal 0x72B6FDC38a7251ff9a0017AE44AE4d43b52a3dE1 +2026-03-30T15:33:19.649684Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:19.649873Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:19.650488Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 66 }), ctx: EventContext { id: EventId(0x5f07b4fff97ec54f55b58a6917bf1d252a1493490ea155bc5511969b05abbd29), causation_id: EventId(0x5f07b4fff97ec54f55b58a6917bf1d252a1493490ea155bc5511969b05abbd29), origin_id: EventId(0x5f07b4fff97ec54f55b58a6917bf1d252a1493490ea155bc5511969b05abbd29), seq: 5, ts: 32740845659405259205849558319216870, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.650757Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 67 }), ctx: EventContext { id: EventId(0x2433dbe3611780389b0247baf3be8d48d7ce7c06ae6eabfd262edf5a23b25aa6), causation_id: EventId(0x2433dbe3611780389b0247baf3be8d48d7ce7c06ae6eabfd262edf5a23b25aa6), origin_id: EventId(0x2433dbe3611780389b0247baf3be8d48d7ce7c06ae6eabfd262edf5a23b25aa6), seq: 6, ts: 32740845659406532031190644278278374, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.651165Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:19.651242Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:19.651668Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:19.652164Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:19.652250Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:19.652260Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:19.701583Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:19.701626Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:19.701762Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:19.701771Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:19.701775Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:19.702232Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:19.702403Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:19.702413Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:19.702507Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:19.702515Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:19.702571Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:19.702575Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:19.702579Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:19.702582Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:19.702638Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:19.702645Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:19.702706Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xf4d43affe25ddf13e44b58b2d463877b96b964f28dca22554d67220d849cfab5), causation_id: EventId(0xf4d43affe25ddf13e44b58b2d463877b96b964f28dca22554d67220d849cfab5), origin_id: EventId(0xf4d43affe25ddf13e44b58b2d463877b96b964f28dca22554d67220d849cfab5), seq: 1, ts: 32740845660431119537276691919970956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.804551Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:19.804615Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:19.804924Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 70 }), ctx: EventContext { id: EventId(0xb88602bcf2f42d4ff505b97c92d75caf3d1cbdd48bcac64ca13bb09d063b7adb), causation_id: EventId(0xb88602bcf2f42d4ff505b97c92d75caf3d1cbdd48bcac64ca13bb09d063b7adb), origin_id: EventId(0xb88602bcf2f42d4ff505b97c92d75caf3d1cbdd48bcac64ca13bb09d063b7adb), seq: 2, ts: 32740845662313148601396908923593356, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.805472Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:19.805485Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:19.805666Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845662329639990598805262738060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.805880Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:19.805943Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:19.805952Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:19.805959Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:19.805968Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:19.806008Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:19.806114Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845662339010936588249714958988, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:19.806377Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:19.806394Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:19.806417Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:19.806424Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:19.806433Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:19.806439Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:19.806458Z  INFO e3_sync::sync: Sync finished. +Building normal 0x2908dE23B4980cA49E43A972c9433FeA57262D14 +2026-03-30T15:33:19.808138Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:19.808266Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:19.808849Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 71 }), ctx: EventContext { id: EventId(0xe6cf19f109f11cc813766136dac8b31debf8b93b2b4e9bae9ab94534160c3cd6), causation_id: EventId(0xe6cf19f109f11cc813766136dac8b31debf8b93b2b4e9bae9ab94534160c3cd6), origin_id: EventId(0xe6cf19f109f11cc813766136dac8b31debf8b93b2b4e9bae9ab94534160c3cd6), seq: 5, ts: 32740845662345873125383669668160140, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.809075Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 72 }), ctx: EventContext { id: EventId(0x6a5ed469f9e7b8376e2ee4cee8cd2de305bff2afabbf8909bf7d53d9fcb8986b), causation_id: EventId(0x6a5ed469f9e7b8376e2ee4cee8cd2de305bff2afabbf8909bf7d53d9fcb8986b), origin_id: EventId(0x6a5ed469f9e7b8376e2ee4cee8cd2de305bff2afabbf8909bf7d53d9fcb8986b), seq: 6, ts: 32740845662346684782122912888431244, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.809425Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:19.809496Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:19.809784Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:19.810388Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:19.810507Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:19.810521Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:19.856432Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:19.856477Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:19.856584Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:19.856593Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:19.856598Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:19.857194Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:19.857384Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:19.857397Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:19.857532Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:19.857543Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:19.857618Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:19.857623Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:19.857626Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:19.857630Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:19.857702Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:19.857712Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:19.857782Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xe734e05bd3aa6c07ffb6a683d2970eebbd878bf3ea13611863dd93e02b02d96d), causation_id: EventId(0xe734e05bd3aa6c07ffb6a683d2970eebbd878bf3ea13611863dd93e02b02d96d), origin_id: EventId(0xe734e05bd3aa6c07ffb6a683d2970eebbd878bf3ea13611863dd93e02b02d96d), seq: 1, ts: 32740845663291287205905359100893796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.959530Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:19.959569Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:19.959813Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 75 }), ctx: EventContext { id: EventId(0x83d8b63716e8cca0e22289b67048bc5402394afc965cb1d4fc4aa925201326cf), causation_id: EventId(0x83d8b63716e8cca0e22289b67048bc5402394afc965cb1d4fc4aa925201326cf), origin_id: EventId(0x83d8b63716e8cca0e22289b67048bc5402394afc965cb1d4fc4aa925201326cf), seq: 2, ts: 32740845665171526935850426278009444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.960236Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:19.960247Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:19.960413Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845665184531890422391511898724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.960724Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:19.960811Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:19.960822Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:19.960829Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:19.960838Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:19.960895Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:19.961011Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845665196134892444754819865188, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:19.961256Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:19.961270Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:19.961295Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:19.961302Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:19.961308Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:19.961314Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:19.961334Z  INFO e3_sync::sync: Sync finished. +Building normal 0xD7f1Ef0C6c26112d961fa7FF94ce7cb54990b7fc +2026-03-30T15:33:19.963055Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:19.963122Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:19.963503Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 76 }), ctx: EventContext { id: EventId(0xe27c70fb353d015020d20dc31ae96ff4906ac993b3bd97a8864c8941a4200bce), causation_id: EventId(0xe27c70fb353d015020d20dc31ae96ff4906ac993b3bd97a8864c8941a4200bce), origin_id: EventId(0xe27c70fb353d015020d20dc31ae96ff4906ac993b3bd97a8864c8941a4200bce), seq: 5, ts: 32740845665202831060543511387101796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.963667Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 77 }), ctx: EventContext { id: EventId(0xfe47a01fa2ac4fad07615f551248bf8262b4f7bbec9da6ccacf40acc2848b14e), causation_id: EventId(0xfe47a01fa2ac4fad07615f551248bf8262b4f7bbec9da6ccacf40acc2848b14e), origin_id: EventId(0xfe47a01fa2ac4fad07615f551248bf8262b4f7bbec9da6ccacf40acc2848b14e), seq: 6, ts: 32740845665203624270538680897821284, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:19.963952Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:19.964016Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:19.964245Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:19.964625Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:19.964696Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:19.964704Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:20.007932Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:20.007968Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:20.008095Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:20.008106Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:20.008111Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:20.008682Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:20.008872Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:20.008885Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:20.009022Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:20.009032Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:20.009111Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:20.009115Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:20.009119Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:20.009122Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:20.009200Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:20.009210Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:20.009280Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x4b867ff701c64b2f28e110d7315eb68575da68d2e145ef082c4c95083aaf3fac), causation_id: EventId(0x4b867ff701c64b2f28e110d7315eb68575da68d2e145ef082c4c95083aaf3fac), origin_id: EventId(0x4b867ff701c64b2f28e110d7315eb68575da68d2e145ef082c4c95083aaf3fac), seq: 1, ts: 32740845666085876699351988173378922, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.111023Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:20.111063Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:20.111294Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 80 }), ctx: EventContext { id: EventId(0xc5052a8ab041b2af5d0169818e30eb13509e1b57a8d901085c89471d6d06e69a), causation_id: EventId(0xc5052a8ab041b2af5d0169818e30eb13509e1b57a8d901085c89471d6d06e69a), origin_id: EventId(0xc5052a8ab041b2af5d0169818e30eb13509e1b57a8d901085c89471d6d06e69a), seq: 2, ts: 32740845667966061089064834221839722, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.111563Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:20.111570Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:20.111662Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845667975671842727236898231658, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.111769Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:20.111807Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:20.111812Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:20.111815Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:20.111820Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:20.111843Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:20.111893Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845667980486442930475091203434, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:20.112008Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:20.112018Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:20.112030Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:20.112034Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:20.112038Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:20.112041Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:20.112051Z  INFO e3_sync::sync: Sync finished. +Building normal 0x86Bdc078a1579B3792127316C48a4FAabf5F7238 +2026-03-30T15:33:20.113059Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:20.113106Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:20.113344Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 81 }), ctx: EventContext { id: EventId(0x6bdf15d9bac90e34b639af739360a9f8102c1a07555152dc1c41a2f4e3ef7ab4), causation_id: EventId(0x6bdf15d9bac90e34b639af739360a9f8102c1a07555152dc1c41a2f4e3ef7ab4), origin_id: EventId(0x6bdf15d9bac90e34b639af739360a9f8102c1a07555152dc1c41a2f4e3ef7ab4), seq: 5, ts: 32740845667983585495934858295874922, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.113427Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 82 }), ctx: EventContext { id: EventId(0x4d7f408e9c20440cb629fae4004c8b4739eac2c081cb388be9557258277466c8), causation_id: EventId(0x4d7f408e9c20440cb629fae4004c8b4739eac2c081cb388be9557258277466c8), origin_id: EventId(0x4d7f408e9c20440cb629fae4004c8b4739eac2c081cb388be9557258277466c8), seq: 6, ts: 32740845667984009771048553615562090, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.113576Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:20.113616Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:20.113741Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:20.113961Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:20.114000Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:20.114005Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:20.144991Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:20.145014Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:20.145085Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:20.145093Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:20.145097Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:20.145479Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:20.145591Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:20.145601Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:20.145685Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:20.145693Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:20.145741Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:20.145745Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:20.145748Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:20.145751Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:20.145794Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:20.145801Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:20.145843Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xf119562a9bb0118b9b055e32b18fcc51e04e64b8c444c5a2c930dd14df8c81a9), causation_id: EventId(0xf119562a9bb0118b9b055e32b18fcc51e04e64b8c444c5a2c930dd14df8c81a9), origin_id: EventId(0xf119562a9bb0118b9b055e32b18fcc51e04e64b8c444c5a2c930dd14df8c81a9), seq: 1, ts: 32740845668606052427958111416957676, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.246980Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:20.247019Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:20.247248Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 85 }), ctx: EventContext { id: EventId(0xe583d471b5b894ddcfb37abd32d2509221724b35795cee9cb728cf94d443ed00), causation_id: EventId(0xe583d471b5b894ddcfb37abd32d2509221724b35795cee9cb728cf94d443ed00), origin_id: EventId(0xe583d471b5b894ddcfb37abd32d2509221724b35795cee9cb728cf94d443ed00), seq: 2, ts: 32740845670474006626350088032697068, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.247626Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:20.247633Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:20.247757Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845670485757202325041017076460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.247887Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:20.247942Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:20.247948Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:20.247952Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:20.247958Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:20.247989Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:20.248052Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845670491992201821954845522668, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:20.248196Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:20.248211Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:20.248227Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:20.248232Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:20.248238Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:20.248242Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:20.248257Z  INFO e3_sync::sync: Sync finished. +Building normal 0xbbcF193cc026118756Dfa33Aa63FB66c046cA342 +2026-03-30T15:33:20.249434Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:20.249510Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:20.249885Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 86 }), ctx: EventContext { id: EventId(0x43db0657714e2bc977832ff201e2b2b7a6ba205178113182b09c5e24e556ae2e), causation_id: EventId(0x43db0657714e2bc977832ff201e2b2b7a6ba205178113182b09c5e24e556ae2e), origin_id: EventId(0x43db0657714e2bc977832ff201e2b2b7a6ba205178113182b09c5e24e556ae2e), seq: 5, ts: 32740845670495921358309654980016876, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.250001Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 87 }), ctx: EventContext { id: EventId(0x1299f1bf4d0b940283e559d816e8e682d7817b34afa178c00d9b16d2f7ffc979), causation_id: EventId(0x1299f1bf4d0b940283e559d816e8e682d7817b34afa178c00d9b16d2f7ffc979), origin_id: EventId(0x1299f1bf4d0b940283e559d816e8e682d7817b34afa178c00d9b16d2f7ffc979), seq: 6, ts: 32740845670496493207375939976116972, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.250234Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:20.250289Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:20.250485Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:20.250819Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:20.250876Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:20.250884Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:20.287836Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:20.287870Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:20.287958Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:20.287966Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:20.287970Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:20.288436Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:20.288587Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:20.288597Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:20.288693Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:20.288700Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:20.288752Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:20.288756Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:20.288759Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:20.288761Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:20.288812Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:20.288819Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:20.288873Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x8fd5227d5ad3d7347321af86f938606900da9e9cd10211d03fccc95233353d43), causation_id: EventId(0x8fd5227d5ad3d7347321af86f938606900da9e9cd10211d03fccc95233353d43), origin_id: EventId(0x8fd5227d5ad3d7347321af86f938606900da9e9cd10211d03fccc95233353d43), seq: 1, ts: 32740845671244158191427462667764128, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.389919Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:20.389949Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:20.390159Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 90 }), ctx: EventContext { id: EventId(0x431d1741277dd1602010ecccc0da1a96d5d77f7132b52d54cceb4dcc97d7b993), causation_id: EventId(0x431d1741277dd1602010ecccc0da1a96d5d77f7132b52d54cceb4dcc97d7b993), origin_id: EventId(0x431d1741277dd1602010ecccc0da1a96d5d77f7132b52d54cceb4dcc97d7b993), seq: 2, ts: 32740845673110618203549468809822624, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.390502Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:20.390513Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:20.390653Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845673121446442320736316621216, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.390823Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:20.390887Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:20.390895Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:20.390901Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:20.390908Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:20.390945Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:20.391026Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845673129138734599473199645088, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:20.391219Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:20.391237Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:20.391257Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:20.391264Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:20.391271Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:20.391277Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:20.391295Z  INFO e3_sync::sync: Sync finished. +Building normal 0x9298861BdD67aB115B2a718c309A59574FA516cC +2026-03-30T15:33:20.392830Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:20.392913Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:20.393319Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 91 }), ctx: EventContext { id: EventId(0x1c025c28cc78d6952c947b6b285f90a9b7e266b410e429d23220152ee71c67e6), causation_id: EventId(0x1c025c28cc78d6952c947b6b285f90a9b7e266b410e429d23220152ee71c67e6), origin_id: EventId(0x1c025c28cc78d6952c947b6b285f90a9b7e266b410e429d23220152ee71c67e6), seq: 5, ts: 32740845673134303822940111874097568, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.393616Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 92 }), ctx: EventContext { id: EventId(0x39fb5b82f8cefa51bf2e20cab720299230eff550899435d2ce2def5aa48af7c2), causation_id: EventId(0x39fb5b82f8cefa51bf2e20cab720299230eff550899435d2ce2def5aa48af7c2), origin_id: EventId(0x39fb5b82f8cefa51bf2e20cab720299230eff550899435d2ce2def5aa48af7c2), seq: 6, ts: 32740845673135060139447133965713824, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.393848Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:20.393894Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:20.394085Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:20.394369Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:20.394418Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:20.394426Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:20.432194Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:20.432245Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:20.432351Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:20.432360Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:20.432365Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:20.432931Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:20.433130Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:20.433146Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:20.433300Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:20.433310Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:20.433388Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:20.433392Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:20.433396Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:20.433400Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:20.433479Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:20.433489Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:20.433567Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x93961185092e63395097b64fdba06e043980e86dfe86746bd8182225168012cd), causation_id: EventId(0x93961185092e63395097b64fdba06e043980e86dfe86746bd8182225168012cd), origin_id: EventId(0x93961185092e63395097b64fdba06e043980e86dfe86746bd8182225168012cd), seq: 1, ts: 32740845673912387487969179654996099, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.535349Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:20.535379Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:20.535607Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 95 }), ctx: EventContext { id: EventId(0xae8c5773ba88f5a5321d88c41cbdafe54b6a0524dc14078db6d7909f024a3f84), causation_id: EventId(0xae8c5773ba88f5a5321d88c41cbdafe54b6a0524dc14078db6d7909f024a3f84), origin_id: EventId(0xae8c5773ba88f5a5321d88c41cbdafe54b6a0524dc14078db6d7909f024a3f84), seq: 2, ts: 32740845675793328194189047795073155, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.535983Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:20.535992Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:20.536140Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845675805097216908074489004163, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.536311Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:20.536381Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:20.536398Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:20.536403Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:20.536411Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:20.536445Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:20.536521Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845675813121550580138143957123, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:20.536783Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:20.536803Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:20.536828Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:20.536836Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:20.536842Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:20.536847Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:20.536864Z  INFO e3_sync::sync: Sync finished. +Building normal 0x1460DE8c7D568C93D31bB4D35c4c86F19c078877 +2026-03-30T15:33:20.538450Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe +2026-03-30T15:33:20.538515Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +2026-03-30T15:33:20.538855Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 96 }), ctx: EventContext { id: EventId(0x12df52391ee37d02063a22747a7625c082e8c58e4e84603026da59cd73c7ae04), causation_id: EventId(0x12df52391ee37d02063a22747a7625c082e8c58e4e84603026da59cd73c7ae04), origin_id: EventId(0x12df52391ee37d02063a22747a7625c082e8c58e4e84603026da59cd73c7ae04), seq: 5, ts: 32740845675819541017517789067919491, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.538994Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 97 }), ctx: EventContext { id: EventId(0x62248f97755695a6eb31311f5d1942247e5e78579a1b6f46ce7fd42d369d5533), causation_id: EventId(0x62248f97755695a6eb31311f5d1942247e5e78579a1b6f46ce7fd42d369d5533), origin_id: EventId(0x62248f97755695a6eb31311f5d1942247e5e78579a1b6f46ce7fd42d369d5533), seq: 6, ts: 32740845675820334227512958578638979, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.539234Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:20.539288Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:20.539472Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! +2026-03-30T15:33:20.539763Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started +2026-03-30T15:33:20.539816Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +2026-03-30T15:33:20.539824Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +2026-03-30T15:33:20.579303Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +2026-03-30T15:33:20.579325Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +2026-03-30T15:33:20.579403Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +2026-03-30T15:33:20.579411Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +2026-03-30T15:33:20.579415Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... +2026-03-30T15:33:20.579877Z  INFO e3_sync::sync: Loading snapshot metadata... +2026-03-30T15:33:20.580019Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. +2026-03-30T15:33:20.580033Z  INFO e3_sync::sync: Loading EventStore events... +2026-03-30T15:33:20.580130Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +2026-03-30T15:33:20.580138Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +2026-03-30T15:33:20.580191Z  INFO e3_sync::sync: 0 EventStore events loaded. +2026-03-30T15:33:20.580195Z  INFO e3_sync::sync: Replaying events to actors... +2026-03-30T15:33:20.580198Z  INFO e3_sync::sync: Events replayed. +2026-03-30T15:33:20.580200Z  INFO e3_sync::sync: Loading historical blockchain events... +2026-03-30T15:33:20.580250Z  INFO e3_sync::sync: 0 historical blockchain events loaded. +2026-03-30T15:33:20.580256Z  INFO e3_sync::sync: Waiting until NetReady... +2026-03-30T15:33:20.580307Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x8d23e52d369c706a6fb81d40685e216972a5c8dfbc41b9b626310e26f2ce1235), causation_id: EventId(0x8d23e52d369c706a6fb81d40685e216972a5c8dfbc41b9b626310e26f2ce1235), origin_id: EventId(0x8d23e52d369c706a6fb81d40685e216972a5c8dfbc41b9b626310e26f2ce1235), seq: 1, ts: 32740845676620258837525301332616556, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.682394Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) +2026-03-30T15:33:20.682433Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +2026-03-30T15:33:20.682641Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 100 }), ctx: EventContext { id: EventId(0x92b5e3308f326f80a12a9d5925569e29bcf28c1a4dda276fd38f651517398c75), causation_id: EventId(0x92b5e3308f326f80a12a9d5925569e29bcf28c1a4dda276fd38f651517398c75), origin_id: EventId(0x92b5e3308f326f80a12a9d5925569e29bcf28c1a4dda276fd38f651517398c75), seq: 2, ts: 32740845678505977250460260246562156, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.682973Z  INFO e3_sync::sync: NetReady! +2026-03-30T15:33:20.682983Z  INFO e3_sync::sync: Loading historical libp2p events... +2026-03-30T15:33:20.683126Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845678516602575046716948292972, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.683291Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +2026-03-30T15:33:20.683352Z  INFO e3_net::net_sync_manager: Sync request event received +2026-03-30T15:33:20.683360Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +2026-03-30T15:33:20.683365Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +2026-03-30T15:33:20.683372Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +2026-03-30T15:33:20.683411Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +2026-03-30T15:33:20.683491Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845678524165740116937864455532, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:20.683676Z  INFO e3_sync::sync: 0 historical libp2p events loaded. +2026-03-30T15:33:20.683692Z  INFO e3_sync::sync: Historical events sorted. +2026-03-30T15:33:20.683712Z  INFO e3_sync::sync: Effects enabled +2026-03-30T15:33:20.683719Z  INFO e3_sync::sync: Publishing historical events to actors... +2026-03-30T15:33:20.683724Z  INFO e3_sync::sync: Historical events published. +2026-03-30T15:33:20.683729Z  INFO e3_sync::sync: Publishing SyncEnded event... +2026-03-30T15:33:20.683748Z  INFO e3_sync::sync: Sync finished. + + + ##################### + ## SETUP COMPLETED ## + ##################### + +Test setup: 19 registered nodes, 3 threshold, collector (observer): 0xD464d9bc7A3a829b37F5acE83BE79aeB914ba1e9 +IN FLUSH LOOP... +2026-03-30T15:33:20.685390Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 101 }), ctx: EventContext { id: EventId(0xb0b31c643cd5c435721a3f4a523a2adb707586d2be9949d7acb31986286c9691), causation_id: EventId(0xb0b31c643cd5c435721a3f4a523a2adb707586d2be9949d7acb31986286c9691), origin_id: EventId(0xb0b31c643cd5c435721a3f4a523a2adb707586d2be9949d7acb31986286c9691), seq: 5, ts: 32740845678529146361016839443391852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.685560Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 102 }), ctx: EventContext { id: EventId(0x8ec1c4c6430ad85bf63e198588b441ee825f8c8814ff16d77dafd4c1e8ca23ff), causation_id: EventId(0x8ec1c4c6430ad85bf63e198588b441ee825f8c8814ff16d77dafd4c1e8ca23ff), origin_id: EventId(0x8ec1c4c6430ad85bf63e198588b441ee825f8c8814ff16d77dafd4c1e8ca23ff), seq: 6, ts: 32740845678529828890547566696801644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.685713Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.685845Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.685974Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.686105Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.686227Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.686347Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.686468Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.686587Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.686704Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.686824Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.686941Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.687059Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.687177Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.687302Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.687420Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.687541Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.687659Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.687771Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.687892Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.688006Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.688118Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.688231Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.688345Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.688460Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.688573Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.688686Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.688796Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.688910Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.689017Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.689133Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.689244Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.689359Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.689470Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.689581Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.689696Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.689806Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.689926Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.690035Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.690154Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.690273Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.690384Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.690491Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.690604Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.690718Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.690826Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.690946Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.691058Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.691171Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.691282Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.691396Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.691507Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.691621Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.691734Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.691849Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.691961Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.692070Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.692185Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.692301Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.692587Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.692708Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.692821Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.692943Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.693053Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.693158Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.693269Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.693380Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.693488Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.693604Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.693715Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.693829Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.693994Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.694116Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.694217Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.694323Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.694430Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.694533Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.694634Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.694731Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.694823Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.694921Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695021Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695116Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695211Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695305Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695398Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695496Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695590Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695680Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695773Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695863Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.695952Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696048Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696141Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696232Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696332Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696423Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696512Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696604Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696690Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696780Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696872Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.696962Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697050Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697143Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697232Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697319Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697410Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697500Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697593Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697686Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697777Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697865Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.697960Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.698046Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.698139Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.698228Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.698335Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.698433Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.698535Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.698632Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.698724Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.698818Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.698916Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699019Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699115Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699211Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699309Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699405Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699497Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699591Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699689Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699793Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699892Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.699985Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.700082Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.700185Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.700279Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.700377Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.700471Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.700561Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.700657Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.700750Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.700842Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.700936Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.701026Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.701128Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.701229Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.701329Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.701428Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.701522Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.701619Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.701713Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.701821Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.701919Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.702003Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.702090Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.702175Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.702263Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.702354Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.702467Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.702646Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.702746Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.702835Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.702923Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703002Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703083Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703162Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703244Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703326Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703409Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703491Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703576Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703657Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703739Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703848Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.703939Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704027Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704118Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704208Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704298Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704390Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704479Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704561Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704649Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704732Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704814Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.704918Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705071Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705157Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705241Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705327Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705411Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705498Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705585Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705667Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705752Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705832Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705915Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.705998Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706081Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706164Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706244Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706324Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706399Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706479Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706562Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706642Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706723Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706803Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706884Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.706968Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707047Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707131Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707215Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707292Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707372Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707457Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707537Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707616Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707699Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707794Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707896Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.707982Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708062Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708143Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708231Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708310Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708388Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708476Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708555Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708634Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708717Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708804Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708891Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.708975Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709061Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709143Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709228Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709311Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709392Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709474Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709558Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709639Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709724Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709809Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709888Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.709962Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710034Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710108Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710206Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710285Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710358Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710431Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710504Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710572Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710646Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710725Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710801Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710872Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.710947Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711022Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711118Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711205Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711284Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711375Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711450Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711522Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711597Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711668Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711740Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711811Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711885Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.711955Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712023Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712096Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712164Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712232Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712304Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712374Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712444Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712518Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712589Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712664Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712737Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712808Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712880Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.712955Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713026Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713145Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713218Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713300Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713382Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713457Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713532Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713609Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713683Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713758Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713827Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713897Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.713966Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714063Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714134Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714208Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714282Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714348Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714416Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714485Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714555Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714626Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714695Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714755Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714825Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714891Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.714961Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715031Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715100Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715167Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715237Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715301Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715369Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715455Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715522Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715589Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715657Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715724Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715792Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715865Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.715940Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716009Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716086Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716155Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716218Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716284Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716354Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716441Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716512Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716580Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716650Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716722Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716791Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716859Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716926Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.716992Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717066Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717138Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717204Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717275Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717341Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717431Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717516Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717593Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717676Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717747Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717821Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717893Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.717993Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718069Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718144Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718220Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718341Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718424Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718517Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718650Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718721Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718793Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718861Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.718932Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719001Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719068Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719141Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719210Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719275Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719344Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719413Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719480Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719548Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719615Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719682Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719749Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719820Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719886Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.719954Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720022Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720086Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720160Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720227Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720297Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720365Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720436Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720503Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720568Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720633Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720699Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720767Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720868Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720930Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.720998Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721068Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721131Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721203Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721269Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721334Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721401Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721467Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721531Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721597Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721677Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721750Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721816Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721882Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.721948Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722014Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722078Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722142Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722208Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722274Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722338Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722402Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722467Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722528Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722591Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722653Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722710Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722775Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722839Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722898Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.722960Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723037Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723112Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723175Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723242Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723304Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723369Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723435Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723495Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723560Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723628Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723693Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723754Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723818Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723880Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.723937Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724003Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724064Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724125Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724187Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724247Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724307Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724367Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724428Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724488Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724551Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724612Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724672Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724733Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724794Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724855Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724912Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.724971Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725032Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725092Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725151Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725211Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725285Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725352Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725431Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725497Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725564Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725628Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725691Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725752Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725813Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725869Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725931Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.725991Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726049Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726110Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726172Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726233Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726295Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726356Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726417Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726476Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726551Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726613Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726671Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726731Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726791Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726850Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726909Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.726966Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727025Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727098Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727156Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727227Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727288Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727347Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727405Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727464Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727519Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727581Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727642Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727736Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727796Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727853Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727911Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.727967Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728027Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728081Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728140Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728228Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728298Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728366Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728433Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728494Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728559Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728618Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728674Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728737Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728797Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728855Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.728918Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729004Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729072Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729139Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729202Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729263Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729325Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729387Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729448Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729508Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729574Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729635Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729692Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729759Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729818Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729877Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729935Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.729993Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730053Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730137Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730197Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730254Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730316Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730373Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730433Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730493Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730551Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730609Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730668Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730728Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730797Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730862Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730921Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.730979Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731040Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731097Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731154Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731213Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731270Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731327Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731389Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731448Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731503Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731557Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731613Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731668Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731730Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731789Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731844Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731904Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.731958Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732013Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732070Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732144Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732197Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732256Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732312Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732366Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732428Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732498Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732562Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732631Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732695Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732754Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732814Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732876Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.732937Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733015Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733077Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733136Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733200Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733262Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733320Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733380Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733442Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733503Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733561Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733619Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733679Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733734Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733789Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733844Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733900Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.733971Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734025Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734078Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734136Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734190Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734248Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734308Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734364Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734415Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734470Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734524Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734576Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734630Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734684Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734738Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734811Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734867Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734926Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.734980Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735037Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735090Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735145Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735201Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735260Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735314Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735369Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735424Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735485Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735543Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735602Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735661Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735710Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735764Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735819Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735885Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.735950Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736036Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736104Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736166Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736229Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736295Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736358Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736421Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736485Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736547Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736615Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736677Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736738Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736802Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736884Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.736940Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737003Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737065Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737127Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737184Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737259Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737329Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737385Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737443Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737502Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737559Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737618Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737671Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737728Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737781Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737837Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737892Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.737959Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738013Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738063Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738118Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738179Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738234Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738293Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738346Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738397Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738454Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738505Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738558Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738610Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738663Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738715Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738766Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738824Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738872Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738937Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.738989Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739041Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739091Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739139Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739190Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739242Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739307Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739369Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739425Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739484Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739537Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739590Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739643Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739696Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739749Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739803Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739855Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739920Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.739970Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740024Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740074Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740129Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740180Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740230Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740284Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740335Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740386Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740437Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740486Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740538Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740591Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740640Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740702Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740757Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740810Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740862Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740913Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.740967Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741016Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741070Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741120Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741170Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741218Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741265Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741316Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741370Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741420Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741469Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741519Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741572Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741625Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741694Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741747Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741792Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741838Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741888Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741935Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.741984Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742030Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742075Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742124Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742178Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742225Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742271Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742328Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742381Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742436Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742491Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742543Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742598Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742664Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742717Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742768Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742821Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742870Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742922Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.742972Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743025Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743108Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743182Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743238Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743299Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743357Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743412Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743467Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743524Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743582Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743641Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743697Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743750Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743806Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743858Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743910Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.743961Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744015Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744068Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744122Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744171Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744221Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744272Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744321Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744427Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744479Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744532Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744582Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744633Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744682Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744726Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744779Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744831Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744883Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744932Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.744982Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745031Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745080Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745130Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745177Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745225Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745275Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745326Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745377Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745426Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745487Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745541Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745596Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745662Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745716Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745769Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745825Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745883Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745947Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.745998Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746050Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746103Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746157Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746220Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746287Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746350Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746401Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746455Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746509Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746564Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746620Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746676Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746727Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: [38;5;46mEventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746787Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746842Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746905Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.746962Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747022Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747079Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747131Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747184Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747235Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747292Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747343Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747404Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747471Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747522Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747573Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747628Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747681Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747734Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747786Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747840Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747897Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.747948Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748000Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748056Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748125Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748178Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748245Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748293Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748352Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748406Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748458Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748511Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748572Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748625Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748677Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748745Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748815Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748872Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748929Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.748986Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749045Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749108Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749175Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749235Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749298Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749366Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749426Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749489Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749552Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749606Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749672Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749729Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749785Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749837Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749893Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.749947Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750021Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750077Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750155Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750216Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750272Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750324Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750380Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750436Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750487Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750545Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750601Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750654Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750716Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750770Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750820Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750876Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750935Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.750990Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751044Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751093Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751150Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751203Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751257Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751309Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751364Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751456Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751515Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751582Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751643Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751711Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751771Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751825Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751882Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751948Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.751998Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752062Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752116Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752186Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752241Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752296Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752351Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752409Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752470Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752523Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752575Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752628Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752679Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752731Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752786Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752843Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752899Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.752987Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753041Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753100Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753152Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753212Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753268Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753326Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753387Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753441Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753493Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753545Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753594Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753645Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753711Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753759Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753811Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753863Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753922Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.753974Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754027Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754079Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754131Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754181Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754234Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754284Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754340Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754397Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754448Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754508Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754559Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754616Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754667Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754722Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754784Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754835Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754903Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.754959Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755014Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755062Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755114Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755166Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755219Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755270Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755321Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755382Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755438Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755494Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755551Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755618Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755672Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755727Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755782Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755835Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755887Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755937Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.755991Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756048Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756100Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756149Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756202Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756253Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756302Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756355Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756405Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756455Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756506Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756571Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756619Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756671Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756728Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756778Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756831Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756882Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756931Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.756985Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757036Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757088Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757137Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757185Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757236Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757299Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757353Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757406Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757462Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757517Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757576Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757630Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757681Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757740Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757789Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757838Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757889Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757936Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.757996Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758050Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758107Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758162Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758215Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758289Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758336Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758389Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758442Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758512Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758568Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758624Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758685Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758737Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758793Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758846Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758901Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.758953Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759010Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759061Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759115Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759169Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759236Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759298Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759354Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759406Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759460Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759511Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759566Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759615Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759668Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759722Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759772Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759823Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759876Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759926Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.759983Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760034Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760088Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760155Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760203Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760258Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760312Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760366Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760413Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760472Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760523Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760576Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760629Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760676Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760725Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760782Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760839Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760886Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760938Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.760987Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761041Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761102Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761150Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761199Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761250Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761303Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761355Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761415Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761476Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761527Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761584Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761643Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761699Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761753Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761807Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761859Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761915Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.761968Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762029Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762098Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762150Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762206Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762257Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762310Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762364Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762421Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762475Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762529Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762585Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762647Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762701Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762759Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762814Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762874Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762927Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.762979Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763036Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763086Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763142Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763195Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763251Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763303Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763352Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763403Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763461Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763508Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763561Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763612Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763666Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763713Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763765Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763836Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763903Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.763958Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764011Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764065Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764145Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764198Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764255Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764328Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764374Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764430Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764484Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764535Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764590Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764646Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764701Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764752Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764801Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764867Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.764981Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765050Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765107Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765233Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765289Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765341Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765395Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765447Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765499Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765553Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765604Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765658Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765710Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765768Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765829Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765884Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765942Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.765998Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766059Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766124Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766173Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766229Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766285Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766339Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766395Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766445Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766496Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766552Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766608Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766661Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766716Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766786Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766834Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766891Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.766957Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767008Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767060Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767120Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767172Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767225Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767279Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767331Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767383Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767437Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767487Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767541Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767591Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767642Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767691Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767742Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767799Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767849Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767900Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.767952Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.768004Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.768059Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:20.768270Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +2026-03-30T15:33:20.768347Z  INFO e3_net::net_event_translator: NetEventTranslator is running +2026-03-30T15:33:20.769043Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.769116Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.769129Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769145Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.769169Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.769179Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769192Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.769212Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.769220Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769231Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.769258Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.769266Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769279Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.769302Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.769309Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769323Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.769349Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.769357Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769370Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.769397Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.769406Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769419Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.769447Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.769454Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769470Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.769498Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.769506Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769521Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.769549Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.769556Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769573Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.769606Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.769613Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769631Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.769667Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.769675Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769694Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.769731Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.769738Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769757Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.769795Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.769803Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769823Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.769869Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.769878Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769898Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.769937Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.769945Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.769966Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.770011Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.770020Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770043Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.770093Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.770102Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770124Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.770167Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.770175Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770198Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.770334Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.770353Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.770361Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770373Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.770389Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.770396Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770407Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.770426Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.770434Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770446Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.770467Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.770474Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770486Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.770510Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.770518Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770531Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.770556Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.770564Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770580Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.770607Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.770615Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770629Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.770661Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.770669Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770681Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.770711Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.770719Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770734Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.770764Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.770773Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770792Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.770827Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.770835Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770849Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.770877Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.770884Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770902Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.770932Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.770939Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.770958Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.770994Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.771002Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771023Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.771059Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.771066Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771083Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.771120Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.771128Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771145Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.771182Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.771189Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771208Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.771246Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.771252Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771271Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.771312Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.771320Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771338Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +IN FLUSH LOOP... +2026-03-30T15:33:20.771605Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.771624Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.771631Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771640Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.771659Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.771665Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771674Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.771691Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.771697Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771707Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.771728Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.771734Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771744Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.771763Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.771770Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771780Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.771802Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.771808Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771820Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.771841Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.771850Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771865Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.771893Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.771901Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771916Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.771946Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.771953Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.771970Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.771998Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.772006Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772023Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.772052Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.772060Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772080Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.772112Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.772120Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772138Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.772169Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.772178Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772197Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.772229Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.772236Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772255Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.772303Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.772311Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772328Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.772373Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.772382Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772403Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.772448Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.772457Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772480Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.772525Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.772533Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772554Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.772601Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.772610Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772632Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.772780Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.772799Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.772807Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772817Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.772836Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.772844Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772854Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.772870Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.772877Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772888Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.772910Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.772916Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772928Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.772949Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.772956Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.772969Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.772992Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.772999Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773012Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.773037Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.773044Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773060Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.773091Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.773099Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773114Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.773141Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.773148Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773163Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.773190Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.773197Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773212Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.773242Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.773249Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773266Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.773300Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.773307Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773329Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.773366Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.773373Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773392Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.773426Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.773433Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773452Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.773499Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.773508Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773527Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.773569Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.773577Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773598Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.773640Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.773648Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773671Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.773713Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.773721Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773743Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.773784Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.773792Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773813Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.773945Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.773963Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.773970Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.773980Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.773999Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.774007Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774017Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.774037Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.774044Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774055Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.774078Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.774084Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774097Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.774118Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.774126Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774138Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.774160Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.774167Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774181Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.774206Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.774213Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774227Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.774259Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.774267Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774282Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.774314Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.774322Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774336Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.774364Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.774371Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774387Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.774418Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.774425Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774442Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.774476Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.774483Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774501Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.774537Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.774545Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774563Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.774598Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.774605Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774624Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.774669Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.774679Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774698Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.774741Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.774749Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774769Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.774812Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.774821Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774843Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.774890Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.774898Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774919Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.774965Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.774974Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.774995Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.775126Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.775144Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.775152Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775162Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.775177Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.775184Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775195Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.775213Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.775220Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775232Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.775253Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.775260Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775272Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.775293Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.775300Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775312Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.775334Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.775341Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775354Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.775378Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.775385Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775398Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.775424Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.775431Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775447Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.775477Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.775484Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775500Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.775529Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.775536Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775555Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.775588Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.775595Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775612Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.775649Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.775657Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775674Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.775714Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.775722Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775740Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.775779Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.775786Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775805Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.775850Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.775858Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775878Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.775919Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.775927Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.775947Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.775990Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.775998Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776021Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.776069Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.776077Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776098Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.776146Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.776154Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776175Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.776306Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.776325Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.776333Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776343Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.776359Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.776366Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776378Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.776396Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.776403Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776415Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.776437Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.776444Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776456Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.776477Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.776484Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776496Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.776518Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.776525Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776538Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.776562Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.776569Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776582Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.776609Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.776617Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776631Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.776656Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.776664Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776678Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.776706Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.776713Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776729Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.776758Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.776765Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776783Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.776820Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.776828Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776846Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.776882Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.776891Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776909Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.776944Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.776951Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.776972Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.777016Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.777025Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777045Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.777086Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.777095Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777115Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.777158Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.777167Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777190Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.777235Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.777243Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777264Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.777302Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.777310Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777333Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.777465Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.777483Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.777490Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777500Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.777519Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.777527Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777537Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.777553Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.777559Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777569Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.777593Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.777599Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777611Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.777635Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.777642Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777655Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.777678Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.777685Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777699Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.777722Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.777729Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777744Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.777770Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.777778Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777793Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.777823Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.777831Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777845Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.777872Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.777879Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777895Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.777928Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.777936Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.777953Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.777982Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.777989Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778009Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.778040Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.778047Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778066Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.778096Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.778103Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778122Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.778158Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.778167Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778186Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.778223Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.778231Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778251Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.778290Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.778298Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778321Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.778392Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.778408Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778437Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.778489Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.778499Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778524Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.778672Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.778694Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.778702Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778714Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.778734Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.778744Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778759Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.778778Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.778785Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778794Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.778816Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.778823Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778837Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.778859Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.778866Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778877Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.778898Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.778905Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778920Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.778946Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.778955Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.778968Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.779000Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.779010Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779025Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.779056Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.779065Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779081Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.779117Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.779125Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779142Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.779177Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.779185Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779203Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.779237Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.779244Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779262Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.779299Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.779307Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779326Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.779364Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.779371Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779390Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.779431Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.779439Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779458Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.779493Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.779500Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779521Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.779565Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.779575Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779597Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.779644Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.779654Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779677Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.779719Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.779727Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779749Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.779887Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.779907Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.779914Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779922Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.779938Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.779944Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779954Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.779970Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.779977Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.779989Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.780012Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.780019Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780029Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.780068Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.780078Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780091Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.780116Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.780123Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780134Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.780159Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.780167Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780181Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.780212Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.780220Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780236Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.780271Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.780279Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780295Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.780326Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.780334Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780356Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.780389Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.780396Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780414Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.780449Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.780457Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780475Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.780509Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.780517Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780535Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.780573Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.780581Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780600Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.780640Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.780648Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780669Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.780708Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.780716Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780736Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.780778Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.780787Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780810Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.780855Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.780863Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780884Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.780933Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.780941Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.780962Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.781093Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.781112Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.781120Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781130Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.781149Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.781157Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781168Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.781183Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.781190Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781201Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.781222Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.781229Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781241Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.781262Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.781269Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781282Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.781304Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.781311Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781324Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.781348Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.781355Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781370Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.781399Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.781406Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781421Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.781453Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.781460Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781476Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.781504Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.781511Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781527Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.781558Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.781565Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781585Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.781618Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.781625Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781643Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.781679Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.781687Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781705Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.781740Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.781748Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781767Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.781808Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.781820Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781841Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.781883Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.781890Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781910Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.781953Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.781961Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.781984Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.782029Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.782037Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782058Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.782104Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.782112Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782135Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.782267Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.782286Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.782293Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782304Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.782322Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.782330Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782339Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.782355Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.782361Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782371Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.782390Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.782397Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782407Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.782426Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.782433Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782444Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.782464Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.782472Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782486Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.782512Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.782519Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782533Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.782561Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.782568Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782584Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.782609Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.782620Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782636Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.782669Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.782678Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782692Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.782726Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.782741Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782756Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.782788Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.782797Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782817Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.782854Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.782862Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782880Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.782915Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.782922Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.782944Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.782989Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.782998Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783019Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.783053Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.783062Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783081Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.783117Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.783125Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783148Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.783194Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.783202Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783223Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.783271Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.783279Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783301Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.783447Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.783466Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.783474Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783485Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.783514Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.783521Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783533Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.783553Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.783560Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783569Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.783588Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.783594Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783606Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.783629Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.783637Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783648Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.783670Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.783676Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783687Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.783710Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.783717Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783731Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.783763Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.783771Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783785Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.783809Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.783816Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783833Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.783862Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.783869Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783886Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.783914Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.783921Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783938Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.783968Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.783975Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.783993Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.784023Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.784031Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784050Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.784082Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.784090Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784109Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.784146Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.784154Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784173Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.784208Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.784216Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784240Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.784277Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.784286Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784332Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.784389Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.784412Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784436Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.784478Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.784487Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784510Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.784673Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.784695Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.784704Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784716Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.784733Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.784741Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784750Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.784769Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.784775Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784786Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.784809Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.784816Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784828Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.784856Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.784864Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784877Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.784903Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.784912Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784926Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.784950Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.784959Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.784971Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.785000Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.785007Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785021Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.785048Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.785055Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785071Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.785101Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.785108Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785128Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.785161Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.785168Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785185Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.785221Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.785229Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785247Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.785282Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.785290Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785308Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.785350Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.785358Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785378Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.785423Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.785434Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785455Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.785496Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.785504Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785524Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.785568Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.785578Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785602Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.785644Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.785652Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785673Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.785721Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.785729Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785750Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.785921Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.785941Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.785949Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785960Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.785976Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.785983Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.785994Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.786013Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.786020Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786032Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.786056Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.786063Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786075Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.786096Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.786103Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786116Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.786138Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.786145Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786159Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.786183Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.786190Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786204Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.786231Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.786238Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786253Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.786281Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.786288Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786304Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.786333Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.786340Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786357Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.786388Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.786395Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786415Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.786448Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.786455Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786473Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.786510Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.786518Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786537Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.786572Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.786580Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786599Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.786649Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.786659Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786679Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.786716Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.786724Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786745Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.786788Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.786797Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786820Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.786864Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.786873Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786895Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.786941Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.786951Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.786976Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.787102Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.787121Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.787129Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787139Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.787158Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.787167Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787178Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.787201Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.787209Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787221Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.787242Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.787249Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787262Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.787283Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.787289Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787302Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.787325Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.787332Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787347Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.787370Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.787377Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787392Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.787420Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.787427Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787441Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.787468Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.787476Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787490Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.787518Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.787526Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787541Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.787570Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.787578Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787595Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.787628Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.787636Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787657Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.787694Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.787701Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787719Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.787757Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.787765Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787784Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.787825Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.787833Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787853Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.787895Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.787903Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787924Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.787968Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.787976Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.787999Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.788043Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.788052Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788073Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.788122Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.788130Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788151Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.788286Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.788303Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.788311Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788322Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.788343Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.788351Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788362Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.788382Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.788389Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788400Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.788426Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.788433Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788444Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.788465Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.788472Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788487Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.788509Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.788516Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788529Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.788552Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.788559Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788572Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.788599Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.788606Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788620Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.788648Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.788655Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788670Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.788699Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.788706Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788723Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.788753Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.788760Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788777Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.788813Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.788820Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788837Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.788871Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.788879Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788897Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.788932Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.788939Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.788960Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.789001Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.789010Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789029Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.789070Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.789079Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789103Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.789145Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.789153Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789176Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.789223Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.789231Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789252Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.789298Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.789306Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789327Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.789465Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.789485Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.789492Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789503Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.789520Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.789527Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789537Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.789555Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.789562Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789574Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.789596Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.789603Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789614Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.789636Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.789642Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789655Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.789677Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.789684Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789697Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.789720Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.789727Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789744Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.789771Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.789778Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789793Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.789821Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.789828Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789843Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.789876Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.789883Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789901Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.789934Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.789941Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.789958Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.789990Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.789997Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790015Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.790052Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.790059Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790078Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.790113Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.790120Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790139Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.790184Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.790192Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790212Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.790253Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.790261Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790281Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.790323Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.790331Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790354Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.790394Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.790401Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790423Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.790474Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.790482Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790502Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.790635Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.790653Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.790661Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790671Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.790689Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.790698Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790707Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.790730Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.790743Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790755Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.790781Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.790789Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790801Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.790823Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.790831Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790844Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.790867Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.790875Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790887Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.790911Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.790918Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790933Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.790961Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.790969Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.790984Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.791012Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.791019Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791033Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.791065Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.791073Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791090Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.791123Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.791131Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791149Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.791182Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.791189Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791207Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.791243Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.791252Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791271Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.791311Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.791320Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791339Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.791381Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.791387Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791406Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.791449Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.791457Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791478Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.791514Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.791523Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791545Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.791592Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.791602Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791622Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.791667Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.791675Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791700Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +2026-03-30T15:33:20.791806Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 +2026-03-30T15:33:20.791823Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 +2026-03-30T15:33:20.791831Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791841Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true +2026-03-30T15:33:20.791856Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 +2026-03-30T15:33:20.791863Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791874Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true +2026-03-30T15:33:20.791894Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 +2026-03-30T15:33:20.791901Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791915Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true +2026-03-30T15:33:20.791937Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 +2026-03-30T15:33:20.791944Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.791956Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true +2026-03-30T15:33:20.791983Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 +2026-03-30T15:33:20.791991Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792002Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true +2026-03-30T15:33:20.792022Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 +2026-03-30T15:33:20.792028Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792039Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true +2026-03-30T15:33:20.792060Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 +2026-03-30T15:33:20.792066Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792077Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true +2026-03-30T15:33:20.792102Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 +2026-03-30T15:33:20.792108Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792120Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true +2026-03-30T15:33:20.792145Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 +2026-03-30T15:33:20.792151Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792164Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true +2026-03-30T15:33:20.792189Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 +2026-03-30T15:33:20.792195Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792208Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true +2026-03-30T15:33:20.792235Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 +2026-03-30T15:33:20.792241Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792254Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true +2026-03-30T15:33:20.792286Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 +2026-03-30T15:33:20.792293Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792312Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true +2026-03-30T15:33:20.792348Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 +2026-03-30T15:33:20.792356Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792375Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true +2026-03-30T15:33:20.792412Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 +2026-03-30T15:33:20.792421Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792438Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true +2026-03-30T15:33:20.792486Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 +2026-03-30T15:33:20.792493Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792513Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true +2026-03-30T15:33:20.792551Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 +2026-03-30T15:33:20.792558Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792578Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true +2026-03-30T15:33:20.792625Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 +2026-03-30T15:33:20.792633Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792656Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true +2026-03-30T15:33:20.792705Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 +2026-03-30T15:33:20.792711Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792733Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true +2026-03-30T15:33:20.792782Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 +2026-03-30T15:33:20.792789Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 +2026-03-30T15:33:20.792811Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +IN FLUSH LOOP... +PER-EVENT TIMEOUT, BREAKING LOOP... + + + ############################### + ## COMMITTEE SETUP COMPLETED ## + ############################### + +2026-03-30T15:33:21.805655Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.806712Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.807466Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.808287Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.809184Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.809972Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.810813Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.811319Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.811558Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.811787Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.812228Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.812872Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.813418Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.813987Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.814512Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.815069Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.815599Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.816289Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.816732Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.817120Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.817497Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:21.959750Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:21.959791Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:21.989951Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:21.989983Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0xD464d9bc7A3a829b37F5acE83BE79aeB914ba1e9 +2026-03-30T15:33:21.990168Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:21.990185Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.020076Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.020108Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x19592E0C6A4124aa36666202F09E2b264B3EB99C +2026-03-30T15:33:22.020277Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.020293Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.049960Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.049988Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x419A15a49DD9d7896EE4605558513703598F3FcB +2026-03-30T15:33:22.050149Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.050165Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.080013Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.080058Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 index=4 ticket_id=Some(68) +2026-03-30T15:33:22.080279Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.080299Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.109949Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.109977Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 index=1 ticket_id=Some(65) +2026-03-30T15:33:22.110172Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.110188Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.140046Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.140082Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 +2026-03-30T15:33:22.140266Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.140281Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.169975Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.169999Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E +2026-03-30T15:33:22.170152Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.170168Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.199780Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.199809Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 +2026-03-30T15:33:22.199972Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.199988Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.229768Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.229792Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE +2026-03-30T15:33:22.229931Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.229944Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.259776Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.259805Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A +2026-03-30T15:33:22.259959Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.259973Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.289823Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.289852Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 +2026-03-30T15:33:22.290022Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.290037Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.320258Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.320283Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 +2026-03-30T15:33:22.320423Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.320437Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.350805Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.350842Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 index=5 ticket_id=Some(15) +2026-03-30T15:33:22.351033Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.351050Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.381903Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.381933Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 +2026-03-30T15:33:22.382090Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.382106Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.413774Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.413807Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f + + + ################################################# + ## COMMITTEE SELECTED: 3 NODES, 3 BUFFER NODES ## + ################################################# + +2026-03-30T15:33:22.445549Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.445581Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.476870Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.476907Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB index=0 ticket_id=Some(31) +2026-03-30T15:33:22.477109Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.477135Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.507826Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.507868Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 index=2 ticket_id=Some(42) +2026-03-30T15:33:22.508080Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.508098Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.539070Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.539105Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 +2026-03-30T15:33:22.539279Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.539296Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.570746Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.570790Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x3453797c0F390D341CD317A37d90d839c19f0F36 +2026-03-30T15:33:22.571160Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +2026-03-30T15:33:22.571182Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 +2026-03-30T15:33:22.602658Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] +2026-03-30T15:33:22.602700Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a index=3 ticket_id=Some(43) +2026-03-30T15:33:22.602992Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603029Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xD464d9bc7A3a829b37F5acE83BE79aeB914ba1e9" +2026-03-30T15:33:22.603053Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603070Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x19592E0C6A4124aa36666202F09E2b264B3EB99C" +2026-03-30T15:33:22.603093Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603112Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x419A15a49DD9d7896EE4605558513703598F3FcB" +2026-03-30T15:33:22.603131Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603150Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x69c53066500733e8A004A5b66E7FbcE58Ea4da54" ticket_id=68 +2026-03-30T15:33:22.603187Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603203Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08" ticket_id=65 +2026-03-30T15:33:22.603264Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603284Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xedda9D0f1df94097c173F7CE227F697ACE7Dd113" +2026-03-30T15:33:22.603305Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603321Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E" +2026-03-30T15:33:22.603336Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603352Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xdf2836306EFfca9092B33eE7Bf209C0b578C4473" +2026-03-30T15:33:22.603404Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603433Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x77bf25b868AC287B27e440866f1AE4Ad41F344EE" +2026-03-30T15:33:22.603467Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603492Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x210A5A2814Ce4F3241249B32edaa8fa8532b932A" +2026-03-30T15:33:22.603521Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603552Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5" +2026-03-30T15:33:22.603588Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603608Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3" +2026-03-30T15:33:22.603633Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603654Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823" ticket_id=15 +2026-03-30T15:33:22.603687Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603707Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x077e873eCcD8B05459D31326A860Eea2Ad7D6128" +2026-03-30T15:33:22.603727Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603745Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f" +2026-03-30T15:33:22.603802Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603821Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB" ticket_id=31 +2026-03-30T15:33:22.603852Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603869Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26" ticket_id=42 +2026-03-30T15:33:22.603897Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603915Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30" +2026-03-30T15:33:22.603934Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603954Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x3453797c0F390D341CD317A37d90d839c19f0F36" +2026-03-30T15:33:22.603973Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } +2026-03-30T15:33:22.603992Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a" ticket_id=43 +2026-03-30T15:33:22.604492Z  INFO e3_test_helpers::ciphernode_system: take took 159.071708ms for count=1, total_timeout=Some(1000s), per_evt_timeout=Some(1000s) +>> ["E3Requested"] == ["E3Requested"] +2026-03-30T15:33:22.604645Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(68), node: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54" }), ctx: EventContext { id: EventId(0xbdf42f38a6a9ca206bef1fa175a6ee01c7c11ce17a5a738bb9fa7f2c0ccfbec2), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713936915293995298697825862, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.604737Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(65), node: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08" }), ctx: EventContext { id: EventId(0x385a6d8e3cfed5f2eab5db99b8de1b7f3bdbe153f7afcded105adae4b72b74ac), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713937874524687133831309018, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.604817Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(15), node: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823" }), ctx: EventContext { id: EventId(0x434ce84f4a0068a75c2dcbc3152329ef2a24323fef84f39ee9bf93a16373774c), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713946212453008452005247206, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.604895Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(31), node: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB" }), ctx: EventContext { id: EventId(0x972cc92118e74fe1c3ebb5deb4c1ad3d0ec53adea9a5a9de61084b3848d3609f), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713949274612524687560381802, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.604953Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(42), node: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26" }), ctx: EventContext { id: EventId(0x2f0747ad6485c7b02f1fc5b7d566b722fb2eb18ed7a757c5f7ddd6a0be6b7391), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713950160056240223630211820, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605030Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(43), node: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a" }), ctx: EventContext { id: EventId(0xd66f290abe5adc5ce4281c4471cd43f2bb97bc2f9bf0c6f7f4086160b215ea8c), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713952429005761291411596652, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605385Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605466Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605531Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605598Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605665Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605733Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605800Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605861Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605932Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.605997Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606063Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606129Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606198Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606270Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606338Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606409Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606536Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606604Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606681Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606751Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606820Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.606954Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.607005Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.607073Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.607077Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.607080Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.607125Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xD464d9bc7A3a829b37F5acE83BE79aeB914ba1e9" +2026-03-30T15:33:22.607140Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.607173Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.607191Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.607221Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.607225Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.607228Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.607232Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x19592E0C6A4124aa36666202F09E2b264B3EB99C" +2026-03-30T15:33:22.607240Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.607262Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.607277Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.607306Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.607311Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.607314Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.607317Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x419A15a49DD9d7896EE4605558513703598F3FcB" +2026-03-30T15:33:22.607325Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.607347Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.607362Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.607393Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.607397Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.607400Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.607403Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x69c53066500733e8A004A5b66E7FbcE58Ea4da54" +2026-03-30T15:33:22.607411Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.607432Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.607444Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.607475Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.607479Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.607482Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.607486Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08" party_id=1 +2026-03-30T15:33:22.607516Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.607537Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.607549Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.607578Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.607582Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.607584Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.607587Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xedda9D0f1df94097c173F7CE227F697ACE7Dd113" +2026-03-30T15:33:22.607593Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.607613Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.607627Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.607652Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.607655Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.607657Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.607660Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E" +2026-03-30T15:33:22.607696Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.607727Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.607783Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.607829Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.607834Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.607837Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.607840Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xdf2836306EFfca9092B33eE7Bf209C0b578C4473" +2026-03-30T15:33:22.607847Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.607920Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.607945Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.607993Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.607998Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608001Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608004Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x77bf25b868AC287B27e440866f1AE4Ad41F344EE" +2026-03-30T15:33:22.608013Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608055Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608076Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.608111Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.608114Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608117Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608121Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x210A5A2814Ce4F3241249B32edaa8fa8532b932A" +2026-03-30T15:33:22.608129Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608153Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608167Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.608196Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.608199Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608202Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608204Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5" +2026-03-30T15:33:22.608211Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608233Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608246Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.608293Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.608297Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608299Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608302Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3" +2026-03-30T15:33:22.608308Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608335Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608349Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.608391Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.608395Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608398Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608401Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823" +2026-03-30T15:33:22.608409Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608432Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608444Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.608479Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.608483Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608486Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608489Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x077e873eCcD8B05459D31326A860Eea2Ad7D6128" +2026-03-30T15:33:22.608497Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608521Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608533Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.608566Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.608570Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608573Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608579Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f" +2026-03-30T15:33:22.608585Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608605Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608617Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.608648Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.608652Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608655Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608658Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB" party_id=0 +2026-03-30T15:33:22.608684Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608707Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608722Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.608751Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.608754Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608757Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608761Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26" party_id=2 +2026-03-30T15:33:22.608779Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608800Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608813Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.608837Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.608840Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608843Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608847Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30" +2026-03-30T15:33:22.608854Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608876Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608892Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.608922Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.608925Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.608928Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.608931Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x3453797c0F390D341CD317A37d90d839c19f0F36" +2026-03-30T15:33:22.608936Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.608956Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 +2026-03-30T15:33:22.608968Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 +2026-03-30T15:33:22.609005Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +2026-03-30T15:33:22.609008Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +2026-03-30T15:33:22.609012Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +2026-03-30T15:33:22.609015Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a" +2026-03-30T15:33:22.609022Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 +2026-03-30T15:33:22.609137Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609281Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609309Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609338Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609368Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609405Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609433Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609459Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609482Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609507Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609536Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609562Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609588Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609610Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609636Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609659Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609686Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609712Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609732Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609758Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) +2026-03-30T15:33:22.609831Z  INFO e3_test_helpers::ciphernode_system: take took 5.285583ms for count=1, total_timeout=Some(1000s), per_evt_timeout=Some(1000s) +>> ["CommitteeFinalized"] == ["CommitteeFinalized"] + + + ##################################### + ## COMMITTEE FINALIZATION COMPLETE ## + ##################################### + +2026-03-30T15:33:22.610147Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , party_id: 1 }), ctx: EventContext { id: EventId(0x56fc78630cdb426d9ee49ae657999d4ea73152156bb98931a79a549f2b0f07f6), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 8, ts: 32740845714017084843739642645948122, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.610265Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , party_id: 0 }), ctx: EventContext { id: EventId(0xfeaa51ff66ffd030de341e41f74180f6bb25589894c672348141b5020a529b18), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 8, ts: 32740845714038483066865146951996778, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.610352Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , party_id: 2 }), ctx: EventContext { id: EventId(0xbb3c6448cbf54e6fb26a2fe4413218caaa6511662957d0202f6146da8b244e32), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 8, ts: 32740845714040383081504737047165676, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.611130Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. +2026-03-30T15:33:22.611150Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes +2026-03-30T15:33:22.611177Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes +2026-03-30T15:33:22.658168Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. +2026-03-30T15:33:22.658182Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes +2026-03-30T15:33:22.658200Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes +2026-03-30T15:33:22.705060Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. +2026-03-30T15:33:22.705083Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes +2026-03-30T15:33:22.705107Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes +2026-03-30T15:33:22.752233Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=1:0 +2026-03-30T15:33:22.752303Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=1:0 +2026-03-30T15:33:22.752357Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=1:0 +2026-03-30T15:33:22.752367Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=1:0 +2026-03-30T15:33:22.752389Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=1:0 +2026-03-30T15:33:22.752398Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=1:0 +2026-03-30T15:33:22.752559Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x9f109465551565318c3a4f7a8a6cd3881f4aeba56273dba1051e2d4bc1fc1020), causation_id: EventId(0x56fc78630cdb426d9ee49ae657999d4ea73152156bb98931a79a549f2b0f07f6), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 9, ts: 32740845714948165804116058554214106, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.752910Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x708c402fca38abaee615adb1f3adbe31de0bdfeac3339ec8882cb914ffb2effe), causation_id: EventId(0xfeaa51ff66ffd030de341e41f74180f6bb25589894c672348141b5020a529b18), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 9, ts: 32740845715814019077447838714140010, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.753175Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x0f416735491585b026aeb43cb4496fef514d3f8d4142fa014433eae8b71d5725), causation_id: EventId(0xbb3c6448cbf54e6fb26a2fe4413218caaa6511662957d0202f6146da8b244e32), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 9, ts: 32740845716683598593082504988670700, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:22.753586Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation +2026-03-30T15:33:22.753725Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation +2026-03-30T15:33:22.753792Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation +2026-03-30T15:33:22.753939Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 103, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xdd03fec3bb9e553b7424d9cbce45208630b78648cf94562842250e9a849a50c5), causation_id: EventId(0x9f109465551565318c3a4f7a8a6cd3881f4aeba56273dba1051e2d4bc1fc1020), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 10, ts: 32740845716712320173605271523010266, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:22.754215Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 104, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8f7edc74c37b9cf7ed2934e14febca28af30065396611b14208e2549da7f005f), causation_id: EventId(0x708c402fca38abaee615adb1f3adbe31de0bdfeac3339ec8882cb914ffb2effe), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 10, ts: 32740845716714496889405970476275050, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:22.754496Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 105, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc0bd36c4f08beb7b8d3563744846aacbae65528897c1a32f942ad42cc7a69b1b), causation_id: EventId(0x0f416735491585b026aeb43cb4496fef514d3f8d4142fa014433eae8b71d5725), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 10, ts: 32740845716715732821258907027585772, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:26.718177Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 103, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2a93a8587a7e7e6b02f7a77621896dcb855ab160895f7c7cd6a4143dc54abd9d), causation_id: EventId(0xdd03fec3bb9e553b7424d9cbce45208630b78648cf94562842250e9a849a50c5), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 11, ts: 32740845789841596255239437633693402, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:26.723782Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 1 (signer: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) +2026-03-30T15:33:26.724094Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x0d69125ae1d47687a6c867ae778c087d62ace7217537ac041219375a1586562b), causation_id: EventId(0x2a93a8587a7e7e6b02f7a77621896dcb855ab160895f7c7cd6a4143dc54abd9d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 12, ts: 32740845789949694175511375606163162, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:26.727415Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 +2026-03-30T15:33:26.727527Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +2026-03-30T15:33:26.727531Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes +2026-03-30T15:33:26.727556Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +2026-03-30T15:33:26.727560Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 +2026-03-30T15:33:26.727565Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 +2026-03-30T15:33:26.727572Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 17.083µs +2026-03-30T15:33:26.727608Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:26.726413Z }, value: }), ctx: EventContext { id: EventId(0xc7b89e5ce2898469540ada408a31c5d11db45eff0be0729bd0b74cfc70191be1), causation_id: EventId(0x0d69125ae1d47687a6c867ae778c087d62ace7217537ac041219375a1586562b), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 13, ts: 32740845790016157794408951120635610, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:26.735023Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:26.726413Z }, value: }), ctx: EventContext { id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), causation_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 11, ts: 32740845790152811274506992705181034, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:26.737284Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:26.726413Z }, value: }), ctx: EventContext { id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), causation_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 11, ts: 32740845790154360801009182318869228, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:26.743440Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 } }, signature: }) } }), ctx: EventContext { id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), causation_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 12, ts: 32740845790273471427493126882301290, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:26.745867Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 } }, signature: }) } }), ctx: EventContext { id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), causation_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 12, ts: 32740845790307210522403939663559404, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:26.752251Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for key from party 1 +2026-03-30T15:33:26.756278Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for key from party 1 +2026-03-30T15:33:26.822128Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key +2026-03-30T15:33:26.824055Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key +2026-03-30T15:33:26.826025Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xa6ffcbc4d969e5ec24db9089fbddca6b6330df873becdad832c5e6244766d932), causation_id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 13, ts: 32740845791763525626791089623635306, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:26.828485Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C0PkBfv, data_hash: [223, 235, 30, 242, 244, 225, 69, 117, 244, 80, 212, 155, 236, 155, 77, 102, 168, 212, 14, 204, 208, 158, 178, 222, 218, 244, 83, 208, 26, 228, 253, 222], public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), ctx: EventContext { id: EventId(0xaffce7f85e75b35c8d2ae45496cb3907dcdfaa794ede6479edbd64ff7beae779), causation_id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 14, ts: 32740845791797818124024115680089450, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:26.828569Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xa6ffcbc4d969e5ec24db9089fbddca6b6330df873becdad832c5e6244766d932), causation_id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 13, ts: 32740845791798924928668536264538860, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:26.830787Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C0PkBfv, data_hash: [223, 235, 30, 242, 244, 225, 69, 117, 244, 80, 212, 155, 236, 155, 77, 102, 168, 212, 14, 204, 208, 158, 178, 222, 218, 244, 83, 208, 26, 228, 253, 222], public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), ctx: EventContext { id: EventId(0xaffce7f85e75b35c8d2ae45496cb3907dcdfaa794ede6479edbd64ff7beae779), causation_id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 14, ts: 32740845791832682470323424743996140, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:26.831095Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +2026-03-30T15:33:26.831100Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes +2026-03-30T15:33:26.831130Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +2026-03-30T15:33:26.831134Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes +2026-03-30T15:33:26.831155Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +2026-03-30T15:33:26.831159Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 +2026-03-30T15:33:26.831164Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 +2026-03-30T15:33:26.831171Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 17.167µs +2026-03-30T15:33:26.831191Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +2026-03-30T15:33:26.831195Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 +2026-03-30T15:33:26.831197Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 +2026-03-30T15:33:26.831199Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 8.417µs +2026-03-30T15:33:30.689221Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 104, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc8cbba75b8db1c676c44144d0da2de96d81cf511ec05799dd8f8a8c2b7f5c60e), causation_id: EventId(0x8f7edc74c37b9cf7ed2934e14febca28af30065396611b14208e2549da7f005f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 15, ts: 32740845863094686883096343480997226, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:30.693650Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 0 (signer: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) +2026-03-30T15:33:30.693917Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x8ad5137a13be056e394257544f9a1008adc1c2eef5b61f926678ecb5a32f3aee), causation_id: EventId(0xc8cbba75b8db1c676c44144d0da2de96d81cf511ec05799dd8f8a8c2b7f5c60e), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 16, ts: 32740845863180814731176493377492330, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:30.697285Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 +2026-03-30T15:33:30.697406Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +2026-03-30T15:33:30.697411Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes +2026-03-30T15:33:30.697434Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +2026-03-30T15:33:30.697438Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 +2026-03-30T15:33:30.697442Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 +2026-03-30T15:33:30.697447Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 13.458µs +2026-03-30T15:33:30.697492Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:30.696278Z }, value: }), ctx: EventContext { id: EventId(0x4ba669da794333d520fcec8aafadcceac0e875390ab5fb168174d8701efc787c), causation_id: EventId(0x8ad5137a13be056e394257544f9a1008adc1c2eef5b61f926678ecb5a32f3aee), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 17, ts: 32740845863247352137050363730171242, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:30.705867Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:30.696278Z }, value: }), ctx: EventContext { id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), causation_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 14, ts: 32740845863400847494487699682993882, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:30.708257Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:30.696278Z }, value: }), ctx: EventContext { id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), causation_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 15, ts: 32740845863402655275406922456578796, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:30.714913Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd } }, signature: }) } }), ctx: EventContext { id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), causation_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 15, ts: 32740845863533221329960639425390298, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:30.717349Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd } }, signature: }) } }), ctx: EventContext { id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), causation_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 16, ts: 32740845863567901208819212619954924, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:30.724016Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for key from party 0 +2026-03-30T15:33:30.728260Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for key from party 0 +2026-03-30T15:33:30.794452Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key +2026-03-30T15:33:30.796339Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key +2026-03-30T15:33:30.798190Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x6ccd88bf4b3e0be0157995b74cf0ac52c96d760ba1d234b394ee0b6ca6298b37), causation_id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 16, ts: 32740845865040006726133456730040026, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:30.800472Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C0PkBfv, data_hash: [122, 94, 152, 161, 10, 149, 26, 1, 128, 90, 39, 67, 103, 124, 18, 231, 247, 3, 249, 112, 45, 12, 100, 13, 172, 248, 118, 108, 21, 32, 223, 66], public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), ctx: EventContext { id: EventId(0xb8e642448e5e7bf4974c67ff84342dd6dabf7a70c3c3b8bcfe87da2448ca1e89), causation_id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 17, ts: 32740845865073745821044271499945690, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:30.800547Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x6ccd88bf4b3e0be0157995b74cf0ac52c96d760ba1d234b394ee0b6ca6298b37), causation_id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 17, ts: 32740845865074612818015735086398188, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:30.802868Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C0PkBfv, data_hash: [122, 94, 152, 161, 10, 149, 26, 1, 128, 90, 39, 67, 103, 124, 18, 231, 247, 3, 249, 112, 45, 12, 100, 13, 172, 248, 118, 108, 21, 32, 223, 66], public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), ctx: EventContext { id: EventId(0xb8e642448e5e7bf4974c67ff84342dd6dabf7a70c3c3b8bcfe87da2448ca1e89), causation_id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 18, ts: 32740845865106728599448063415761644, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:30.803164Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +2026-03-30T15:33:30.803169Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes +2026-03-30T15:33:30.803198Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +2026-03-30T15:33:30.803202Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes +2026-03-30T15:33:30.803222Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +2026-03-30T15:33:30.803226Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 +2026-03-30T15:33:30.803231Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 +2026-03-30T15:33:30.803236Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 14.875µs +2026-03-30T15:33:30.803257Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +2026-03-30T15:33:30.803261Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 +2026-03-30T15:33:30.803263Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 +2026-03-30T15:33:30.803265Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 8.5µs +2026-03-30T15:33:34.795519Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 105, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xff1de33c046648fa032c65b325f121a4090d3c5a2ce345073223cc8d6ec25e67), causation_id: EventId(0xc0bd36c4f08beb7b8d3563744846aacbae65528897c1a32f942ad42cc7a69b1b), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 19, ts: 32740845938842607413202094421785324, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:34.800022Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 2 (signer: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) +2026-03-30T15:33:34.800389Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x5cfcadd141d770f00e1cc8f3598db4dbf12f7216e436035b9817d220245cd19d), causation_id: EventId(0xff1de33c046648fa032c65b325f121a4090d3c5a2ce345073223cc8d6ec25e67), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 20, ts: 32740845938930211000808141082409708, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:34.803738Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 +2026-03-30T15:33:34.803869Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +2026-03-30T15:33:34.803874Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes +2026-03-30T15:33:34.803901Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +2026-03-30T15:33:34.803906Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 +2026-03-30T15:33:34.803910Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 +2026-03-30T15:33:34.803920Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! +2026-03-30T15:33:34.803952Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 50.542µs +2026-03-30T15:33:34.803983Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received +2026-03-30T15:33:34.807132Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare +2026-03-30T15:33:34.920121Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:34.802719Z }, value: }), ctx: EventContext { id: EventId(0xdf4eab6d575c5d9303df52dff001d7d6c53e8ea943466784e62e790963cc22c1), causation_id: EventId(0x5cfcadd141d770f00e1cc8f3598db4dbf12f7216e436035b9817d220245cd19d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 21, ts: 32740845938998058125511244813253356, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:34.927120Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 114, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x7c319441b2b60c00cd79208051c46a362f23dd3c9b9b13380ef6fa3fd611c3b8), causation_id: EventId(0x5cfcadd141d770f00e1cc8f3598db4dbf12f7216e436035b9817d220245cd19d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 22, ts: 32740845941138433840383764087257836, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:34.928269Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:34.802719Z }, value: }), ctx: EventContext { id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), causation_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 18, ts: 32740845941291006860617417777321322, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:34.930546Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:34.802719Z }, value: }), ctx: EventContext { id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), causation_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 18, ts: 32740845941292703961072197829895898, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:33:34.936741Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 } }, signature: }) } }), ctx: EventContext { id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), causation_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 19, ts: 32740845941413308773826112104535402, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:34.939087Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 } }, signature: }) } }), ctx: EventContext { id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), causation_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 19, ts: 32740845941447306123153957581989594, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:34.945573Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for key from party 2 +2026-03-30T15:33:34.949900Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for key from party 2 +2026-03-30T15:33:35.018569Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key +2026-03-30T15:33:35.020792Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key +2026-03-30T15:33:35.022786Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x2fd787597f54644a610588b746f9dce9defd2ef73e9fa0714135024c689c53be), causation_id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 20, ts: 32740845942961267302771449128392042, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:35.025104Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C0PkBfv, data_hash: [196, 37, 166, 190, 91, 225, 153, 240, 55, 176, 156, 47, 202, 93, 215, 98, 3, 238, 165, 129, 41, 42, 235, 126, 112, 61, 175, 72, 157, 223, 6, 152], public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), ctx: EventContext { id: EventId(0x9374a1b974e3f73c2f9e288948bb3b31099125fdce0f66c204706b64251cd95d), causation_id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 21, ts: 32740845943000060805558460315440490, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:35.025198Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x2fd787597f54644a610588b746f9dce9defd2ef73e9fa0714135024c689c53be), causation_id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 20, ts: 32740845943002200627871009397253850, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:35.027798Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C0PkBfv, data_hash: [196, 37, 166, 190, 91, 225, 153, 240, 55, 176, 156, 47, 202, 93, 215, 98, 3, 238, 165, 129, 41, 42, 235, 126, 112, 61, 175, 72, 157, 223, 6, 152], public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), ctx: EventContext { id: EventId(0x9374a1b974e3f73c2f9e288948bb3b31099125fdce0f66c204706b64251cd95d), causation_id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 21, ts: 32740845943035441660691834009265882, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:35.028146Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +2026-03-30T15:33:35.028153Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes +2026-03-30T15:33:35.028186Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +2026-03-30T15:33:35.028191Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes +2026-03-30T15:33:35.028212Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +2026-03-30T15:33:35.028217Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 +2026-03-30T15:33:35.028223Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 +2026-03-30T15:33:35.028227Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! +2026-03-30T15:33:35.028239Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 26.959µs +2026-03-30T15:33:35.028274Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +2026-03-30T15:33:35.028277Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 +2026-03-30T15:33:35.028280Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 +2026-03-30T15:33:35.028282Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! +2026-03-30T15:33:35.028287Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 13.125µs +2026-03-30T15:33:35.028334Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received +2026-03-30T15:33:35.031772Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare +2026-03-30T15:33:35.147419Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received +2026-03-30T15:33:35.151094Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare +2026-03-30T15:33:35.269615Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x51c4c19c10f2d5d258a152fd3877a043afc5cc6ff370a71caff58d60a3c3c1bc), causation_id: EventId(0x2fd787597f54644a610588b746f9dce9defd2ef73e9fa0714135024c689c53be), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 22, ts: 32740845945336119581564890512987498, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:35.270042Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 120, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x39798d1e5ffe8a5ebed7a0ae899063b4b9a8092d505e65d601bf985a2fb7221e), causation_id: EventId(0x2fd787597f54644a610588b746f9dce9defd2ef73e9fa0714135024c689c53be), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 22, ts: 32740845947588485479708899248678618, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:35.270758Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 114, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x08116c3ffdf90e6f042b3a9ba2df1e2ae331634724d764320b271a9065513bd6), causation_id: EventId(0x7c319441b2b60c00cd79208051c46a362f23dd3c9b9b13380ef6fa3fd611c3b8), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 23, ts: 32740845947608979812374789798050540, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:35.273908Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss +2026-03-30T15:33:35.278464Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare +2026-03-30T15:33:35.278704Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 121, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x433a34ec57ce29b13bd6d52bbd9e61bd4a414438e8cdc1a04353006a902df684), causation_id: EventId(0x08116c3ffdf90e6f042b3a9ba2df1e2ae331634724d764320b271a9065513bd6), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 24, ts: 32740845947755649874504854442949356, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:35.530026Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8ce6b1c6cf0806e9258999cf3efdda4b2b142b40d76e504dc380f3e5c9eed9df), causation_id: EventId(0x51c4c19c10f2d5d258a152fd3877a043afc5cc6ff370a71caff58d60a3c3c1bc), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 23, ts: 32740845952390744811161781756597610, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:35.533744Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss +2026-03-30T15:33:35.538487Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare +2026-03-30T15:33:35.538717Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 122, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x46e47466bd4f780b8fc2ee80b0034826848814a298441d2b25418e05c3353c65), causation_id: EventId(0x8ce6b1c6cf0806e9258999cf3efdda4b2b142b40d76e504dc380f3e5c9eed9df), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 24, ts: 32740845952552080034830445495031146, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:35.791417Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 120, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x9cd609b6151289c5bdbd854e2e6bf6ef56b0baedab6063863c5dc6ebebe60b31), causation_id: EventId(0x39798d1e5ffe8a5ebed7a0ae899063b4b9a8092d505e65d601bf985a2fb7221e), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 23, ts: 32740845957212926626214268127913690, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:35.794585Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss +2026-03-30T15:33:35.799387Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare +2026-03-30T15:33:35.799611Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 123, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x84134bda51b5947be459b7d03232e6eb698ede6cdd14657c5b02379d319182c8), causation_id: EventId(0x9cd609b6151289c5bdbd854e2e6bf6ef56b0baedab6063863c5dc6ebebe60b31), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 24, ts: 32740845957364854010405339995023066, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:35.937999Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 121, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x7984bc88b63c5e058f90367036901085e6611ed1c176e45b07de0f803ca4f0ab), causation_id: EventId(0x433a34ec57ce29b13bd6d52bbd9e61bd4a414438e8cdc1a04353006a902df684), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 25, ts: 32740845959917496008581193275620076, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:35.940270Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss +2026-03-30T15:33:35.945617Z  INFO e3_keyshare::threshold_keyshare: esi stored +2026-03-30T15:33:36.201584Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 1:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) +2026-03-30T15:33:36.203216Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 1 }, full_share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), causation_id: EventId(0x7984bc88b63c5e058f90367036901085e6611ed1c176e45b07de0f803ca4f0ab), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 26, ts: 32740845964784355837780205407124204, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:36.225660Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof +2026-03-30T15:33:36.225719Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof +2026-03-30T15:33:36.225790Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof +2026-03-30T15:33:36.225860Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 1:0 +2026-03-30T15:33:36.226206Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 1:0 +2026-03-30T15:33:36.226566Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: initializing state for E3 1:0 party 2 (total_expected=18, ~17 fold steps) +2026-03-30T15:33:36.226702Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 122, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb93d28e301c4105813c31a2fd8f6c3ba40ccfdfeecf61579493bc631861aa9e6), causation_id: EventId(0x46e47466bd4f780b8fc2ee80b0034826848814a298441d2b25418e05c3353c65), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 25, ts: 32740845964810218172971548187137386, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:36.228506Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss +2026-03-30T15:33:36.233889Z  INFO e3_keyshare::threshold_keyshare: esi stored +2026-03-30T15:33:36.489442Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 1:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) +2026-03-30T15:33:36.490935Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: }, seq: 0 }), ctx: EventContext { id: EventId(0x076fc5629687e2dd2c68e903e94345b0c46a5b0a3dd42f6743933d0fa8e5ce19), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 27, ts: 32740845965226450506250728521153260, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:36.491938Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 124, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x4898887f7e5c58afc42b77b55bf2d6a372b1f1f76c293be9f3bf07e312d42619), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 28, ts: 32740845965227963139264772704385772, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.493101Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 125, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x59645d60362206c74d1290574e14adc79e1719b9d0b1e9c06e503d13e9173dac), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 29, ts: 32740845965228903923212531891518188, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.494884Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xab2cb862d87aa37ad3c9f7d971b8e2c492f5b563106bfc60616fb92f7d5f7bae), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 30, ts: 32740845965230213642041765269682924, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.496673Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0091753e6f65d9d755515b5da2eef7bdf90299d6a5a2158a214fb6495f29acee), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 31, ts: 32740845965231578701103219776502508, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.498155Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 128, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xac3d5dfb16c14f0b4ccb7119ee21f77c14902a4e06e1d3685867fd9a58f3c499), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 32, ts: 32740845965232611718771347511393004, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.499627Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 129, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x36d68cd2a53f8b9b44fa6b4863ae4d12eaad5733e7445cfc6892d8c6ff23786d), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 33, ts: 32740845965233644736439475246283500, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.501103Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 130, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x73cfd4e7d9af36aece4731d41457667500e8f2e0b92d8dbef70dcfbe9b88591b), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 34, ts: 32740845965234677754107602981173996, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.502553Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 131, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xeec6861184326228519dab7932a9dcb93ced49ba5cba8da0af61f37213d07a5d), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 35, ts: 32740845965235729218519804425616108, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.504006Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 132, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x12b8bedd5c8ca747474ca42a5d663174494cbe3a35bed01f858610111a8e62c0), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 36, ts: 32740845965236762236187932160506604, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.505637Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 133, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xcebcba08ede66af6594a519e8bf36fa81034816a33d31b458644827bc69af48b), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 37, ts: 32740845965237924381064575862258412, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.507131Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 134, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xdc3cdb9ab6c9938fb42778c62c4e62f8142cac89efcdb4bac819eaa4a4f2e962), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 38, ts: 32740845965238957398732703597148908, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.508643Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 135, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xd1e425410f52d88d1404b58b211fed179ced0a4fdd56fb55847e5c213199df96), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 39, ts: 32740845965239990416400831332039404, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.510081Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 136, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2337d892be245f5dd54fa4614f9a74f4de512880d9450c4dc4967d97d63af691), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 40, ts: 32740845965241004987324885357378284, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.511533Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 137, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xe669439c0900f2fa63a6251940a5209e8aaf1ebbac2d51a9dbb50bc069d88283), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 41, ts: 32740845965242019558248939382717164, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.513325Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 138, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xd27a7edbb5d71778d64f444a2539c4210f2af24289f9d0d1b6dd1c08a0e8e05d), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 42, ts: 32740845965243107916149288246262508, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.515323Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=0 for E3 1:0 (buffered=1, folded=0, remaining=18) +2026-03-30T15:33:36.515360Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: storing first proof (seq=0) for E3 1:0 +2026-03-30T15:33:36.515780Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 1 }, full_share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), causation_id: EventId(0xb93d28e301c4105813c31a2fd8f6c3ba40ccfdfeecf61579493bc631861aa9e6), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 26, ts: 32740845970094417140094165214401898, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:36.539213Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof +2026-03-30T15:33:36.539278Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof +2026-03-30T15:33:36.539353Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof +2026-03-30T15:33:36.539425Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 1:0 +2026-03-30T15:33:36.539773Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 1:0 +2026-03-30T15:33:36.540128Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: initializing state for E3 1:0 party 0 (total_expected=18, ~17 fold steps) +2026-03-30T15:33:36.540255Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 123, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x98031a0e83d0be5b4628ee6333d6cfc57b141ab52808bb0a38b53b60f9061902), causation_id: EventId(0x84134bda51b5947be459b7d03232e6eb698ede6cdd14657c5b02379d319182c8), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 25, ts: 32740845970566395533964096575874778, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:36.542064Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss +2026-03-30T15:33:36.547685Z  INFO e3_keyshare::threshold_keyshare: esi stored +2026-03-30T15:33:36.804839Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 1:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) +2026-03-30T15:33:36.806386Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: }, seq: 0 }), ctx: EventContext { id: EventId(0x2a1f2a325246d1aa9d806e7eea922591c361d697f5f08fcff7e21cc985ca80d6), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 27, ts: 32740845971010574684514950095410538, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:36.807392Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 139, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0f5fe8e38428ebdc2d5ce17fb3f3b531ea6b10b1f3f396e805c19eb757241b04), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 28, ts: 32740845971012050424040846859539818, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.808658Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 140, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x98e43130ea47bde0f6d1fa2e3b4d127dc46d2f98e8e6eb699d284541f8dc019c), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 29, ts: 32740845971013064994964900884878698, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.810492Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 141, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb9ceb655a8fafba60c0e97c3ca18b3aa32bfb576b4f3d6e58b24ef4081f2f22b), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 30, ts: 32740845971014430054026355391698282, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.812545Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 142, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x36b447bda284c77fc6051c3c6b8d574031bce6dcd48df89cd7a64d2104a40ab0), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 31, ts: 32740845971015850453320031027172714, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.814195Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 143, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1f21292f581d08a1b24721704c2048ea60c9c8b803b27a57dee69a4e54768b06), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 32, ts: 32740845971016920364476306181166442, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.815797Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 144, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8c278e6214a939138ca3bbe52703dca3e84b8b52e54d8a946a7639cb8f8d99de), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 33, ts: 32740845971017953382144433916056938, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.817497Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 145, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x562f40b02060843e0796b0b044fb9479d8209dce7c1b98b59ead4459816e407c), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 34, ts: 32740845971018967953068487941395818, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.819008Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 146, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8444754cb787e663b3b0dc6615e96c37be0efd2c9d330acf3c8f130e5f074cdc), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 35, ts: 32740845971020074757712910514492778, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.820955Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 147, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2ba01a7bfe58beeef41465e29d58a6e04790c608230d01d596a643b00ebcaa02), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 36, ts: 32740845971021089328636964539831658, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.822502Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 148, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x6f855de355606e5ff0941d835c3a698c321998ecae80f9b18d54af63fef16daf), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 37, ts: 32740845971022214580025460822480234, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.824232Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 149, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc2832e15181c199c3dc12b23fc9e84528322d1563e5db416599202a432ad5d0a), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 38, ts: 32740845971023302937925809686025578, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.825723Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 150, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc12947dcfd86e4b987755e9dff0d1765399c9ca4530449ba147ad926032a1a2e), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 39, ts: 32740845971024317508849863711364458, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.827195Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 151, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xa110a1687cec42cdf360e494c47051e22371e4cbd62688855b1e3c8215b3ada9), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 40, ts: 32740845971025332079773917736703338, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.829134Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 152, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb4ee6e91c1e7c1120e46d716899b3ccee258f529c7c01de75e1354978a9b96d2), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 41, ts: 32740845971026346650697971762042218, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.830699Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 153, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x59dfe6f727a53c16b95bcb4f3e13dde842a79ef08a433ef28a52542fdc9fce53), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 42, ts: 32740845971027416561854246916035946, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.832511Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=0 for E3 1:0 (buffered=1, folded=0, remaining=18) +2026-03-30T15:33:36.832524Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: storing first proof (seq=0) for E3 1:0 +2026-03-30T15:33:36.832854Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 1 }, full_share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), causation_id: EventId(0x98031a0e83d0be5b4628ee6333d6cfc57b141ab52808bb0a38b53b60f9061902), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 26, ts: 32740845975912409540477714310604506, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:36.859905Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof +2026-03-30T15:33:36.859964Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof +2026-03-30T15:33:36.860034Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof +2026-03-30T15:33:36.860103Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 1:0 +2026-03-30T15:33:36.860663Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 1:0 +2026-03-30T15:33:36.861878Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: initializing state for E3 1:0 party 1 (total_expected=18, ~17 fold steps) +2026-03-30T15:33:36.862405Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: }, seq: 0 }), ctx: EventContext { id: EventId(0x0cf8457792f52073078ebddda1941d434691f894f61cf183b8ec116c5731a5fc), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 27, ts: 32740845976926353275233233524729562, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:36.863420Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 154, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc04e660658e63fb21a8d2401f22ccbeaf3b3b4f3f0f2971cb998988fc9dee986), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 28, ts: 32740845976927718334294688031549146, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.864657Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 155, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8ea55dbb2013e92143a805b4a2da031ede27e828392396e933ed07531535b51a), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 29, ts: 32740845976928659118242447218681562, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.866530Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 156, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2c83dd037ed43d186e517164a2b6ee9e1764fae613e5e16c79bc06c936df3f30), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 30, ts: 32740845976929950390327606887294682, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.868402Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 157, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0b8120805a792d6268a1e5b66cbb6c0b5ad48d11a08cd010a25b2645b782669f), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 31, ts: 32740845976931297002644987684562650, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.870530Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 158, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x23ef5e865b4b3d12d945a4ca1c3570f68d55c71da3fb2496237787b850756998), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 32, ts: 32740845976932330020313115419453146, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.872159Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 159, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb2e93cd915a447f517998da886addcc35326ca45758b66f5324383cc4b6fa833), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 33, ts: 32740845976934100907744191536408282, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.873759Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 160, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x95978d36f6fec018536fe4763bdc8906df400b013189def3aee0ff66147ef2e2), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 34, ts: 32740845976935189265644540399953626, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.875358Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 161, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc63b86a973bfffc976be92e2a37c6d6a10ab3a496c8829ba3ed818cae7b2907c), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 35, ts: 32740845976936259176800815553947354, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.877027Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 162, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x3c32fb09e96e199a1360bd7325a496278b291507fb65efd39d0adefff1ea4101), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 36, ts: 32740845976937292194468943288837850, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.878726Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 163, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1c449d35a4957f13ad26838a81db00abd744cf01a4025e0d921bdce132f00d2b), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 37, ts: 32740845976941977667463665514948314, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.880282Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 164, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x7fbce5e5ff2697b8a66f612cff40425e68e24cdf2adb260eb451c1c333dfe0a1), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 38, ts: 32740845976946183525112471292716762, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.881826Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 165, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb8041e2364ce58a4236d017cd8437985b937b26dcde329176bc092caa0216c04), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 39, ts: 32740845976949854427183139493488346, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.883319Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 166, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1156aba2485ace05d445dd5d0b60ca2e345b2fddb840cc53c91960ea58d3d2f2), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 40, ts: 32740845976953599116230102532466394, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.884942Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 167, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xac84be7e8b5a91d26f4f7dc19ec5951d53f5fb901cf1074379fb5b8c6287f6dc), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 41, ts: 32740845976957528272717802666960602, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.886546Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 168, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x9e21166e05d0d08796ceacb6f973336a63cdeef821a819fc4ce7bb11ad027df9), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 42, ts: 32740845976961789470598829573383898, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:36.888524Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=0 for E3 1:0 (buffered=1, folded=0, remaining=18) +2026-03-30T15:33:36.888536Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: storing first proof (seq=0) for E3 1:0 +2026-03-30T15:33:42.001535Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 124, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x5f3ca583fb0d86a80455317777faefb713c8ff760899a7ca642a973e286697e6), causation_id: EventId(0x4898887f7e5c58afc42b77b55bf2d6a372b1f1f76c293be9f3bf07e312d42619), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 43, ts: 32740846071770048122537934171749100, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:42.003631Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 1:0 (1/15) +2026-03-30T15:33:42.003812Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: }, seq: 1 }), ctx: EventContext { id: EventId(0xc5eccc37bfc3a89d813e78d5851b001a404ba5c6002e3bb85af8da00c7cb1554), causation_id: EventId(0x5f3ca583fb0d86a80455317777faefb713c8ff760899a7ca642a973e286697e6), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 44, ts: 32740846071812678548092276945533676, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:42.004874Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=1 for E3 1:0 (buffered=1, folded=0, remaining=17) +2026-03-30T15:33:42.004890Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: dispatching fold step 1/17 (seq=1) for E3 1:0 +2026-03-30T15:33:42.005084Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(FoldProofs { proof1: Proof { circuit: PkBfv, data: , public_signals: }, proof2: Proof { circuit: PkGeneration, data: , public_signals: }, target_evm: false }), correlation_id: 169, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x3910844fe41d4714580c4fc8914dbff776ba48162b99406a83dbf337092df096), causation_id: EventId(0xc5eccc37bfc3a89d813e78d5851b001a404ba5c6002e3bb85af8da00c7cb1554), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 45, ts: 32740846071835829211904782432811756, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:33:48.196937Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 138, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0d535f3e058110629601f3c9abb2d379faf03cb7bf25b2f4cfc89010c755afa8), causation_id: EventId(0xd27a7edbb5d71778d64f444a2539c4210f2af24289f9d0d1b6dd1c08a0e8e05d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 46, ts: 32740846186054010232618109937728236, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:48.200795Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (2/15) +2026-03-30T15:33:48.200958Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 15 }), ctx: EventContext { id: EventId(0xc1bb532d14f3945e5feb5a76d11a9d72034e694cbc21670f9e350e6c19061fd6), causation_id: EventId(0x0d535f3e058110629601f3c9abb2d379faf03cb7bf25b2f4cfc89010c755afa8), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 47, ts: 32740846186130139945410309257247468, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:48.201930Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=15 for E3 1:0 (buffered=1, folded=0, remaining=17) +2026-03-30T15:33:55.275614Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 137, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1fda315474594f3c93d26f43f08a5e3342c78cff5e54e1b34f0b8e5038c0444c), causation_id: EventId(0xe669439c0900f2fa63a6251940a5209e8aaf1ebbac2d51a9dbb50bc069d88283), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 48, ts: 32740846316629140584418581375171308, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:55.282201Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (3/15) +2026-03-30T15:33:55.282663Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 14 }), ctx: EventContext { id: EventId(0x12e8b2f28f5eff8dc35e30d420b9dfa0412c041c85c3a5ef289e141f317068f4), causation_id: EventId(0x1fda315474594f3c93d26f43f08a5e3342c78cff5e54e1b34f0b8e5038c0444c), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 49, ts: 32740846316759356150834897100028652, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:33:55.284208Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=14 for E3 1:0 (buffered=2, folded=0, remaining=17) +2026-03-30T15:34:03.079804Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 136, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x16f0084352c5c01a9e3bc539184902059f6111e871c6f7e9bfccf851cb7dc816), causation_id: EventId(0x2337d892be245f5dd54fa4614f9a74f4de512880d9450c4dc4967d97d63af691), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 50, ts: 32740846460594061483050015367707372, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:03.084227Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (4/15) +2026-03-30T15:34:03.084430Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 13 }), ctx: EventContext { id: EventId(0xc4d6cf4154fa19cb89f20e4d30dad7a9033c3eb7e2b0b709754153153d55c64c), causation_id: EventId(0x16f0084352c5c01a9e3bc539184902059f6111e871c6f7e9bfccf851cb7dc816), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 51, ts: 32740846460681130115077924451334892, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:03.085489Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=13 for E3 1:0 (buffered=3, folded=0, remaining=17) +2026-03-30T15:34:10.104621Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 135, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x4f92d3c96b082057887312ade0fc273b667b006e73b0157d172e72125669b356), causation_id: EventId(0xd1e425410f52d88d1404b58b211fed179ced0a4fdd56fb55847e5c213199df96), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 52, ts: 32740846590179173527158568879471340, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:10.108813Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (5/15) +2026-03-30T15:34:10.109000Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 12 }), ctx: EventContext { id: EventId(0x600e1946c430d1c1b2a4fb33590da94ea27b288c78c0f30bba367493c9dea772), causation_id: EventId(0x4f92d3c96b082057887312ade0fc273b667b006e73b0157d172e72125669b356), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 53, ts: 32740846590261851834096935089814252, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:10.110115Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=12 for E3 1:0 (buffered=4, folded=0, remaining=17) +test test_trbfv_actor has been running for over 60 seconds +2026-03-30T15:34:16.500000Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 134, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb0e5abb4aad47324d510418415742b60fb3b99b2913bb4d5b754ade3a59da895), causation_id: EventId(0xdc3cdb9ab6c9938fb42778c62c4e62f8142cac89efcdb4bac819eaa4a4f2e962), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 54, ts: 32740846708153296108719898188921580, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:16.504371Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (6/15) +2026-03-30T15:34:16.504571Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 11 }), ctx: EventContext { id: EventId(0x2bad2c9649916e585b061fffc73522caba6191d2bdea8ab277c71f93227180d3), causation_id: EventId(0xb0e5abb4aad47324d510418415742b60fb3b99b2913bb4d5b754ade3a59da895), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 55, ts: 32740846708239110362150795023039212, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:16.505624Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=11 for E3 1:0 (buffered=5, folded=0, remaining=17) +2026-03-30T15:34:22.834429Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 133, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2d416d3ed654a7be345cc49cd3a081bc2f0f751d8c87bf838aeca14d88cab838), causation_id: EventId(0xcebcba08ede66af6594a519e8bf36fa81034816a33d31b458644827bc69af48b), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 56, ts: 32740846825002665363874935007689452, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:22.838331Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (7/15) +2026-03-30T15:34:22.838512Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 10 }), ctx: EventContext { id: EventId(0x671b24a6703ccda0017e2e5ef6fbf25a8d085ceedb952233a8adc01b2a728577), causation_id: EventId(0x2d416d3ed654a7be345cc49cd3a081bc2f0f751d8c87bf838aeca14d88cab838), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 57, ts: 32740846825079920328055630609857260, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:22.839527Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=10 for E3 1:0 (buffered=6, folded=0, remaining=17) +2026-03-30T15:34:29.154115Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 132, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xe266585d631bf305e20f6b1230c1fe5f8babaa27e357efb5012428770f62338c), causation_id: EventId(0x12b8bedd5c8ca747474ca42a5d663174494cbe3a35bed01f858610111a8e62c0), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 58, ts: 32740846941580295632080156421602028, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:29.158330Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (8/15) +2026-03-30T15:34:29.158545Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 9 }), ctx: EventContext { id: EventId(0x55c0d776156428db46e22e17038ce5d0a4b290af1bb6dccbfc6093ea4878a44e), causation_id: EventId(0xe266585d631bf305e20f6b1230c1fe5f8babaa27e357efb5012428770f62338c), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 59, ts: 32740846941663453554364439080286956, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:29.159891Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=9 for E3 1:0 (buffered=7, folded=0, remaining=17) +2026-03-30T15:34:35.448185Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 131, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc65b188d3d159367f548911c8e52d4a467c996606c72bd6a33e699a845a7014a), causation_id: EventId(0xeec6861184326228519dab7932a9dcb93ced49ba5cba8da0af61f37213d07a5d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740847057685357210605086542215916, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:35.452161Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (9/15) +2026-03-30T15:34:35.452344Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 8 }), ctx: EventContext { id: EventId(0xd707ebd4d2d5aaddfe3d3b04032eeee4e245d86943845a5fdedb3ff72b02a52d), causation_id: EventId(0xc65b188d3d159367f548911c8e52d4a467c996606c72bd6a33e699a845a7014a), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 61, ts: 32740847057764087914311678908513004, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:35.453360Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=8 for E3 1:0 (buffered=8, folded=0, remaining=17) +2026-03-30T15:34:41.736560Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 130, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xac511fd20b77d8dbb2bc647d970c1b89f2057488bdf7efb7c19be7ea5401cf3c), causation_id: EventId(0x73cfd4e7d9af36aece4731d41457667500e8f2e0b92d8dbef70dcfbe9b88591b), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 62, ts: 32740847173685641282791346409650924, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:41.740442Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (10/15) +2026-03-30T15:34:41.740609Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 7 }), ctx: EventContext { id: EventId(0x758daa82db4af910218a0c96e253e0b48f628de88501158ab50ab6579291cf71), causation_id: EventId(0xac511fd20b77d8dbb2bc647d970c1b89f2057488bdf7efb7c19be7ea5401cf3c), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 63, ts: 32740847173762324397905757015718636, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:41.741615Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=7 for E3 1:0 (buffered=9, folded=0, remaining=17) +2026-03-30T15:34:48.136874Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 129, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x678194192bf4f07c7f14a0db0a6e2ea9ce9fe90bd9ab78b7ba68d6a863c1689d), causation_id: EventId(0x36d68cd2a53f8b9b44fa6b4863ae4d12eaad5733e7445cfc6892d8c6ff23786d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 64, ts: 32740847291750374271242737036638956, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:48.141176Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (11/15) +2026-03-30T15:34:48.141379Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 6 }), ctx: EventContext { id: EventId(0x0aec31fdc35fb5540c69776d4e7139275c88a1291bd158490cc770730b062b91), causation_id: EventId(0x678194192bf4f07c7f14a0db0a6e2ea9ce9fe90bd9ab78b7ba68d6a863c1689d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 65, ts: 32740847291835118613517358716762860, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:48.142785Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=6 for E3 1:0 (buffered=10, folded=0, remaining=17) +2026-03-30T15:34:54.458770Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 128, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x931d362263073b5d1d8ec17e25052860c6a882a6d10bfb6528646148eaa07ea1), causation_id: EventId(0xac3d5dfb16c14f0b4ccb7119ee21f77c14902a4e06e1d3685867fd9a58f3c499), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 66, ts: 32740847408368993204779741074242284, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:54.462769Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (12/15) +2026-03-30T15:34:54.462951Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 5 }), ctx: EventContext { id: EventId(0x02fb4bc4b63bce48e49e7016aa72e543af606b3363b7ce3c39ac464022daf3c3), causation_id: EventId(0x931d362263073b5d1d8ec17e25052860c6a882a6d10bfb6528646148eaa07ea1), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 67, ts: 32740847408447816142206701988297452, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:34:54.463968Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=5 for E3 1:0 (buffered=11, folded=0, remaining=17) +2026-03-30T15:35:00.832656Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xa9d608812a900c3591161bf35dc770db5f0fe68de99a0c8b0ce8b270bba596da), causation_id: EventId(0x0091753e6f65d9d755515b5da2eef7bdf90299d6a5a2158a214fb6495f29acee), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 68, ts: 32740847525946418555035946476190444, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:00.836753Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (13/15) +2026-03-30T15:35:00.836925Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 4 }), ctx: EventContext { id: EventId(0x3323ad5a5dd4208d20dd299fb0e7d6e1531d1b82be651137002d68339e53370f), causation_id: EventId(0xa9d608812a900c3591161bf35dc770db5f0fe68de99a0c8b0ce8b270bba596da), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 69, ts: 32740847526027141507102499474062060, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:00.837950Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=4 for E3 1:0 (buffered=12, folded=0, remaining=17) +2026-03-30T15:35:22.834555Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x077ab0120eda14611ae39e524aba8f4d7a124c0d3f586b2d501d7bc4ee87496a), causation_id: EventId(0xab2cb862d87aa37ad3c9f7d971b8e2c492f5b563106bfc60616fb92f7d5f7bae), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 70, ts: 32740847931810980688518700168461036, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:22.836537Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 1:0 (14/15) +2026-03-30T15:35:22.836699Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 3 }), ctx: EventContext { id: EventId(0x70794e49becef57ea1f1da38573c950890900f92dd5f91fc0a7cd577e1721bb6), causation_id: EventId(0x077ab0120eda14611ae39e524aba8f4d7a124c0d3f586b2d501d7bc4ee87496a), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 71, ts: 32740847931851471291760492634258156, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:22.837675Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=3 for E3 1:0 (buffered=13, folded=0, remaining=17) +2026-03-30T15:35:45.002034Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 125, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xbd3a671ead7f0e40f7cfd25bdde6b672022008f49b05f4bfa1fd7edb4aab97d2), causation_id: EventId(0x59645d60362206c74d1290574e14adc79e1719b9d0b1e9c06e503d13e9173dac), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 72, ts: 32740848340728866347825932553763564, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.004049Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 1:0 (15/15) +2026-03-30T15:35:45.004106Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 1:0 +2026-03-30T15:35:45.078125Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 1:0 party 2 (signer: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) +2026-03-30T15:35:45.079645Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 1:0 to 3 parties +2026-03-30T15:35:45.081532Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 2 }), ctx: EventContext { id: EventId(0xe3750e6c6896dae809d435354ad5b4a0fbb121391137cd23424893ede54c8e44), causation_id: EventId(0xbd3a671ead7f0e40f7cfd25bdde6b672022008f49b05f4bfa1fd7edb4aab97d2), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 73, ts: 32740848340769891906645862596557548, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.082600Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd687c509417ee8be4539409a83822818149e65d4b3bd598aa0437f061a9e608e), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 74, ts: 32740848342136961663204403757267692, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.083705Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xee8d8f765b4f322a75951de8e791877617853ffbc8ed6e193f540bdb1f9029e3), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 75, ts: 32740848342138031574360678911261420, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.084836Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xc3c13aa3ea46a38439b96f3e5a2b5cd44ca489200d6bfcf96f082a894f05b5f3), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 76, ts: 32740848342139064592028806646151916, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.085896Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x3eb859c56fbf72c9cdea2b19e4e3dd8ccc0178a07bcd838e535a7a2e49b42f65), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 77, ts: 32740848342139857802023976156871404, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.088925Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xac761ecd9a40fe5407b77d1f7a06572c7a313a1983bd41198690e6c8337459ff), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 78, ts: 32740848342141794710151715659791084, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.091994Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x06bc2924ad8030ab7257b1300670d87faa2a7d9bb54600dc98263bcb7f3fd3dc), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 79, ts: 32740848342144100553160929353743084, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.094962Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x490fc91aeba428f2f88b37ec6a59a7cdefba3e09c3fa259157f1863a5eea7dc3), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 80, ts: 32740848342146148141753111113972460, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.098004Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x482ab3feb05d027522240f1410bc61b0b5f290f0d1e566d803af2869eabf6741), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 81, ts: 32740848342148232623833440293305068, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.100998Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x262f4aee509499d7800b385d500c0b8a122e8be53fea88dbb9e4fb6b4550c4d7), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 82, ts: 32740848342150298659169695763086060, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.103961Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xc6777e6e28dd917df46cc09b41fb4d8156ceba098c407e8a189a3e63d0a718fb), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 83, ts: 32740848342152235567297435266005740, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.107082Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x3268206267d1347e19e6c73a499829ea30b0e57cd2e15b14885f410c6cb35b08), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 84, ts: 32740848342154172475425174768925420, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.110097Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa909308b00c320ed696d0106f1b51178ed385486afbba6076df5382ac4368119), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 85, ts: 32740848342156109383552914271845100, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.113097Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xbddc32bf3c47d7316a6828295c7af7d8c61df19bb2033675409a391d4b4651ce), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 86, ts: 32740848342158027844936580065213164, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.116186Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x1bc6bd6606590cb283b382ac4848cce2eb1913746f4b047c439cf603a52f9be4), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 87, ts: 32740848342159964753064319568132844, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.119231Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x64cbe6f5866e0a2723156e8229f948c6de5bc7f80a6f56611cbe493ff79f6e5e), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 88, ts: 32740848342161901661192059071052524, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.122352Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xd0f7c5249e3ecbf7e7bbe4fddc1e32b691a4b225a62702eae32197dd6431f145), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 89, ts: 32740848342164668672803115503794924, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.136538Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x3856bf4451a9c36ac2125074ed6227a1ec3550bab367d384bd67d584da4b40d4), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 90, ts: 32740848342174906615764024304941804, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.150912Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x6a3c61dc8cab4ae9da8c447cd96f5f5408af564198a89b2eac522413332cbb9c), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 91, ts: 32740848342184830964075680043711212, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.165530Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=2 for E3 1:0 (buffered=14, folded=0, remaining=17) +2026-03-30T15:35:45.165555Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 0 (E3 1:0) +2026-03-30T15:35:45.172572Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +2026-03-30T15:35:45.173133Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 1 (E3 1:0) +2026-03-30T15:35:45.180135Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +2026-03-30T15:35:45.180697Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 2 (E3 1:0) +2026-03-30T15:35:45.187863Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +2026-03-30T15:35:45.188571Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 2 E3 1:0 +2026-03-30T15:35:45.189275Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 2 E3 1:0 +2026-03-30T15:35:45.190433Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 2 E3 1:0 +2026-03-30T15:35:45.192028Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.194896Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.199225Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.204764Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.211629Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.219950Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.229413Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.240175Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.252408Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.265796Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.281062Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.297406Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 +2026-03-30T15:35:45.315096Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 2), forwarding to collector! +2026-03-30T15:35:45.315103Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes +2026-03-30T15:35:45.315108Z  INFO e3_keyshare::threshold_keyshare: got collector address! +2026-03-30T15:35:45.315216Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +2026-03-30T15:35:45.315220Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 +2026-03-30T15:35:45.315226Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 +2026-03-30T15:35:45.315235Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 20.458µs +2026-03-30T15:35:45.315484Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-29T15:35:45.172568Z }, value: }), ctx: EventContext { id: EventId(0x7ca4c9db747009efe944bf8bec4eb6c1266f4e873d31bac66762f5bb7f0cd6f2), causation_id: EventId(0xd0f7c5249e3ecbf7e7bbe4fddc1e32b691a4b225a62702eae32197dd6431f145), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 92, ts: 32740848343878611004923691073092332, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:35:45.330981Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-29T15:35:45.180133Z }, value: }), ctx: EventContext { id: EventId(0xebecf3c4524bb90dacd23a7d3fb4778438e02eb603eaf4acbbb0f01041885cef), causation_id: EventId(0x3856bf4451a9c36ac2125074ed6227a1ec3550bab367d384bd67d584da4b40d4), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 93, ts: 32740848344018013049888714154654444, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:35:45.346990Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-29T15:35:45.187855Z }, value: }), ctx: EventContext { id: EventId(0xe204aba1cdc4f2db129c91475f3014f7b937024cdd995562a30f09f0cacbde43), causation_id: EventId(0x6a3c61dc8cab4ae9da8c447cd96f5f5408af564198a89b2eac522413332cbb9c), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 94, ts: 32740848344160717062042931245955820, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:35:45.468833Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-29T15:35:45.172568Z }, value: }), ctx: EventContext { id: EventId(0x34aea1069c0c87b5236edf1d6ea37076077aa9b2576f6779a9230d1a4be6167d), causation_id: EventId(0x34aea1069c0c87b5236edf1d6ea37076077aa9b2576f6779a9230d1a4be6167d), origin_id: EventId(0x34aea1069c0c87b5236edf1d6ea37076077aa9b2576f6779a9230d1a4be6167d), seq: 43, ts: 32740848349322632562700929644205418, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:35:45.484939Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-29T15:35:45.180133Z }, value: }), ctx: EventContext { id: EventId(0xe72a12ef3f4f1e558ac611f7d68cd7c2dfe30e49cfff0aa4b44827562cc141a8), causation_id: EventId(0xe72a12ef3f4f1e558ac611f7d68cd7c2dfe30e49cfff0aa4b44827562cc141a8), origin_id: EventId(0xe72a12ef3f4f1e558ac611f7d68cd7c2dfe30e49cfff0aa4b44827562cc141a8), seq: 43, ts: 32740848349332520017524436737697498, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:35:45.527860Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xac41c99a5e07643f7c7fe6afade919ad7bc2cccb4d37460207330f1f29751e23), causation_id: EventId(0x34aea1069c0c87b5236edf1d6ea37076077aa9b2576f6779a9230d1a4be6167d), origin_id: EventId(0x34aea1069c0c87b5236edf1d6ea37076077aa9b2576f6779a9230d1a4be6167d), seq: 44, ts: 32740848350181494520028772657894762, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.543974Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x774baa2fab25f313f5173812aea555b061ac30ad9a44b10f9d2a6180cd0e323d), causation_id: EventId(0xe72a12ef3f4f1e558ac611f7d68cd7c2dfe30e49cfff0aa4b44827562cc141a8), origin_id: EventId(0xe72a12ef3f4f1e558ac611f7d68cd7c2dfe30e49cfff0aa4b44827562cc141a8), seq: 44, ts: 32740848350419457518579624647567066, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:45.559608Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 0), forwarding to collector! +2026-03-30T15:35:45.559621Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes +2026-03-30T15:35:45.559627Z  INFO e3_keyshare::threshold_keyshare: got collector address! +2026-03-30T15:35:45.559664Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 1), forwarding to collector! +2026-03-30T15:35:45.559668Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes +2026-03-30T15:35:45.559672Z  INFO e3_keyshare::threshold_keyshare: got collector address! +2026-03-30T15:35:45.559694Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +2026-03-30T15:35:45.559698Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 +2026-03-30T15:35:45.559703Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 +2026-03-30T15:35:45.559710Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 16.667µs +2026-03-30T15:35:45.559732Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +2026-03-30T15:35:45.559735Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 +2026-03-30T15:35:45.559738Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 +2026-03-30T15:35:45.559741Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 9.208µs +2026-03-30T15:35:50.412266Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 139, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x08c4d58896d0e7ebac607634fde4830df235f9e7b69b4eaeecab87b0d9c5120c), causation_id: EventId(0x0f5fe8e38428ebdc2d5ce17fb3f3b531ea6b10b1f3f396e805c19eb757241b04), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 45, ts: 32740848440530012984475635691394410, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:50.414351Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 1:0 (1/15) +2026-03-30T15:35:50.414526Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: }, seq: 1 }), ctx: EventContext { id: EventId(0xda0d6e5e9cdb35706ebf9b938fa8efc6543ec2297f2bebeff320693f451882fe), causation_id: EventId(0x08c4d58896d0e7ebac607634fde4830df235f9e7b69b4eaeecab87b0d9c5120c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 46, ts: 32740848440572403602357020241007978, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:50.415678Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=1 for E3 1:0 (buffered=1, folded=0, remaining=17) +2026-03-30T15:35:50.415689Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: dispatching fold step 1/17 (seq=1) for E3 1:0 +2026-03-30T15:35:50.415859Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(FoldProofs { proof1: Proof { circuit: PkBfv, data: , public_signals: }, proof2: Proof { circuit: PkGeneration, data: , public_signals: }, target_evm: false }), correlation_id: 178, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xcdc12faddb2adcc8eb5e3c6a4de0a5e79d48432e1bcf0ee640eb8c6504d31298), causation_id: EventId(0xda0d6e5e9cdb35706ebf9b938fa8efc6543ec2297f2bebeff320693f451882fe), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 47, ts: 32740848440596937771975053944657258, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:35:57.160618Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 153, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xf16af779951e1447913372c80f6b61861cab598c794ee3b6074a7cc3da7ddb0b), causation_id: EventId(0x59dfe6f727a53c16b95bcb4f3e13dde842a79ef08a433ef28a52542fdc9fce53), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 48, ts: 32740848565013880869184623508821354, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:57.165401Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (2/15) +2026-03-30T15:35:57.165639Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 15 }), ctx: EventContext { id: EventId(0x2d2a0be84d41773651f7fe116d5d1c5f0a5f8aaddfc49e2f113d895430d0774b), causation_id: EventId(0xf16af779951e1447913372c80f6b61861cab598c794ee3b6074a7cc3da7ddb0b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 49, ts: 32740848565107424308382404645066090, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:35:57.166865Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=15 for E3 1:0 (buffered=1, folded=0, remaining=17) +2026-03-30T15:36:03.550643Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 152, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x16414cfed43ee3874b88a2ed40c03a70217447e506780057a391b9cbb9563614), causation_id: EventId(0xb4ee6e91c1e7c1120e46d716899b3ccee258f529c7c01de75e1354978a9b96d2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 50, ts: 32740848682889128902510869621609834, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:03.554516Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (3/15) +2026-03-30T15:36:03.554679Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 14 }), ctx: EventContext { id: EventId(0x6fdd7f481e557477516d6520f0421c4baac8a3e8a1446a3b091acf5de3d9e4a3), causation_id: EventId(0x16414cfed43ee3874b88a2ed40c03a70217447e506780057a391b9cbb9563614), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 51, ts: 32740848682965590656696395713058154, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:03.555683Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=14 for E3 1:0 (buffered=2, folded=0, remaining=17) +2026-03-30T15:36:10.180058Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 151, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8971abc85c183c17440feff7bf6f747b042a7a946d042b04244ad1e81a0e77ef), causation_id: EventId(0xa110a1687cec42cdf360e494c47051e22371e4cbd62688855b1e3c8215b3ada9), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 52, ts: 32740848805180066298481339652478314, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:10.184112Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (4/15) +2026-03-30T15:36:10.184296Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 13 }), ctx: EventContext { id: EventId(0xef62d6ac2b2fc26e01df95df851858213158081e429ad6b3d0a9b6c17accb066), causation_id: EventId(0x8971abc85c183c17440feff7bf6f747b042a7a946d042b04244ad1e81a0e77ef), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 53, ts: 32740848805260143614505312816043370, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:10.185318Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=13 for E3 1:0 (buffered=3, folded=0, remaining=17) +2026-03-30T15:36:16.767635Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 150, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0b8a06feac57ff440607d5658a15843600cbf25c0d7a0d0bcbc8f4d1891a6c44), causation_id: EventId(0xc12947dcfd86e4b987755e9dff0d1765399c9ca4530449ba147ad926032a1a2e), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 54, ts: 32740848926699265709384096881939818, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:16.771641Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (5/15) +2026-03-30T15:36:16.771801Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 12 }), ctx: EventContext { id: EventId(0xa46e3379c168cda6ebbb5bea2da7a6519fa118690200e0e811908d68f8169f82), causation_id: EventId(0x0b8a06feac57ff440607d5658a15843600cbf25c0d7a0d0bcbc8f4d1891a6c44), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 55, ts: 32740848926778531368668826825233770, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:16.772807Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=12 for E3 1:0 (buffered=4, folded=0, remaining=17) +2026-03-30T15:36:23.263893Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 149, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x48ca7f68436cd470c8d3a1e19ac46a29a219f0194e916259115893eef4baf1d1), causation_id: EventId(0xc2832e15181c199c3dc12b23fc9e84528322d1563e5db416599202a432ad5d0a), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 56, ts: 32740849046534277386357172048860522, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:23.267745Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (6/15) +2026-03-30T15:36:23.267911Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 11 }), ctx: EventContext { id: EventId(0x708d9998293d84ee89e94f848a4e39ed3dc86d00db423998e20ab42614b59226), causation_id: EventId(0x48ca7f68436cd470c8d3a1e19ac46a29a219f0194e916259115893eef4baf1d1), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 57, ts: 32740849046610499332869739916137834, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:23.268908Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=11 for E3 1:0 (buffered=5, folded=0, remaining=17) +2026-03-30T15:36:29.821489Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 148, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x12736d844cbe8ac53cdfeb0ecb965175d592577df48087eb3dfb272dcf94cab2), causation_id: EventId(0x6f855de355606e5ff0941d835c3a698c321998ecae80f9b18d54af63fef16daf), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 58, ts: 32740849167500332729465674663564650, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:29.825659Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (7/15) +2026-03-30T15:36:29.825878Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 10 }), ctx: EventContext { id: EventId(0xa58784457f84774031c453a5e67249ce4d6109da0cc6d3303597ee76dfd77a9c), causation_id: EventId(0x12736d844cbe8ac53cdfeb0ecb965175d592577df48087eb3dfb272dcf94cab2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 59, ts: 32740849167582808122219230068839786, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:29.826921Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=10 for E3 1:0 (buffered=6, folded=0, remaining=17) +2026-03-30T15:36:36.198490Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 147, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2a745ce75a45524480cf1df8f8729af8d7be280d03bfa45bb65c93b48e819d14), causation_id: EventId(0x2ba01a7bfe58beeef41465e29d58a6e04790c608230d01d596a643b00ebcaa02), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 60, ts: 32740849285135662409369254348035434, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:36.202411Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (8/15) +2026-03-30T15:36:36.202626Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 9 }), ctx: EventContext { id: EventId(0x70c28782bc117f315d6d40004025670a4ad03481211deebd0b04569dbec872f3), causation_id: EventId(0x2a745ce75a45524480cf1df8f8729af8d7be280d03bfa45bb65c93b48e819d14), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 61, ts: 32740849285212954267038097369306474, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:36.203632Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=9 for E3 1:0 (buffered=7, folded=0, remaining=17) +2026-03-30T15:36:42.611559Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 146, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0a652d9b73f23edd299c4d127f2091738efd8d21cd1d49a075cfea5de0360e58), causation_id: EventId(0x8444754cb787e663b3b0dc6615e96c37be0efd2c9d330acf3c8f130e5f074cdc), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 62, ts: 32740849403435683618480810305885546, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:42.615615Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (9/15) +2026-03-30T15:36:42.615830Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 8 }), ctx: EventContext { id: EventId(0x62ccb6fb0b25f4404d397e4f8fc2d6a6f401217ddddd4ebc5eca5f6ffda3919d), causation_id: EventId(0x0a652d9b73f23edd299c4d127f2091738efd8d21cd1d49a075cfea5de0360e58), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 63, ts: 32740849403515724041016636050347370, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:42.616878Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=8 for E3 1:0 (buffered=8, folded=0, remaining=17) +2026-03-30T15:36:49.048621Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 145, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x47f555cea23b8cd2b52e629057611a3773ff8f9f2ef4bb8cffb0bfb5f61c9700), causation_id: EventId(0x562f40b02060843e0796b0b044fb9479d8209dce7c1b98b59ead4459816e407c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 64, ts: 32740849522178574259313985178932586, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:49.052456Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (10/15) +2026-03-30T15:36:49.052621Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 7 }), ctx: EventContext { id: EventId(0x3d4235d66733e121bba4b491d702e4fe0a6f4db7595833e9b7807984cef5edef), causation_id: EventId(0x47f555cea23b8cd2b52e629057611a3773ff8f9f2ef4bb8cffb0bfb5f61c9700), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 65, ts: 32740849522254445717689152564729194, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:49.053618Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=7 for E3 1:0 (buffered=9, folded=0, remaining=17) +2026-03-30T15:36:55.554903Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 144, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x40c870715c6e63bd7010f4bf35e6ab99e0e8f34b05feabc6d37408faf55ff469), causation_id: EventId(0x8c278e6214a939138ca3bbe52703dca3e84b8b52e54d8a946a7639cb8f8d99de), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 66, ts: 32740849642198385418417482633942378, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:55.558772Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (11/15) +2026-03-30T15:36:55.558934Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 6 }), ctx: EventContext { id: EventId(0x2d695d71842f00491709295093ea5f81ca554dd930b8ec12e1475151ff4b0b64), causation_id: EventId(0x40c870715c6e63bd7010f4bf35e6ab99e0e8f34b05feabc6d37408faf55ff469), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 67, ts: 32740849642274791832370787596735850, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:36:55.559914Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=6 for E3 1:0 (buffered=10, folded=0, remaining=17) +2026-03-30T15:37:01.879584Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 143, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xf50ee1ef8e52d22eb3cbf2f2ef41d8f116de490c1ef532713c50ce659439a638), causation_id: EventId(0x1f21292f581d08a1b24721704c2048ea60c9c8b803b27a57dee69a4e54768b06), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 68, ts: 32740849758868212513503104386831722, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:01.883462Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (12/15) +2026-03-30T15:37:01.883622Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 5 }), ctx: EventContext { id: EventId(0xa8efc5360ffa9a2fc9b34d1d5b214c9f5ba561d809fdea5c6100f2571b36bdf1), causation_id: EventId(0xf50ee1ef8e52d22eb3cbf2f2ef41d8f116de490c1ef532713c50ce659439a638), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 69, ts: 32740849758944729607920851606934890, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:01.884625Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=5 for E3 1:0 (buffered=11, folded=0, remaining=17) +2026-03-30T15:37:08.049624Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 142, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc2c242f15d18995e4266771b86a38f5b12c746083591bd0e2c0b14999fd7d2a2), causation_id: EventId(0x36b447bda284c77fc6051c3c6b8d574031bce6dcd48df89cd7a64d2104a40ab0), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 70, ts: 32740849872685398211542133658719594, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:08.053565Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (13/15) +2026-03-30T15:37:08.053724Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 4 }), ctx: EventContext { id: EventId(0xf78c1cf6ca092a74c18ebcfa3e2cf80e65997bddb85b18a4548d5bc354d621cc), causation_id: EventId(0xc2c242f15d18995e4266771b86a38f5b12c746083591bd0e2c0b14999fd7d2a2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 71, ts: 32740849872763059004092450871022954, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:08.054714Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=4 for E3 1:0 (buffered=12, folded=0, remaining=17) +2026-03-30T15:37:29.958835Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 141, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc60412372e2cd0b71dcdaf92556ca7082c7024da5d5b432f4a3b8773ba84a6b7), causation_id: EventId(0xb9ceb655a8fafba60c0e97c3ca18b3aa32bfb576b4f3d6e58b24ef4081f2f22b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 72, ts: 32740850276840131636832749011703146, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:29.960836Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 1:0 (14/15) +2026-03-30T15:37:29.960997Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 3 }), ctx: EventContext { id: EventId(0x024fe7a3e905a457a6645001ec28bbb0af2922f8788d4e769dbb7fbbb5ead4a3), causation_id: EventId(0xc60412372e2cd0b71dcdaf92556ca7082c7024da5d5b432f4a3b8773ba84a6b7), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 73, ts: 32740850276880880494491573411222890, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:29.962004Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=3 for E3 1:0 (buffered=13, folded=0, remaining=17) +2026-03-30T15:37:51.990800Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 140, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0549b01d31919873e3aea326701b75b6d820ff2903b83749b46216f21463018a), causation_id: EventId(0x98e43130ea47bde0f6d1fa2e3b4d127dc46d2f98e8e6eb699d284541f8dc019c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 74, ts: 32740850683258059199038641833350506, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:51.992895Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 1:0 (15/15) +2026-03-30T15:37:51.992946Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 1:0 +2026-03-30T15:37:52.068420Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 1:0 party 0 (signer: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) +2026-03-30T15:37:52.069913Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 1:0 to 3 parties +2026-03-30T15:37:52.071795Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 2 }), ctx: EventContext { id: EventId(0x736d66cf4aae4bf09e6a440eab16b37da1ea424d4f214f1d5b2d3602564541e2), causation_id: EventId(0x0549b01d31919873e3aea326701b75b6d820ff2903b83749b46216f21463018a), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 75, ts: 32740850683300615837616689768928618, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.072771Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x95dc2698d49b3182b05456cfca3e50e101b1773f1ddce120b0786410f9ade306), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 76, ts: 32740850684694396479593962360378730, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.073878Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb54a397708f526da399c2d60b16194eddee4261afc892671b58abcab05a250ca), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 77, ts: 32740850684695503284238384933475690, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.074934Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6c9ca70fae049152cae937b26d4b829e3742d3dda7674d41cb4b52452c307b1f), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 78, ts: 32740850684696278047489480734643562, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.075999Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xc730af9a091f84c2769aa47522e71e597383ac28c8b37f480bad89ce32025cc3), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 79, ts: 32740850684697126597716871374017898, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.079163Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x996d3cec73f1587c89f4ee4d770ef014edf52bde078c0f7212b44e64117bbd9a), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 80, ts: 32740850684699063505844610876937578, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.082278Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x5287dd9e81d1ae8fad388f1112a7c9e3e9bcb474b3be7f684b4b6577d7e0d3d4), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 81, ts: 32740850684701055754204571508512106, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.085335Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb0fd65620745bfdbf4355830abdf8e913402a6663b91289248393974cb29ad43), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 82, ts: 32740850684703066449308605849638250, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.088400Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xfb3e1a5d7dabd1215212451274170f266eba6c51799eddbefe4941bb980bd7d6), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 83, ts: 32740850684705003357436345352557930, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.091484Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb57f3f814e5785767c317cbb3e3b712782b483a5c0e8b0acf2b50bcb212b98cb), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 84, ts: 32740850684706921818820011145925994, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.094680Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x3f26e0c42c8e24b957c116fb0929d02434acb4d4363c34a3c1b4e92389045d97), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 85, ts: 32740850684708858726947750648845674, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.097728Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd0ee3ad30db2a31c31000ed47afa33287cce6f5d38b3f6ad920f13f7b9f368cf), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 86, ts: 32740850684710795635075490151765354, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.100707Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xead53afb4b7054a89b691cf3d6886610cc5324a0ef6ac2481e13019ec9a3fdfa), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 87, ts: 32740850684713212158549146103027050, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.103678Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x544dd4c99615216a5766b2aa06c3eadaed3ef01e6aa38050218bc07279197543), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 88, ts: 32740850684715167513420959315498346, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.106704Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x1121831de30b37ec8b9418d692fe25357e385eeefe1fbe9f00a27832759bb7ad), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 89, ts: 32740850684717104421548698818418026, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.109798Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x2402246280f37414e5c3b795a376f10b6dbf655374499059a26f1be1edc57aa3), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 90, ts: 32740850684719041329676438321337706, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.113035Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x5a0fb959a7bac85f55ee7445bfab39e86d3b576bd5909ccad23aee0397126fc4), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 91, ts: 32740850684721605427102683949012330, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.128589Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xd541c61000bc9010528d1bfce92a1e56010e718caabc1c44ded4d79619ce6734), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 92, ts: 32740850684731769583087297911952746, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.143433Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xc78c62cf7d7a8e8851e328bf6e99064d60b4431a7103a3f9b7a93ffaa8de4d36), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 93, ts: 32740850684741564804190437683860842, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.158151Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=2 for E3 1:0 (buffered=14, folded=0, remaining=17) +2026-03-30T15:37:52.158175Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 0 (E3 1:0) +2026-03-30T15:37:52.165181Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +2026-03-30T15:37:52.165781Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 1 (E3 1:0) +2026-03-30T15:37:52.172995Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +2026-03-30T15:37:52.173560Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 2 (E3 1:0) +2026-03-30T15:37:52.180759Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +2026-03-30T15:37:52.181481Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 0 E3 1:0 +2026-03-30T15:37:52.182220Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 0 E3 1:0 +2026-03-30T15:37:52.183437Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 0 E3 1:0 +2026-03-30T15:37:52.185073Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.188126Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.192426Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.197988Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.205033Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.213353Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.223353Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.234431Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.246516Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.259914Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.276212Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.292604Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 +2026-03-30T15:37:52.310389Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 0), forwarding to collector! +2026-03-30T15:37:52.310398Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes +2026-03-30T15:37:52.310404Z  INFO e3_keyshare::threshold_keyshare: got collector address! +2026-03-30T15:37:52.310500Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +2026-03-30T15:37:52.310504Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 +2026-03-30T15:37:52.310509Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 +2026-03-30T15:37:52.310515Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 15.75µs +2026-03-30T15:37:52.310720Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-29T15:37:52.165176Z }, value: }), ctx: EventContext { id: EventId(0xa86b951ce6878b949e2d0ad738f731069e5e296942ad8d43bff20e4d368ba0f2), causation_id: EventId(0x5a0fb959a7bac85f55ee7445bfab39e86d3b576bd5909ccad23aee0397126fc4), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 94, ts: 32740850686478731587099813578642794, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:37:52.326406Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-29T15:37:52.172985Z }, value: }), ctx: EventContext { id: EventId(0xd09e4c1a7ff01e10ea4b834e425f58d42b44ce2e990a888dc774031810a03e13), causation_id: EventId(0xd541c61000bc9010528d1bfce92a1e56010e718caabc1c44ded4d79619ce6734), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 95, ts: 32740850686623003572500295981831530, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:37:52.342054Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-29T15:37:52.180757Z }, value: }), ctx: EventContext { id: EventId(0xfa885bd5eaeb2d52b4e74bebc05aef5c7c957b82d7e3e2ec8a7bafb3bba9fbd7), causation_id: EventId(0xc78c62cf7d7a8e8851e328bf6e99064d60b4431a7103a3f9b7a93ffaa8de4d36), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 96, ts: 32740850686766039626047839845061994, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:37:52.451896Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-29T15:37:52.172985Z }, value: }), ctx: EventContext { id: EventId(0xa510c132359c99e88daac5d3c94a00ec59d368c959d5a7d5462563488a6df4cf), causation_id: EventId(0xa510c132359c99e88daac5d3c94a00ec59d368c959d5a7d5462563488a6df4cf), origin_id: EventId(0xa510c132359c99e88daac5d3c94a00ec59d368c959d5a7d5462563488a6df4cf), seq: 45, ts: 32740850691746974120598670617585370, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:37:52.467245Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-29T15:37:52.180757Z }, value: }), ctx: EventContext { id: EventId(0x8616a6c04199881a5424bf18d50b6feb499793fc93b95cd0a1e0751cf159183e), causation_id: EventId(0x8616a6c04199881a5424bf18d50b6feb499793fc93b95cd0a1e0751cf159183e), origin_id: EventId(0x8616a6c04199881a5424bf18d50b6feb499793fc93b95cd0a1e0751cf159183e), seq: 95, ts: 32740850691756769341701809627020012, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:37:52.507315Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x376398639497cba55b25915895cd8d70de5037c09a84bcf9a1ac4844a5153ed4), causation_id: EventId(0xa510c132359c99e88daac5d3c94a00ec59d368c959d5a7d5462563488a6df4cf), origin_id: EventId(0xa510c132359c99e88daac5d3c94a00ec59d368c959d5a7d5462563488a6df4cf), seq: 46, ts: 32740850692553779366150505276614362, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.521804Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x845c923985514fe0fa049412ce1aa3fed85a31a9225d08d8b7e77197a6bfb9dd), causation_id: EventId(0x8616a6c04199881a5424bf18d50b6feb499793fc93b95cd0a1e0751cf159183e), origin_id: EventId(0x8616a6c04199881a5424bf18d50b6feb499793fc93b95cd0a1e0751cf159183e), seq: 96, ts: 32740850692777446138044232827484908, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:52.536572Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 1), forwarding to collector! +2026-03-30T15:37:52.536579Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes +2026-03-30T15:37:52.536585Z  INFO e3_keyshare::threshold_keyshare: got collector address! +2026-03-30T15:37:52.536643Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 2), forwarding to collector! +2026-03-30T15:37:52.536648Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes +2026-03-30T15:37:52.536652Z  INFO e3_keyshare::threshold_keyshare: got collector address! +2026-03-30T15:37:52.536669Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +2026-03-30T15:37:52.536674Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 +2026-03-30T15:37:52.536679Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 +2026-03-30T15:37:52.536684Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 15.625µs +2026-03-30T15:37:52.536707Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +2026-03-30T15:37:52.536710Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 +2026-03-30T15:37:52.536713Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 +2026-03-30T15:37:52.536716Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 9.833µs +2026-03-30T15:37:56.729652Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 154, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1843da948c8a81f015fa7d358ccdace7cff1bcf9e9d229c0e9b912fc77f0d1a7), causation_id: EventId(0xc04e660658e63fb21a8d2401f22ccbeaf3b3b4f3f0f2971cb998988fc9dee986), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 47, ts: 32740850770674467692969370411312858, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:56.731646Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 1:0 (1/15) +2026-03-30T15:37:56.731816Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: }, seq: 1 }), ctx: EventContext { id: EventId(0x860c249260d7ba10a065ab0fddb70f456b0dbceca5171aabfe0836d0ec72b8af), causation_id: EventId(0x1843da948c8a81f015fa7d358ccdace7cff1bcf9e9d229c0e9b912fc77f0d1a7), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 48, ts: 32740850770715142763651899972626138, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:37:56.732810Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=1 for E3 1:0 (buffered=1, folded=0, remaining=17) +2026-03-30T15:37:56.732817Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: dispatching fold step 1/17 (seq=1) for E3 1:0 +2026-03-30T15:37:56.732954Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(FoldProofs { proof1: Proof { circuit: PkBfv, data: , public_signals: }, proof2: Proof { circuit: PkGeneration, data: , public_signals: }, target_evm: false }), correlation_id: 187, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb9b0b9c0cb74f6442e0464ab8b9a8a13b63ee5bb6cc1eaa74c8b9bd9146b2e1d), causation_id: EventId(0x860c249260d7ba10a065ab0fddb70f456b0dbceca5171aabfe0836d0ec72b8af), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 49, ts: 32740850770736670113985919019362010, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:38:03.134935Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 168, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2b30937b812cdb26c90762523a9f39b459ab4298c4e75b69b445709908c7c5aa), causation_id: EventId(0x9e21166e05d0d08796ceacb6f973336a63cdeef821a819fc4ce7bb11ad027df9), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 50, ts: 32740850888829921768775264613148378, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:03.139064Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (2/15) +2026-03-30T15:38:03.139256Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 15 }), ctx: EventContext { id: EventId(0xbd1ce1d0a20dfb5c9b868581996732d5527839aaca63d49713d142f132d95520), causation_id: EventId(0x2b30937b812cdb26c90762523a9f39b459ab4298c4e75b69b445709908c7c5aa), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 51, ts: 32740850888911235016652176316671706, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:03.140248Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=15 for E3 1:0 (buffered=1, folded=0, remaining=17) +2026-03-30T15:38:09.453617Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 167, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xe2b2f5b5f7c8478afbdc624489a45a8ed7967a70bbf2884bf6755b4a54fc0577), causation_id: EventId(0xac84be7e8b5a91d26f4f7dc19ec5951d53f5fb901cf1074379fb5b8c6287f6dc), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 52, ts: 32740851005388791698257523413067482, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:09.457582Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (3/15) +2026-03-30T15:38:09.457748Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 14 }), ctx: EventContext { id: EventId(0xe54464a38df5180f6f5f709fda2862b01bfd7446cb3828fb1dc0395ef812b5e0), causation_id: EventId(0xe2b2f5b5f7c8478afbdc624489a45a8ed7967a70bbf2884bf6755b4a54fc0577), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 53, ts: 32740851005467282594291157555193562, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:09.458779Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=14 for E3 1:0 (buffered=2, folded=0, remaining=17) +2026-03-30T15:38:15.903717Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 166, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x685252c5260a269ada3a24a81572a4c2b1bbb239d470bb4cab04a57ae173c5c3), causation_id: EventId(0x1156aba2485ace05d445dd5d0b60ca2e345b2fddb840cc53c91960ea58d3d2f2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 54, ts: 32740851124372264775300018258290394, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:15.907678Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (4/15) +2026-03-30T15:38:15.907837Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 13 }), ctx: EventContext { id: EventId(0xc921d6cd080fca8c0e6c21b1d45c20dca1a82aab58e43673604d16cc90b1cdc8), causation_id: EventId(0x685252c5260a269ada3a24a81572a4c2b1bbb239d470bb4cab04a57ae173c5c3), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 55, ts: 32740851124450497416916620466693850, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:15.908848Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=13 for E3 1:0 (buffered=3, folded=0, remaining=17) +2026-03-30T15:38:22.324819Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 165, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x3a7d422a0bb2cfcd7697473672582bad17b9198b1a1043f942eea01cdcd9f9a0), causation_id: EventId(0xb8041e2364ce58a4236d017cd8437985b937b26dcde329176bc092caa0216c04), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 56, ts: 32740851242820819167693083525752538, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:22.328866Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (5/15) +2026-03-30T15:38:22.329032Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 12 }), ctx: EventContext { id: EventId(0xe8007e08dc8de2e6c9aa8de477bc48ff3b4180fc466d872effd901646aa68385), causation_id: EventId(0x3a7d422a0bb2cfcd7697473672582bad17b9198b1a1043f942eea01cdcd9f9a0), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 57, ts: 32740851242900527548835582498285274, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:22.330048Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=12 for E3 1:0 (buffered=4, folded=0, remaining=17) +2026-03-30T15:38:28.624998Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 164, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1508e9a3f2d178bfd6c98b0b6a4dc4a60a0e67af3a9c5ce1be8e27e31bdcb900), causation_id: EventId(0x7fbce5e5ff2697b8a66f612cff40425e68e24cdf2adb260eb451c1c333dfe0a1), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 58, ts: 32740851359038627245996526425843418, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:28.628913Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (6/15) +2026-03-30T15:38:28.629069Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 11 }), ctx: EventContext { id: EventId(0x261f8035aacb293836e1afb1976964002b04531b6cfeb279dbdeaf0e0f07057b), causation_id: EventId(0x1508e9a3f2d178bfd6c98b0b6a4dc4a60a0e67af3a9c5ce1be8e27e31bdcb900), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 59, ts: 32740851359115863763433148318459610, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:28.630091Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=11 for E3 1:0 (buffered=5, folded=0, remaining=17) +2026-03-30T15:38:34.925484Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 163, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb9217f0922ef0d79dad7044c7cb6254f9002655a14412dc9d2cbde1213e65c3e), causation_id: EventId(0x1c449d35a4957f13ad26838a81db00abd744cf01a4025e0d921bdce132f00d2b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 60, ts: 32740851475262135368218745577383642, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:34.929390Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (7/15) +2026-03-30T15:38:34.929560Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 10 }), ctx: EventContext { id: EventId(0x260713c0f3cba2864d2665184379cdb413b7ac586c2c86a72d0a3b06c9fceed6), causation_id: EventId(0xb9217f0922ef0d79dad7044c7cb6254f9002655a14412dc9d2cbde1213e65c3e), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 61, ts: 32740851475339150524726482955380442, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:34.930556Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=10 for E3 1:0 (buffered=6, folded=0, remaining=17) +2026-03-30T15:38:41.484325Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 162, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb89b913c75c0ad7bab10722b577e08da3d70fc731c2425058531b229a4c14768), causation_id: EventId(0x3c32fb09e96e199a1360bd7325a496278b291507fb65efd39d0adefff1ea4101), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 62, ts: 32740851596250677292353100135507674, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:41.488517Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (8/15) +2026-03-30T15:38:41.488719Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 9 }), ctx: EventContext { id: EventId(0x4002ea579eea4f8519aa9c2b68aa5713718e9ed483dd45d2355aef659e915d4b), causation_id: EventId(0xb89b913c75c0ad7bab10722b577e08da3d70fc731c2425058531b229a4c14768), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 63, ts: 32740851596333798321149235375089370, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:41.489738Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=9 for E3 1:0 (buffered=7, folded=0, remaining=17) +2026-03-30T15:38:47.743883Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 161, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x9f272f112c55b4742124c64c75fe4ff085d9644fe62d358e6df4dc870a9f1f82), causation_id: EventId(0xc63b86a973bfffc976be92e2a37c6d6a10ab3a496c8829ba3ed818cae7b2907c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 64, ts: 32740851711719695135216524916401882, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:47.747808Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (9/15) +2026-03-30T15:38:47.747969Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 8 }), ctx: EventContext { id: EventId(0xeec182503c605c5ccbdf2ce5c415ee7b27a6fbf959c257df197c713f443bb88d), causation_id: EventId(0x9f272f112c55b4742124c64c75fe4ff085d9644fe62d358e6df4dc870a9f1f82), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 65, ts: 32740851711797226800558326161843930, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:47.748964Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=8 for E3 1:0 (buffered=8, folded=0, remaining=17) +2026-03-30T15:38:54.235260Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 160, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb2e289e03cdaa745eb60b9470e91a288bfaea77f347ad3e11ed9b4a7dcabb8c6), causation_id: EventId(0x95978d36f6fec018536fe4763bdc8906df400b013189def3aee0ff66147ef2e2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 66, ts: 32740851831463524556233253769684698, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:54.239944Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (10/15) +2026-03-30T15:38:54.240148Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 7 }), ctx: EventContext { id: EventId(0x46bc366a7a377bc43bf5190fe365036b8971004659f7b5d8ba4b7306bf08c6fd), causation_id: EventId(0xb2e289e03cdaa745eb60b9470e91a288bfaea77f347ad3e11ed9b4a7dcabb8c6), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 67, ts: 32740851831556145658227349428348634, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:38:54.241423Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=7 for E3 1:0 (buffered=9, folded=0, remaining=17) +2026-03-30T15:39:00.979270Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 159, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2877860730e5154fae06bcb7b72e1f273d2f7c72ca55d0752d0e58bbb9316c61), causation_id: EventId(0xb2e93cd915a447f517998da886addcc35326ca45758b66f5324383cc4b6fa833), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 68, ts: 32740851955869584074439334698395354, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:00.983274Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (11/15) +2026-03-30T15:39:00.983486Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 6 }), ctx: EventContext { id: EventId(0xae892857af03243be3bc85caf3df1c1cadc47f31d50c316b14e4907038f42ca4), causation_id: EventId(0x2877860730e5154fae06bcb7b72e1f273d2f7c72ca55d0752d0e58bbb9316c61), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 69, ts: 32740851955948868180468138351240922, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:00.985283Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=6 for E3 1:0 (buffered=10, folded=0, remaining=17) +2026-03-30T15:39:08.271921Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 158, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x9d030d1bd14841dbdb511db65542bcc963576647a228559ae4f5739c91695ca2), causation_id: EventId(0x23ef5e865b4b3d12d945a4ca1c3570f68d55c71da3fb2496237787b850756998), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 70, ts: 32740852090395158456601001452611290, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:08.276048Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (12/15) +2026-03-30T15:39:08.276231Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 5 }), ctx: EventContext { id: EventId(0x0026a10e6329eed2d5cfb462ac14262cca7636a3e01d2f6d06b872bae5f32c0b), causation_id: EventId(0x9d030d1bd14841dbdb511db65542bcc963576647a228559ae4f5739c91695ca2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 71, ts: 32740852090476471704477913156134618, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:08.277218Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=5 for E3 1:0 (buffered=11, folded=0, remaining=17) +2026-03-30T15:39:14.608889Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 157, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xd6c0a7324ad73462f4206229af978510fb1d7ae82cf698315378b4bec41e5b84), causation_id: EventId(0x0b8120805a792d6268a1e5b66cbb6c0b5ad48d11a08cd010a25b2645b782669f), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 72, ts: 32740852207291474675423629080241882, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:14.612828Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (13/15) +2026-03-30T15:39:14.613003Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 4 }), ctx: EventContext { id: EventId(0xfeb8f79a874306ecb6a945d681a26556006a392da9ce9c5ea8f7cc90da76db94), causation_id: EventId(0xd6c0a7324ad73462f4206229af978510fb1d7ae82cf698315378b4bec41e5b84), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 73, ts: 32740852207369449062623199354922714, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:14.613995Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=4 for E3 1:0 (buffered=12, folded=0, remaining=17) +2026-03-30T15:39:37.179400Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 156, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x38bdcb61583dbed7b72de6594011fefee097aaee1969b332866452716b09f17f), causation_id: EventId(0x2c83dd037ed43d186e517164a2b6ee9e1764fae613e5e16c79bc06c936df3f30), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 74, ts: 32740852623645335104563550269712090, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:37.181461Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 1:0 (14/15) +2026-03-30T15:39:37.181606Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 3 }), ctx: EventContext { id: EventId(0x23a68da99da91dea2b51cbb33c934d0bab27bbc016f1d95b1ad8aa27c7c29404), causation_id: EventId(0x38bdcb61583dbed7b72de6594011fefee097aaee1969b332866452716b09f17f), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 75, ts: 32740852623687153873378649823225562, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:37.182636Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=3 for E3 1:0 (buffered=13, folded=0, remaining=17) +2026-03-30T15:39:58.397883Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 155, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xcf690c5b03ea7ce4859779a719cd86091ac068e256a4da5ce0fbacea7c57c029), causation_id: EventId(0x8ea55dbb2013e92143a805b4a2da031ede27e828392396e933ed07531535b51a), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 76, ts: 32740853015057186850944123333224154, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.399897Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 1:0 (15/15) +2026-03-30T15:39:58.399949Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 1:0 +2026-03-30T15:39:58.476410Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 1:0 party 1 (signer: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) +2026-03-30T15:39:58.477856Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 1:0 to 3 parties +2026-03-30T15:39:58.479741Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 2 }), ctx: EventContext { id: EventId(0x18626c348d8a155180e0ad4fc072e34f2a07185e0130533b70def7728467f3d8), causation_id: EventId(0xcf690c5b03ea7ce4859779a719cd86091ac068e256a4da5ce0fbacea7c57c029), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 77, ts: 32740853015098230856508127085569754, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.480726Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xca503d46e540628729f9502949cd2848b859d23a8c8b9186dfb8bf7c399264d1), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 78, ts: 32740853016510163094653929875810010, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.481798Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xf9596876804572951c4ccc48a7544d75e8f72f67220f1cd974a2fd7f0a0fbb40), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 79, ts: 32740853016511159218833910191597274, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.482865Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9ba6c2b8ea425dfd1aeb99aa92d57e54a3a5a3a196e35ca2f5898ab6103fef4a), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 80, ts: 32740853016511878641852784864110298, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.483922Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x8377b06efbb38a09df304365af398a2ded3e7e528de9b11c57083a75f07b5afe), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 81, ts: 32740853016512764085568322922587866, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.487001Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9a41253172a02205ab98b8de08ab71095e600b375ee86ccd4e3702da408f58e0), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 82, ts: 32740853016514700993696062425507546, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.490186Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x93775cb2f23fe473c2bbc652d53321c39974fb164082f636a7c3530ed520679a), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 83, ts: 32740853016516637901823801928427226, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.493182Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x60bb1fbb478f993b695609488987006295b3352aca87e06e71a9c29b404218cc), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 84, ts: 32740853016518574809951541431346906, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.496246Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9b85f7a226b439b92d727ff0e5aade7c8ee0ffd8996b2abc751adddfd9cff288), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 85, ts: 32740853016520659292031870610679514, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.499229Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xaa389a978822a3ed4f32ebb85db73d07ab27b9512e8be26e96ff450d86c9a3c8), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 86, ts: 32740853016522577753415536404047578, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.502210Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe825f3613b6118817ebf7d08c376c0106af30e3b8146224a1f72751946696f80), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 87, ts: 32740853016524514661543275906967258, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.505246Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x65a5beb8e1ed866e50c24ba47099e765c304e33f568cc93f70a5e2b26dfab059), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 88, ts: 32740853016526451569671015409886938, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.508233Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x7f1af7e54bbc152626aa3e759d6cdac51787dcbc56b6ec1365235046fb1edffa), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 89, ts: 32740853016528388477798754912806618, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.511197Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb308ab87e1898e16acd36b7cbff21709788c49d15684f72702dc5bd3f498ef27), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 90, ts: 32740853016530306939182420706174682, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.514429Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x451ff98c3f224329c2e51b38f56b39419c98d86537842618c32b4dbdbd1ec329), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 91, ts: 32740853016532243847310160209094362, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.517562Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x071e7525408f927e37e897daae09fee76bbfbdbc830018fb86f75e55885805dd), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 92, ts: 32740853016534180755437899712014042, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.520656Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xb774cb22b32b2a7294627ac1836d8151fb35b46ff7aed4092c5de71f3bd0020d), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 93, ts: 32740853016536560385423408244172506, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.535172Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xdeb112d5d774fb8ad04838e0d590eb5d5e61b2aa05475ce3a5619e545281fd51), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 94, ts: 32740853016546890562104685593077466, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.549309Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x9586d56a53377015dcd5b5b6dfa155aedca2292f69ab6d442358684e1ae25584), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 95, ts: 32740853016556722676695972784088794, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.564140Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=2 for E3 1:0 (buffered=14, folded=0, remaining=17) +2026-03-30T15:39:58.564174Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 0 (E3 1:0) +2026-03-30T15:39:58.571468Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +2026-03-30T15:39:58.572141Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 1 (E3 1:0) +2026-03-30T15:39:58.579587Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +2026-03-30T15:39:58.580165Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 2 (E3 1:0) +2026-03-30T15:39:58.587472Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +2026-03-30T15:39:58.588170Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 1 E3 1:0 +2026-03-30T15:39:58.588896Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 1 E3 1:0 +2026-03-30T15:39:58.590119Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 1 E3 1:0 +2026-03-30T15:39:58.591698Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.594567Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.598873Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.604591Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.611475Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.619850Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.629432Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.640347Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.652606Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.666263Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.681160Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.697300Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 +2026-03-30T15:39:58.714800Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 1), forwarding to collector! +2026-03-30T15:39:58.714815Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes +2026-03-30T15:39:58.714821Z  INFO e3_keyshare::threshold_keyshare: got collector address! +2026-03-30T15:39:58.714941Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +2026-03-30T15:39:58.714945Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 +2026-03-30T15:39:58.714952Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 +2026-03-30T15:39:58.714963Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares +2026-03-30T15:39:58.714987Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 46.791µs +2026-03-30T15:39:58.715130Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected +2026-03-30T15:39:58.715159Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 1:0 (2 parties, 0 pre-dishonest) +2026-03-30T15:39:58.716248Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-29T15:39:58.571456Z }, value: }), ctx: EventContext { id: EventId(0xbbb3e3bab5bb43c44936d87e38d444c0248a2067bf27da76cae37980e95b65bc), causation_id: EventId(0xb774cb22b32b2a7294627ac1836d8151fb35b46ff7aed4092c5de71f3bd0020d), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 96, ts: 32740853018263415438395580499601114, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:39:58.732344Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-29T15:39:58.579582Z }, value: }), ctx: EventContext { id: EventId(0xbc95b5acf3d62f66cdf6ad1ac6734e6f6e5e8059a13c616e66d4a5b15eb87726), causation_id: EventId(0xdeb112d5d774fb8ad04838e0d590eb5d5e61b2aa05475ce3a5619e545281fd51), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 97, ts: 32740853018412926299112996415448794, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:39:58.747907Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-29T15:39:58.587463Z }, value: }), ctx: EventContext { id: EventId(0x4bcac51f31a2d6b9ed764b89c30b1a98d11cdfcb6e6e2b112b983c8cf89b3b51), causation_id: EventId(0x9586d56a53377015dcd5b5b6dfa155aedca2292f69ab6d442358684e1ae25584), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 98, ts: 32740853018558508003342712196802266, aggregate_id: AggregateId(0), block: None, source: Local } } +2026-03-30T15:39:58.855710Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0xae281f982a78ed568f0471fa4b7accda8a187121961af6a2a9394e799b9a9d75), causation_id: EventId(0xdeb112d5d774fb8ad04838e0d590eb5d5e61b2aa05475ce3a5619e545281fd51), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 99, ts: 32740853020913751393185800328029914, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:58.882886Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 1 }, ShareProofs +2026-03-30T15:39:59.012843Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 191, party_proofs: [PartyProofData { party_id: 0, address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proofs: [(C2aSkShareComputation, , [67, 99, 135, 108, 152, 106, 111, 186, 171, 144, 153, 185, 42, 13, 152, 81, 169, 235, 131, 205, 13, 99, 140, 37, 115, 46, 209, 2, 249, 172, 94, 62]), (C2bESmShareComputation, , [13, 201, 211, 78, 218, 185, 19, 153, 41, 27, 143, 234, 214, 20, 137, 159, 92, 34, 77, 183, 139, 87, 198, 124, 227, 171, 94, 63, 76, 253, 215, 123]), (C3aSkShareEncryption, , [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27]), (C3aSkShareEncryption, , [126, 170, 137, 223, 35, 121, 2, 153, 103, 0, 85, 165, 249, 6, 86, 50, 114, 218, 5, 177, 18, 178, 77, 7, 108, 28, 119, 52, 128, 38, 158, 84]), (C3bESmShareEncryption, , [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141]), (C3bESmShareEncryption, , [157, 66, 125, 181, 204, 61, 150, 86, 14, 47, 246, 219, 18, 117, 164, 173, 139, 191, 241, 152, 168, 93, 197, 247, 54, 124, 184, 230, 248, 91, 11, 103])] }, PartyProofData { party_id: 2, address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proofs: [(C2aSkShareComputation, , [208, 209, 174, 196, 71, 64, 133, 124, 120, 139, 127, 94, 182, 94, 164, 208, 243, 114, 27, 230, 234, 64, 13, 201, 135, 171, 249, 119, 48, 122, 121, 193]), (C2bESmShareComputation, , [127, 201, 59, 26, 217, 17, 72, 20, 6, 224, 21, 77, 137, 93, 41, 63, 239, 218, 183, 162, 150, 25, 158, 140, 4, 207, 245, 173, 89, 186, 172, 199]), (C3aSkShareEncryption, , [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17]), (C3aSkShareEncryption, , [185, 24, 101, 98, 23, 69, 91, 251, 105, 51, 48, 124, 239, 199, 186, 187, 187, 16, 133, 115, 111, 129, 128, 117, 252, 142, 226, 207, 139, 188, 208, 207]), (C3bESmShareEncryption, , [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142]), (C3bESmShareEncryption, , [206, 141, 11, 163, 235, 146, 88, 139, 224, 124, 188, 238, 21, 185, 128, 39, 83, 224, 230, 114, 83, 160, 244, 183, 246, 146, 140, 115, 14, 212, 2, 219])] }] }), ctx: EventContext { id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), causation_id: EventId(0xae281f982a78ed568f0471fa4b7accda8a187121961af6a2a9394e799b9a9d75), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 100, ts: 32740853026388449886357615894832858, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.028824Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.028833Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.028837Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.028841Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.028846Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.028850Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.028854Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.028857Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.028861Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.028864Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.028867Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.028870Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.028872Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.028875Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.028878Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.028880Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.028884Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) +2026-03-30T15:39:59.028966Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) +2026-03-30T15:39:59.029056Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) +2026-03-30T15:39:59.029104Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) +2026-03-30T15:39:59.029136Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.029140Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.029143Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.029153Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.029156Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.029159Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.029162Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.029165Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.029168Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.029171Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.029173Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.029176Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.029179Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.029182Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:39:59.029184Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.029187Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:39:59.029190Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) +2026-03-30T15:39:59.029214Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) +2026-03-30T15:39:59.029240Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) +2026-03-30T15:39:59.029270Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) +2026-03-30T15:39:59.029442Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27] }), ctx: EventContext { id: EventId(0x7a114791592c3de42c98a67ad052da45f3af54f0a16f2aca2eabf16860218a1b), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 101, ts: 32740853026702155216075120529614554, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.029519Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, data_hash: [126, 170, 137, 223, 35, 121, 2, 153, 103, 0, 85, 165, 249, 6, 86, 50, 114, 218, 5, 177, 18, 178, 77, 7, 108, 28, 119, 52, 128, 38, 158, 84] }), ctx: EventContext { id: EventId(0x49f62d6bd0217a89f99bc1eee52792c24ae9fd7c8ac6cf958fd5381db4ea65c1), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 102, ts: 32740853026703907656762122937018074, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.029570Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17] }), ctx: EventContext { id: EventId(0x9155b683f19a407586432868865bd376d9cf0d92012360e476cd617e3883b64d), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 103, ts: 32740853026704811547221734705047258, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.029622Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, data_hash: [185, 24, 101, 98, 23, 69, 91, 251, 105, 51, 48, 124, 239, 199, 186, 187, 187, 16, 133, 115, 111, 129, 128, 117, 252, 142, 226, 207, 139, 188, 208, 207] }), ctx: EventContext { id: EventId(0xa15084792fbd4e9a6e49d88265f9bb991f281a0711ddfffa9017e7c78428c35a), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 104, ts: 32740853026705272715823577443837658, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.029679Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142] }), ctx: EventContext { id: EventId(0x812d25003fe56b70535f4d6047302be82ec79126f46e1e9bdf5ffa2cd257cb20), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 105, ts: 32740853026706840689069842755725018, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.029729Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, data_hash: [206, 141, 11, 163, 235, 146, 88, 139, 224, 124, 188, 238, 21, 185, 128, 39, 83, 224, 230, 114, 83, 160, 244, 183, 246, 146, 140, 115, 14, 212, 2, 219] }), ctx: EventContext { id: EventId(0x58f7c2adc7178c12bee2a56183446fe39f72983884d3803dc3e4777309b6f17f), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 106, ts: 32740853026707301857671685494515418, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.029786Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141] }), ctx: EventContext { id: EventId(0x8b768f040eb7e4c84a413faf6cfd13210a88048f84a3f5a6f3f01f5d486dfc64), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 107, ts: 32740853026707855259993896781063898, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.029840Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, data_hash: [157, 66, 125, 181, 204, 61, 150, 86, 14, 47, 246, 219, 18, 117, 164, 173, 139, 191, 241, 152, 168, 93, 197, 247, 54, 124, 184, 230, 248, 91, 11, 103] }), ctx: EventContext { id: EventId(0xd8fd7d9030c5bfe7d5c55efee9dc6f8059ecee13a36f514b0186d50057c1fd1d), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 108, ts: 32740853026708334875339813229405914, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.029897Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 191, inconsistent_parties: {0, 2} }), ctx: EventContext { id: EventId(0x5c41e76d2cbe52c06d8ce380dfe32fb777dc6a9f194257b980eb0f63a0d266c9), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 109, ts: 32740853026708574683012771453576922, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.029960Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 191, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x7b97203cb7b5c1b45aad740405d9af94c39d0408a40fcc616efe64163e454be4), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 110, ts: 32740853026708906724406098225506010, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.030843Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3aSkShareEncryption failure +2026-03-30T15:39:59.031528Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB sent bad C3aSkShareEncryption proof — AccusedFaulted +2026-03-30T15:39:59.031555Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:39:59.031591Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:39:59.032243Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3aSkShareEncryption failure +2026-03-30T15:39:59.032912Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 sent bad C3aSkShareEncryption proof — AccusedFaulted +2026-03-30T15:39:59.032932Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:39:59.032962Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:39:59.033610Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3bESmShareEncryption failure +2026-03-30T15:39:59.034274Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 sent bad C3bESmShareEncryption proof — AccusedFaulted +2026-03-30T15:39:59.034299Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:39:59.034331Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:39:59.034983Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3bESmShareEncryption failure +2026-03-30T15:39:59.035646Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB sent bad C3bESmShareEncryption proof — AccusedFaulted +2026-03-30T15:39:59.035666Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:39:59.035696Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:39:59.035700Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:39:59.035704Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:39:59.035708Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:39:59.035712Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:39:59.035716Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:39:59.035720Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:39:59.035724Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:39:59.035727Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:39:59.035762Z  WARN e3_zk_prover::actors::share_verification: C2/C3 consistency check found 2 inconsistent parties for E3 1:0: {0, 2} +2026-03-30T15:39:59.036226Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x7a114791592c3de42c98a67ad052da45f3af54f0a16f2aca2eabf16860218a1b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 111, ts: 32740853026737370050511832063649498, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036291Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0x7a114791592c3de42c98a67ad052da45f3af54f0a16f2aca2eabf16860218a1b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 112, ts: 32740853026749120626486785048028890, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036349Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0x26f0d38ee8a62e9a45c2482c5af188c9759010bfd2cf7e47b31db6191eb560f4), causation_id: EventId(0x7a114791592c3de42c98a67ad052da45f3af54f0a16f2aca2eabf16860218a1b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 113, ts: 32740853026750541025780460683503322, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036414Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x9155b683f19a407586432868865bd376d9cf0d92012360e476cd617e3883b64d), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 114, ts: 32740853026763232385703172855015130, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036477Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x9155b683f19a407586432868865bd376d9cf0d92012360e476cd617e3883b64d), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 115, ts: 32740853026775001408422199548946138, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036535Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0xf20dd42494014953a765e5035784e5294eb6f90490001f0c8b75f3e0b738692e), causation_id: EventId(0x9155b683f19a407586432868865bd376d9cf0d92012360e476cd617e3883b64d), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 116, ts: 32740853026775923745625885026526938, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036593Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0x812d25003fe56b70535f4d6047302be82ec79126f46e1e9bdf5ffa2cd257cb20), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 117, ts: 32740853026788375297875638973867738, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036655Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0x812d25003fe56b70535f4d6047302be82ec79126f46e1e9bdf5ffa2cd257cb20), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 118, ts: 32740853026800125873850591958247130, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036716Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0xe3dd8595f845ba75e6cb6568a21a42564c76a355db7e84ed133f7ce6b49fe56c), causation_id: EventId(0x812d25003fe56b70535f4d6047302be82ec79126f46e1e9bdf5ffa2cd257cb20), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 119, ts: 32740853026801121998030572274034394, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036776Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x8b768f040eb7e4c84a413faf6cfd13210a88048f84a3f5a6f3f01f5d486dfc64), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 120, ts: 32740853026813702677488842188236506, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036833Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x8b768f040eb7e4c84a413faf6cfd13210a88048f84a3f5a6f3f01f5d486dfc64), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 121, ts: 32740853026825434806719721463064282, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036891Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0x68f31ec4ce73be606711ebbdedea6bc524a40073ff75b8e7d6f4589425b1a880), causation_id: EventId(0x8b768f040eb7e4c84a413faf6cfd13210a88048f84a3f5a6f3f01f5d486dfc64), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 122, ts: 32740853026826357143923406940645082, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.036951Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, dishonest_parties: {0, 2} }), ctx: EventContext { id: EventId(0xa3570a61f2bb500f25779173c08358dc0510cd71e74001d81f8471cd2455e2b3), causation_id: EventId(0xae281f982a78ed568f0471fa4b7accda8a187121961af6a2a9394e799b9a9d75), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 123, ts: 32740853026828478519491883539080922, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.037157Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:39:59.037190Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:39:59.037215Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:39:59.037237Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:39:59.037258Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:39:59.037279Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:39:59.037299Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:39:59.037320Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:39:59.037653Z  WARN e3_keyshare::threshold_keyshare: Too few honest parties for E3 1:0 (1 honest, need at least 2) — cannot proceed +2026-03-30T15:39:59.040511Z  INFO e3_events::eventbus: >>> E3Failed EnclaveEvent { payload: E3Failed(E3Failed { e3_id: E3id { id: "0", chain_id: 1 }, failed_at_stage: CommitteeFinalized, reason: InsufficientCommitteeMembers }), ctx: EventContext { id: EventId(0x153e51859e119b10813910d424f30e2d2e75dcd9ee53d331fa76c9110abaaeb8), causation_id: EventId(0xa3570a61f2bb500f25779173c08358dc0510cd71e74001d81f8471cd2455e2b3), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 124, ts: 32740853026862752569980835885983450, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.040686Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 1 } reason="E3Failed: InsufficientCommitteeMembers" +2026-03-30T15:39:59.040858Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 97, ts: 32740853026876956562917593466901866, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.040923Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 98, ts: 32740853026877325497799067657934186, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.040995Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 99, ts: 32740853026877657539192394429863274, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041062Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 100, ts: 32740853026878026474073868620895594, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041127Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 101, ts: 32740853026878340068723121683273066, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041187Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 102, ts: 32740853026878690556860522164753770, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041248Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 103, ts: 32740853026879022598253848936682858, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041311Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 104, ts: 32740853026879428426623470546818410, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041392Z  WARN e3_keyshare::threshold_keyshare: E3 failed: InsufficientCommitteeMembers. Shutting down ThresholdKeyshare for e3_id=1:0 +2026-03-30T15:39:59.041401Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down +2026-03-30T15:39:59.041436Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026874060424098019349854489, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041503Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026874484699211714669541657, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041562Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026874835187349115151022361, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041622Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026875204122230589342054681, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041684Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026875536163623916113983769, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041750Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026875886651761316595464473, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041810Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026876218693154643367393561, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041867Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026876569181292043848874265, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041934Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026879871148481237263497408, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.041991Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026880313870339006292736192, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.042045Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026880719698708627902871744, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.042107Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026882066311026008700139712, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.042168Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026882545926371925148481728, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.042225Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026882951754741546758617280, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.042283Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026883320689623020949649600, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.042340Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026883689624504495140681920, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044358Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026884169239850414181512626, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044421Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026884556621475962082096562, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044490Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026884888662869288854025650, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044551Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026885257597750763045057970, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044610Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026885571192400016107435442, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044670Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026885921680537416588916146, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044728Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026886253721930743360845234, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044794Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026886585763324070132774322, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044863Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026886973144949616029950456, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044921Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026887360526575163930534392, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.044986Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026887692567968490702463480, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045044Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026888043056105891183944184, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045104Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026888356650755144246321656, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045163Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026888707138892544727802360, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045221Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026889039180285871499731448, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045286Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026889371221679198271660536, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045349Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026889777050048821054855780, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045409Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026890145984930295245888100, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045476Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026890478026323622017817188, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045548Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026890920748181391047055972, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045609Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026891252789574717818985060, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045672Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026891603277712118300465764, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045738Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026891935319105445072394852, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.045797Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026892378040963214101633636, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.048288Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.052531Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.056775Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.060935Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.065335Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.069541Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.073739Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.077903Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.082537Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.086757Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.090984Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.095176Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.099516Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.103720Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.107917Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.112104Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.116854Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.121060Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.125292Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.129494Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.133819Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.138041Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.142323Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.146586Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.151307Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.155541Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.159746Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.164054Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.168330Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.172583Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.176753Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.181056Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.185502Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.189747Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.193964Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.198331Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.202550Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.206850Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.211020Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.215355Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.219749Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.224006Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.228159Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.232477Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.236670Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.240959Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.245158Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.249589Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.252011Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-29T15:39:58.587463Z }, value: }), ctx: EventContext { id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), causation_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 97, ts: 32740853026905216974838514511330028, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:39:59.268131Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-29T15:39:58.571456Z }, value: }), ctx: EventContext { id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), causation_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 105, ts: 32740853026894480969787617540937066, aggregate_id: AggregateId(0), block: None, source: Net } } +2026-03-30T15:39:59.308943Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 8, ts: 32740853026950448391307252550973670, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309046Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 9, ts: 32740853026950872666420947870660838, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309114Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 10, ts: 32740853026951241601302422061693158, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309180Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 11, ts: 32740853026951592089439822543173862, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309245Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 12, ts: 32740853026951924130833149315102950, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309317Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 13, ts: 32740853026952256172226476087032038, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309388Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 14, ts: 32740853026952588213619802858961126, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309457Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 15, ts: 32740853026952938701757203340441830, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309520Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026953326083382749877043616, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309592Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026953695018264224068075936, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309660Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026954008612913477130453408, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309727Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026954377547794951321485728, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309795Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026954691142444204383863200, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309856Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026955023183837531155792288, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309923Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026955355225230857927721376, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.309990Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026955687266624184699650464, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310062Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 98, ts: 32740853026956074648249731745135340, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310125Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 99, ts: 32740853026956443583131205936167660, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310185Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 100, ts: 32740853026956775624524532708096748, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310242Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 101, ts: 32740853026957107665917859480025836, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310303Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 102, ts: 32740853026957421260567112542403308, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310359Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 103, ts: 32740853026957771748704513023884012, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310418Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 104, ts: 32740853026958103790097839795813100, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310479Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 105, ts: 32740853026958454278235240277293804, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310559Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026958841659860787283805779, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310627Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026959210594742261474838099, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310693Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026959524189391514537215571, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310758Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026959874677528915018696275, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310827Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026960188272178168081073747, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310883Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026960538760315568562554451, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.310944Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026960852354964821624931923, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311006Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026961202843102222106412627, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311076Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 8, ts: 32740853026961571777983695717191238, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311143Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 9, ts: 32740853026961959159609243617775174, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311208Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 10, ts: 32740853026962272754258496680152646, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311276Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 11, ts: 32740853026962623242395897161633350, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311345Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 12, ts: 32740853026962955283789223933562438, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311435Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 13, ts: 32740853026963305771926624415043142, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311493Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 14, ts: 32740853026963656260064024896523846, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311561Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 15, ts: 32740853026963988301457351668452934, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311630Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026964338789594752750794984, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311696Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026964707724476226941827304, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311767Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026965039765869553713756392, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311851Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026965371807262880485685480, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311921Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026965722295400280967166184, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.311994Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026966072783537681448646888, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312056Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026966404824931008220575976, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312121Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026966755313068408702056680, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312209Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026967124247949884001919628, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312274Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026967493182831358192951948, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312333Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026967825224224684964881036, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312399Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026968175712362085446361740, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312502Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026968489307011338508739212, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312564Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026968839795148738990219916, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312620Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026969153389797992052597388, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312683Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026969503877935392534078092, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312751Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026969872812816868075939494, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312812Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026970241747698342266971814, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312875Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026970573789091669038900902, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312937Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026970924277229069520381606, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.312993Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026971256318622396292310694, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313048Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026971588360015723064239782, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313107Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026971901954664976126617254, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313168Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026972252442802376608097958, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313231Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026972639824427921404028948, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313299Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026973008759309395595061268, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313362Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026973340800702722366990356, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313418Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026973691288840122848471060, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313475Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026974023330233449620400148, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313533Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026974355371626776392329236, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313591Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026974687413020103164258324, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313649Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026975019454413429936187412, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313778Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 8, ts: 32740853026975388389294907152213356, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313849Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 9, ts: 32740853026975757324176381343245676, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313912Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 10, ts: 32740853026976107812313781824726380, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.313995Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 11, ts: 32740853026976458300451182306207084, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314064Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 12, ts: 32740853026976771895100435368584556, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314122Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 13, ts: 32740853026977122383237835850065260, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314191Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 14, ts: 32740853026977435977887088912442732, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314307Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 15, ts: 32740853026977786466024489393923436, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314379Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026978155400905960331082695, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314449Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026978524335787434522115015, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314515Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026978856377180761294044103, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314580Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026979188418574088065973191, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314647Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026979520459967414837902279, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314712Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026979870948104815319382983, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314778Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026980184542754068381760455, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314843Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026980535030891468863241159, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314909Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026980903965772943098104448, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.314968Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026981254453910343579585152, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315033Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026981586495303670351514240, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315096Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026981936983441070832994944, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315153Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026982269024834397604924032, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315214Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026982619512971798086404736, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315269Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026982951554365124858333824, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315326Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026983283595758451630262912, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315390Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026983652530639927273635971, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315452Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026984039912265475174219907, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315518Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026984353506914728236597379, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315581Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026984703995052128718078083, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315643Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026985054483189529199558787, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315700Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026985404971326929681039491, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315766Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026985718565976182743416963, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.315832Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026986050607369509515346051, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:39:59.318215Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.322414Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.326678Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.331055Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.335312Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.339537Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.343731Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.348059Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.352509Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.356743Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.360931Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.365271Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.369517Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.373889Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.378079Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.382405Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.386871Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.391123Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.395342Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.399677Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.403910Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.408119Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.412413Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.416698Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.421227Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.425451Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.429732Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.434119Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.438421Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.442641Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.447021Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.451326Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.455830Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.460060Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.464490Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.468720Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.472986Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.477203Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.481425Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.485630Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.490170Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.494391Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.498627Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.502805Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.507171Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.511478Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.515753Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.520030Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.524971Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.529237Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.533481Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.537792Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.542206Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.546498Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.550782Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.555202Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.559771Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.564066Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.568297Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.572735Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.577053Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.581404Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.585664Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.589893Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.594424Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.598939Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.603361Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.607704Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.611967Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.616221Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.620533Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.624870Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.629365Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.633594Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.637814Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.642237Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.646460Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.650709Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.655002Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.659309Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.663769Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.668050Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.672369Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.676567Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.680892Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.685249Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.689489Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.693688Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.698291Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.702598Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.706882Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.711057Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.715457Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.719754Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.723948Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.728192Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.732789Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.737024Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.741310Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.745750Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.750084Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.754366Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:39:59.758550Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.762848Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:39:59.765882Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x4783ca69405a90512ac275f5c5974c4f58dc335bf6b5718934ce8f6a9f8a2bb3), causation_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 106, ts: 32740853031621883413789383473576684, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.782860Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xf8e4c66b64fa1f98a37435eb36a7bbad5de307b950cff926d29fea25797b81c6), causation_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 106, ts: 32740853031853592966099251140072810, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.798694Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 2), forwarding to collector! +2026-03-30T15:39:59.798708Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes +2026-03-30T15:39:59.798714Z  INFO e3_keyshare::threshold_keyshare: got collector address! +2026-03-30T15:39:59.798876Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 0), forwarding to collector! +2026-03-30T15:39:59.798881Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes +2026-03-30T15:39:59.798886Z  INFO e3_keyshare::threshold_keyshare: got collector address! +2026-03-30T15:39:59.798903Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +2026-03-30T15:39:59.798906Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 +2026-03-30T15:39:59.798910Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 +2026-03-30T15:39:59.798915Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares +2026-03-30T15:39:59.798936Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 33.958µs +2026-03-30T15:39:59.799197Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +2026-03-30T15:39:59.799201Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 +2026-03-30T15:39:59.799204Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 +2026-03-30T15:39:59.799212Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares +2026-03-30T15:39:59.799222Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 25.708µs +2026-03-30T15:39:59.799235Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected +2026-03-30T15:39:59.799250Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 1:0 (2 parties, 0 pre-dishonest) +2026-03-30T15:39:59.800778Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected +2026-03-30T15:39:59.800791Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 1:0 (2 parties, 0 pre-dishonest) +2026-03-30T15:39:59.801853Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x02d5f128ddbfed5763479738996fdfcc5ebaffffaddbdcc812dda2ec09637474), causation_id: EventId(0x4783ca69405a90512ac275f5c5974c4f58dc335bf6b5718934ce8f6a9f8a2bb3), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 107, ts: 32740853040911700622797661086497516, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.829294Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0xb527e4843197bfc8e6bbc5b9870d244c12a1db2fa7bb34e5de0153813e2cf8af), causation_id: EventId(0xf8e4c66b64fa1f98a37435eb36a7bbad5de307b950cff926d29fea25797b81c6), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 107, ts: 32740853040940090161927102075082090, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:39:59.857092Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 1 }, ShareProofs +2026-03-30T15:39:59.985799Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 1 }, ShareProofs +2026-03-30T15:40:00.181725Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 206, party_proofs: [PartyProofData { party_id: 0, address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proofs: [(C2aSkShareComputation, , [67, 99, 135, 108, 152, 106, 111, 186, 171, 144, 153, 185, 42, 13, 152, 81, 169, 235, 131, 205, 13, 99, 140, 37, 115, 46, 209, 2, 249, 172, 94, 62]), (C2bESmShareComputation, , [13, 201, 211, 78, 218, 185, 19, 153, 41, 27, 143, 234, 214, 20, 137, 159, 92, 34, 77, 183, 139, 87, 198, 124, 227, 171, 94, 63, 76, 253, 215, 123]), (C3aSkShareEncryption, , [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21]), (C3aSkShareEncryption, , [77, 150, 30, 222, 59, 221, 7, 56, 7, 21, 128, 158, 147, 52, 192, 183, 50, 208, 127, 99, 109, 82, 82, 23, 53, 80, 190, 184, 199, 218, 102, 46]), (C3bESmShareEncryption, , [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54]), (C3bESmShareEncryption, , [94, 209, 80, 75, 13, 194, 83, 54, 125, 174, 192, 162, 77, 224, 31, 181, 86, 168, 26, 194, 111, 13, 232, 71, 124, 49, 238, 93, 253, 221, 205, 227])] }, PartyProofData { party_id: 1, address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proofs: [(C2aSkShareComputation, , [250, 81, 95, 139, 26, 38, 201, 220, 224, 62, 93, 237, 222, 182, 46, 218, 191, 54, 14, 72, 202, 86, 149, 242, 212, 24, 90, 60, 145, 233, 19, 127]), (C2bESmShareComputation, , [90, 73, 22, 204, 124, 151, 134, 184, 112, 122, 254, 184, 92, 64, 249, 175, 96, 78, 253, 49, 139, 67, 118, 166, 140, 179, 90, 55, 205, 230, 194, 253]), (C3aSkShareEncryption, , [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205]), (C3aSkShareEncryption, , [152, 134, 176, 19, 232, 147, 192, 18, 196, 78, 38, 68, 32, 53, 245, 203, 234, 44, 17, 202, 233, 14, 167, 101, 154, 153, 231, 195, 158, 235, 241, 198]), (C3bESmShareEncryption, , [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93]), (C3bESmShareEncryption, , [157, 40, 201, 224, 173, 125, 181, 38, 196, 67, 104, 88, 89, 189, 255, 35, 57, 9, 117, 91, 14, 10, 163, 87, 37, 27, 189, 1, 7, 183, 174, 193])] }] }), ctx: EventContext { id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), causation_id: EventId(0x02d5f128ddbfed5763479738996fdfcc5ebaffffaddbdcc812dda2ec09637474), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 108, ts: 32740853044338902757508084971682540, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.211427Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 207, party_proofs: [PartyProofData { party_id: 1, address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proofs: [(C2aSkShareComputation, , [250, 81, 95, 139, 26, 38, 201, 220, 224, 62, 93, 237, 222, 182, 46, 218, 191, 54, 14, 72, 202, 86, 149, 242, 212, 24, 90, 60, 145, 233, 19, 127]), (C2bESmShareComputation, , [90, 73, 22, 204, 124, 151, 134, 184, 112, 122, 254, 184, 92, 64, 249, 175, 96, 78, 253, 49, 139, 67, 118, 166, 140, 179, 90, 55, 205, 230, 194, 253]), (C3aSkShareEncryption, , [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102]), (C3aSkShareEncryption, , [145, 108, 239, 111, 190, 237, 153, 163, 242, 122, 61, 148, 3, 250, 148, 152, 110, 198, 202, 2, 231, 127, 162, 137, 14, 251, 238, 193, 32, 107, 10, 5]), (C3bESmShareEncryption, , [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221]), (C3bESmShareEncryption, , [184, 85, 36, 87, 33, 133, 224, 184, 84, 253, 161, 29, 114, 83, 250, 88, 42, 150, 135, 37, 145, 255, 124, 139, 94, 192, 91, 248, 243, 212, 242, 130])] }, PartyProofData { party_id: 2, address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proofs: [(C2aSkShareComputation, , [208, 209, 174, 196, 71, 64, 133, 124, 120, 139, 127, 94, 182, 94, 164, 208, 243, 114, 27, 230, 234, 64, 13, 201, 135, 171, 249, 119, 48, 122, 121, 193]), (C2bESmShareComputation, , [127, 201, 59, 26, 217, 17, 72, 20, 6, 224, 21, 77, 137, 93, 41, 63, 239, 218, 183, 162, 150, 25, 158, 140, 4, 207, 245, 173, 89, 186, 172, 199]), (C3aSkShareEncryption, , [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48]), (C3aSkShareEncryption, , [127, 210, 33, 192, 98, 237, 64, 230, 142, 195, 218, 91, 221, 26, 171, 142, 74, 46, 75, 241, 90, 66, 248, 226, 67, 107, 226, 146, 184, 63, 223, 34]), (C3bESmShareEncryption, , [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185]), (C3bESmShareEncryption, , [92, 49, 142, 237, 85, 118, 4, 158, 82, 160, 37, 213, 93, 148, 127, 224, 188, 10, 173, 66, 216, 209, 184, 177, 191, 74, 172, 77, 113, 127, 240, 39])] }] }), ctx: EventContext { id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), causation_id: EventId(0xb527e4843197bfc8e6bbc5b9870d244c12a1db2fa7bb34e5de0153813e2cf8af), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 108, ts: 32740853047922754642892452357838186, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.246779Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246792Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246796Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246799Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246803Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246806Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246809Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246812Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246815Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246818Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246821Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246823Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246826Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246829Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246832Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246834Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246838Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) +2026-03-30T15:40:00.246890Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) +2026-03-30T15:40:00.246918Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) +2026-03-30T15:40:00.246944Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) +2026-03-30T15:40:00.246974Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246977Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246980Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246982Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246986Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246988Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.246991Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246994Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.246997Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247000Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247002Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.247005Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.247008Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247011Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247014Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.247016Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false +2026-03-30T15:40:00.247019Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) +2026-03-30T15:40:00.247044Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) +2026-03-30T15:40:00.247068Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) +2026-03-30T15:40:00.247092Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) +2026-03-30T15:40:00.247202Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247205Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247208Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247211Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247214Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247217Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247220Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247222Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247226Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247228Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247257Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247260Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247263Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247266Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247268Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247271Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247274Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) +2026-03-30T15:40:00.247300Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) +2026-03-30T15:40:00.247324Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) +2026-03-30T15:40:00.247348Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) +2026-03-30T15:40:00.247375Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247378Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247381Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247383Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247387Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247390Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247392Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247395Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247398Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247401Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247403Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247406Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247409Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247412Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false +2026-03-30T15:40:00.247414Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247417Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false +2026-03-30T15:40:00.247419Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) +2026-03-30T15:40:00.247443Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) +2026-03-30T15:40:00.247466Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) +2026-03-30T15:40:00.247490Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) +2026-03-30T15:40:00.248110Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205] }), ctx: EventContext { id: EventId(0x53cc3b1b4986072f965fa11fd124bd7e9ea2fd1627e5210ef8e9d1c27413ab6d), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 109, ts: 32740853049168739971351162033093356, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248178Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, data_hash: [152, 134, 176, 19, 232, 147, 192, 18, 196, 78, 38, 68, 32, 53, 245, 203, 234, 44, 17, 202, 233, 14, 167, 101, 154, 153, 231, 195, 158, 235, 241, 198] }), ctx: EventContext { id: EventId(0xcee8eb40e2bce0153dbea0b585ec01d00debdeedc27681bb2388785b49199ce0), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 110, ts: 32740853049169496287858184124709612, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248233Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21] }), ctx: EventContext { id: EventId(0xdbb76ac98c09d3be9b389885841d900bbbcb9419ac821ab32e14b9de32fe7322), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 111, ts: 32740853049169994349948174282603244, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248285Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, data_hash: [77, 150, 30, 222, 59, 221, 7, 56, 7, 21, 128, 158, 147, 52, 192, 183, 50, 208, 127, 99, 109, 82, 82, 23, 53, 80, 190, 184, 199, 218, 102, 46] }), ctx: EventContext { id: EventId(0x690bfa045fcf4f027d975a3a57ce6c1d18faa1e0f42cec842e87f9dfee0d4d68), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 112, ts: 32740853049170455518550017021393644, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248338Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54] }), ctx: EventContext { id: EventId(0x4bc6641aa186fb6b73121794425f0afbc142a657c768202168b30d8eab5df38d), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 113, ts: 32740853049171820577611471528213228, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248387Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, data_hash: [94, 209, 80, 75, 13, 194, 83, 54, 125, 174, 192, 162, 77, 224, 31, 181, 86, 168, 26, 194, 111, 13, 232, 71, 124, 49, 238, 93, 253, 221, 205, 227] }), ctx: EventContext { id: EventId(0x9963ca00db97a835970f1b033e0eb5e6dfa5a739e1340ed467e2e2f56a8164d4), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 114, ts: 32740853049172281746213314267003628, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248438Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93] }), ctx: EventContext { id: EventId(0x935123b11cf0244ec53619e9d96006116e4393d53459e7bdefb01eb6a0e8be80), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 115, ts: 32740853049172724468071083296242412, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248488Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, data_hash: [157, 40, 201, 224, 173, 125, 181, 38, 196, 67, 104, 88, 89, 189, 255, 35, 57, 9, 117, 91, 14, 10, 163, 87, 37, 27, 189, 1, 7, 183, 174, 193] }), ctx: EventContext { id: EventId(0xba9db4683a71a96993134c58a6a5a322955d7de5960ae4cf53ed654e690b71c7), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 116, ts: 32740853049173167189928852325481196, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248541Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 206, inconsistent_parties: {0, 1} }), ctx: EventContext { id: EventId(0x574631c2a75492be0838878d361f882564a9a99ac7b3fbba76dacb68dfa54013), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 117, ts: 32740853049173406997601810549652204, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248593Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 206, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x4c6d833d7b2d65ec82b47d47a8c9750e10e952b32d671ec1c1398bb621e5dd57), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 118, ts: 32740853049173720592251063612029676, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248645Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102] }), ctx: EventContext { id: EventId(0x7e01db6f7a7f1769cf588a1419e27d559a977f6ffb29b636f58fc5a8a77871e1), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 109, ts: 32740853049176542944094343162074474, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248697Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, data_hash: [145, 108, 239, 111, 190, 237, 153, 163, 242, 122, 61, 148, 3, 250, 148, 152, 110, 198, 202, 2, 231, 127, 162, 137, 14, 251, 238, 193, 32, 107, 10, 5] }), ctx: EventContext { id: EventId(0xc674f92f5d06cbc5d7e5da908fb49ca9bb1f0350bb3156543bf7d06b4bad8eda), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 110, ts: 32740853049177004112696185900864874, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248747Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48] }), ctx: EventContext { id: EventId(0x50e1c9bbc2023e26b931be013d75aed43f2c516811fdec4d260a4f8406d62ec3), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 111, ts: 32740853049177465281298028639655274, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248794Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, data_hash: [127, 210, 33, 192, 98, 237, 64, 230, 142, 195, 218, 91, 221, 26, 171, 142, 74, 46, 75, 241, 90, 66, 248, 226, 67, 107, 226, 146, 184, 63, 223, 34] }), ctx: EventContext { id: EventId(0xf17d47eab01cc21b81053eb7894e97c56fb3fee2a0944f304b1d0e5d9ec69a67), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 112, ts: 32740853049177908003155797668894058, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248845Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221] }), ctx: EventContext { id: EventId(0x0033dfa7586bef1f892521af1b7aa5fbfa573c72e56c47081be35e84443fa045), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 113, ts: 32740853049179199275240957337507178, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248896Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, data_hash: [184, 85, 36, 87, 33, 133, 224, 184, 84, 253, 161, 29, 114, 83, 250, 88, 42, 150, 135, 37, 145, 255, 124, 139, 94, 192, 91, 248, 243, 212, 242, 130] }), ctx: EventContext { id: EventId(0x39517f29fa854a67bcae51ff9bd4a296c41ea4f64b5d866241dde833dae6411b), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 114, ts: 32740853049179641997098726366745962, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248945Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185] }), ctx: EventContext { id: EventId(0x67c55b006ef4d06a34bbba805e8efa692e49b7f5881765c3aafa009dfc7afdbe), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 115, ts: 32740853049180066272212421686433130, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.248993Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, data_hash: [92, 49, 142, 237, 85, 118, 4, 158, 82, 160, 37, 213, 93, 148, 127, 224, 188, 10, 173, 66, 216, 209, 184, 177, 191, 74, 172, 77, 113, 127, 240, 39] }), ctx: EventContext { id: EventId(0x9e580bba7417b728f679b4a6825a6de3fa8b90a93d9e30128d82b58926f968d1), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 116, ts: 32740853049180508994070190715671914, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.249041Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 207, inconsistent_parties: {1, 2} }), ctx: EventContext { id: EventId(0x80d1cb11452959c6aeb9183625e8d39fa8dc566f7147de7cb3a6fa6c2cce6581), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 117, ts: 32740853049180693461510927811188074, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.249090Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 207, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x09e0fa1e325b54cb542fc140c0440408fe9dd7645ddb6aab4a47bfee42f31352), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 118, ts: 32740853049180914822439812325807466, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.250909Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption failure +2026-03-30T15:40:00.252749Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3aSkShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.252853Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.252948Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.254601Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3aSkShareEncryption failure +2026-03-30T15:40:00.262009Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption +2026-03-30T15:40:00.262036Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.264348Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.265078Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3bESmShareEncryption failure +2026-03-30T15:40:00.268993Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption +2026-03-30T15:40:00.269027Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.271227Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.271922Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption failure +2026-03-30T15:40:00.272634Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3bESmShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.272659Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.272689Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.272694Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.272698Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.272702Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.272706Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.272709Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.272713Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.272717Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.272720Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.272765Z  WARN e3_zk_prover::actors::share_verification: C2/C3 consistency check found 2 inconsistent parties for E3 1:0: {0, 1} +2026-03-30T15:40:00.273688Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption failure +2026-03-30T15:40:00.274376Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3aSkShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.274398Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.274429Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.275098Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3aSkShareEncryption failure +2026-03-30T15:40:00.277940Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption +2026-03-30T15:40:00.278081Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.282693Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.284510Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption failure +2026-03-30T15:40:00.285239Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3bESmShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.285268Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.285303Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.285979Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3bESmShareEncryption failure +2026-03-30T15:40:00.288819Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption +2026-03-30T15:40:00.288847Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.291041Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.291049Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.291054Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.291058Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.291061Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate +2026-03-30T15:40:00.291065Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.291069Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.291072Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.291076Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate +2026-03-30T15:40:00.291116Z  WARN e3_zk_prover::actors::share_verification: C2/C3 consistency check found 2 inconsistent parties for E3 1:0: {1, 2} +2026-03-30T15:40:00.291572Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x53cc3b1b4986072f965fa11fd124bd7e9ea2fd1627e5210ef8e9d1c27413ab6d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 119, ts: 32740853049244685216702624257096428, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.291671Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x53cc3b1b4986072f965fa11fd124bd7e9ea2fd1627e5210ef8e9d1c27413ab6d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 120, ts: 32740853049275638853258308884708076, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.291732Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0x023591c3f6af79443bd53a0cc446a6e9b41574083e59c58e66ca9997c2d4fecb), causation_id: EventId(0x53cc3b1b4986072f965fa11fd124bd7e9ea2fd1627e5210ef8e9d1c27413ab6d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 121, ts: 32740853049280084518580072886647532, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.291800Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0xdbb76ac98c09d3be9b389885841d900bbbcb9419ac821ab32e14b9de32fe7322), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 122, ts: 32740853049312624575126096535698156, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.291853Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0xdbb76ac98c09d3be9b389885841d900bbbcb9419ac821ab32e14b9de32fe7322), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 123, ts: 32740853049340737413094429892360940, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.291908Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }, AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }], votes_against: [], outcome: Equivocation }), ctx: EventContext { id: EventId(0xcb3816d5d1917859cc1341cf7649a83761b23c2fdbf9972e8b628308403e5555), causation_id: EventId(0xdbb76ac98c09d3be9b389885841d900bbbcb9419ac821ab32e14b9de32fe7322), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 124, ts: 32740853049448890673598588993485548, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.291971Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0x4bc6641aa186fb6b73121794425f0afbc142a657c768202168b30d8eab5df38d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 125, ts: 32740853049505097902791181997259500, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.292023Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x4bc6641aa186fb6b73121794425f0afbc142a657c768202168b30d8eab5df38d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 126, ts: 32740853049517531008296862235048684, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.292078Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }, AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }], votes_against: [], outcome: Equivocation }), ctx: EventContext { id: EventId(0x78d3dbe3ec0228fa61b12a5804dec0a9699880d0eda68558a5b96264cc4861d3), causation_id: EventId(0x4bc6641aa186fb6b73121794425f0afbc142a657c768202168b30d8eab5df38d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 127, ts: 32740853049577851861417892468833004, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.292139Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x935123b11cf0244ec53619e9d96006116e4393d53459e7bdefb01eb6a0e8be80), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 128, ts: 32740853049631292078999429039864556, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.292188Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x935123b11cf0244ec53619e9d96006116e4393d53459e7bdefb01eb6a0e8be80), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 129, ts: 32740853049643522270320298472585964, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.292240Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0x87843f3aed574567d835de65add38eb9a161ddadfd5c1f536102ee173f7fab53), causation_id: EventId(0x935123b11cf0244ec53619e9d96006116e4393d53459e7bdefb01eb6a0e8be80), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 130, ts: 32740853049644795095661384431647468, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.292297Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, dishonest_parties: {0, 1} }), ctx: EventContext { id: EventId(0x6666cc68a4a4fbf38adf7750a208420f081daf505ce41cfbbbd9fbba85faa2ab), causation_id: EventId(0x02d5f128ddbfed5763479738996fdfcc5ebaffffaddbdcc812dda2ec09637474), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 131, ts: 32740853049646768897277271353670380, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.292514Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x7e01db6f7a7f1769cf588a1419e27d559a977f6ffb29b636f58fc5a8a77871e1), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 119, ts: 32740853049663813688801380968011114, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.292754Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0x7e01db6f7a7f1769cf588a1419e27d559a977f6ffb29b636f58fc5a8a77871e1), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 120, ts: 32740853049675896306169660724319594, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.293013Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0xb47d86aa06a7eaabd9c7c9067f0ce5a5573be69cc7a83d46e85a570f114671ce), causation_id: EventId(0x7e01db6f7a7f1769cf588a1419e27d559a977f6ffb29b636f58fc5a8a77871e1), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 121, ts: 32740853049676873983605567330555242, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.293183Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x50e1c9bbc2023e26b931be013d75aed43f2c516811fdec4d260a4f8406d62ec3), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 122, ts: 32740853049689805151201237726238058, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.293336Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0x50e1c9bbc2023e26b931be013d75aed43f2c516811fdec4d260a4f8406d62ec3), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 123, ts: 32740853049701869321825443772994922, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.293488Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }, AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }], votes_against: [], outcome: Equivocation }), ctx: EventContext { id: EventId(0x181d027958a6f046689398b8bae3e8ccd062551e79e0dd414899ca4fe6d4d189), causation_id: EventId(0x50e1c9bbc2023e26b931be013d75aed43f2c516811fdec4d260a4f8406d62ec3), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 124, ts: 32740853049745717232488651377186154, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.293658Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x0033dfa7586bef1f892521af1b7aa5fbfa573c72e56c47081be35e84443fa045), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 125, ts: 32740853049863610373863729121564010, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.293804Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0x0033dfa7586bef1f892521af1b7aa5fbfa573c72e56c47081be35e84443fa045), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 126, ts: 32740853049876043479369409359353194, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.293957Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0x80e3ecceafa08a8a9f532ce88f352c2f2c4b26328f46d3f99ad3084d8e1ba3c5), causation_id: EventId(0x0033dfa7586bef1f892521af1b7aa5fbfa573c72e56c47081be35e84443fa045), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 127, ts: 32740853049877408538430863866172778, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.294109Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0x67c55b006ef4d06a34bbba805e8efa692e49b7f5881765c3aafa009dfc7afdbe), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 128, ts: 32740853049890524173467271357371754, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.294251Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x67c55b006ef4d06a34bbba805e8efa692e49b7f5881765c3aafa009dfc7afdbe), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 129, ts: 32740853049902569897347403694577002, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.294399Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }, AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }], votes_against: [], outcome: Equivocation }), ctx: EventContext { id: EventId(0x85aa8d842b8a68def7d1a0b721c54c5707ce6b62fd7a4d944e190356df091253), causation_id: EventId(0x67c55b006ef4d06a34bbba805e8efa692e49b7f5881765c3aafa009dfc7afdbe), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 130, ts: 32740853049943410988726596641854826, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.294576Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, dishonest_parties: {1, 2} }), ctx: EventContext { id: EventId(0xdedf99177670e2dfca1382b51516c6480fed5be46e49cbaf78a0c4e98ec20590), causation_id: EventId(0xb527e4843197bfc8e6bbc5b9870d244c12a1db2fa7bb34e5de0153813e2cf8af), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 131, ts: 32740853049985266651029843614471530, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.295218Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:40:00.295309Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:40:00.295367Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:40:00.296055Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:40:00.296119Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:40:00.296170Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:40:00.296222Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:40:00.296273Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:40:00.296896Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:40:00.296952Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:40:00.297006Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:40:00.297056Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:40:00.297111Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:40:00.297161Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:40:00.297215Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation +2026-03-30T15:40:00.297264Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote +2026-03-30T15:40:00.297602Z  WARN e3_keyshare::threshold_keyshare: Too few honest parties for E3 1:0 (1 honest, need at least 2) — cannot proceed +2026-03-30T15:40:00.297944Z  WARN e3_keyshare::threshold_keyshare: Too few honest parties for E3 1:0 (1 honest, need at least 2) — cannot proceed +2026-03-30T15:40:00.300400Z  INFO e3_events::eventbus: >>> E3Failed EnclaveEvent { payload: E3Failed(E3Failed { e3_id: E3id { id: "0", chain_id: 1 }, failed_at_stage: CommitteeFinalized, reason: InsufficientCommitteeMembers }), ctx: EventContext { id: EventId(0x153e51859e119b10813910d424f30e2d2e75dcd9ee53d331fa76c9110abaaeb8), causation_id: EventId(0x6666cc68a4a4fbf38adf7750a208420f081daf505ce41cfbbbd9fbba85faa2ab), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 132, ts: 32740853050104856892859700648950508, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.301344Z  INFO e3_events::eventbus: >>> E3Failed EnclaveEvent { payload: E3Failed(E3Failed { e3_id: E3id { id: "0", chain_id: 1 }, failed_at_stage: CommitteeFinalized, reason: InsufficientCommitteeMembers }), ctx: EventContext { id: EventId(0x153e51859e119b10813910d424f30e2d2e75dcd9ee53d331fa76c9110abaaeb8), causation_id: EventId(0xdedf99177670e2dfca1382b51516c6480fed5be46e49cbaf78a0c4e98ec20590), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 132, ts: 32740853050111073445612542756492650, aggregate_id: AggregateId(1), block: None, source: Local } } +2026-03-30T15:40:00.302189Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 1 } reason="E3Failed: InsufficientCommitteeMembers" +2026-03-30T15:40:00.315647Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 1 } reason="E3Failed: InsufficientCommitteeMembers" +2026-03-30T15:40:00.315735Z  WARN e3_keyshare::threshold_keyshare: E3 failed: InsufficientCommitteeMembers. Shutting down ThresholdKeyshare for e3_id=1:0 +2026-03-30T15:40:00.315742Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down +2026-03-30T15:40:00.315937Z  WARN e3_keyshare::threshold_keyshare: E3 failed: InsufficientCommitteeMembers. Shutting down ThresholdKeyshare for e3_id=1:0 +2026-03-30T15:40:00.315942Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down +2026-03-30T15:40:00.316772Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 133, ts: 32740853050179972034727845943130860, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.316848Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 134, ts: 32740853050181429327509668997708524, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.316906Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 135, ts: 32740853050182480791921870442150636, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.316959Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 136, ts: 32740853050183606043310366724799212, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317014Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 137, ts: 32740853050184639060978494459689708, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317065Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 138, ts: 32740853050185764312366990742338284, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317117Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 139, ts: 32740853050186815776779192186780396, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317171Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 140, ts: 32740853050187959474911762178980588, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317227Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050191667270470578070059289, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317288Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050192847862091295481362713, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317347Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050193973113479791764011289, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317403Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050195153705100509175314713, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317460Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050196278956489005457963289, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317515Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050197385761133428031060249, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317570Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050198437225545629475502361, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317624Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050199599370422273177254169, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317678Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050200650834834474621696281, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317731Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050201794532967044613896473, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317786Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050202827550635172348786969, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317862Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050203879015047373793229081, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317916Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050204967372947722656774425, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.317970Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050206092624336218939423001, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.318023Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050207107195260272964761881, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.318077Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050212641218482385830246681, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.318135Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 133, ts: 32740853050213526662197925606167914, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.318188Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 134, ts: 32740853050213969384055694635406698, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.318522Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 135, ts: 32740853050214338318937168826439018, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.318576Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 136, ts: 32740853050214725700562716727022954, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.318625Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 137, ts: 32740853050215057741956043498952042, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.318676Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 138, ts: 32740853050215426676837517689984362, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.318729Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 139, ts: 32740853050215777164974918171465066, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.318782Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 140, ts: 32740853050216127653112318652945770, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319080Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 125, ts: 32740853050216570374970086456010458, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319134Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 126, ts: 32740853050216957756595634356594394, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319187Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 127, ts: 32740853050217289797988961128523482, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319240Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 128, ts: 32740853050217658732870435319555802, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319294Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 129, ts: 32740853050218009221007835801036506, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319345Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 130, ts: 32740853050218359709145236282517210, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319627Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 131, ts: 32740853050218691750538563054446298, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319680Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 132, ts: 32740853050221532549125914325395162, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319732Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 133, ts: 32740853050222731587490705446250202, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319785Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 134, ts: 32740853050223838392135128019347162, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319837Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 135, ts: 32740853050224908303291403173340890, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.319888Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 136, ts: 32740853050226015107935825746437850, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.320482Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 137, ts: 32740853050227085019092100900431578, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.320711Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 138, ts: 32740853050228210270480597183080154, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.320861Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 139, ts: 32740853050229298628380946046625498, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.321125Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 140, ts: 32740853050230386986281294910170842, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.321183Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050231678258366453492398272, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.321236Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050232895743475318322804928, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.321531Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050233965654631593476798656, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.321583Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050235054012531942340344000, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.321635Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050236123923688217494337728, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.321686Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050237230728332640067434688, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.321737Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050238300639488915221428416, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.321790Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050239407444133337794525376, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.322074Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050240422015057391819864256, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.322126Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050241510372957740683409600, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.322179Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050242524943881794708748480, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.322232Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050243668642014364700948672, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.322282Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050244683212938418726287552, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.322336Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050245826911070988718487744, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.322388Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050246859928739116453378240, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.323203Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050248575475937971441678528, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.323421Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050249940534999428540986802, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.323573Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050251158020108293371393458, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.323723Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050252246378008642234938802, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.323877Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050253390076141212227138994, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.324030Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050254478434041561090684338, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.324675Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050255548345197836244678066, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.324842Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050256599809610037689120178, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.324997Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050258167782856303001007538, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.325144Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050259127013548135897691570, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.325296Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050259569735405904926930354, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.325441Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050259957117031452827514290, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.326147Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050260344498657000728098226, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.326335Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050260694986794401209578930, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.326484Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050261063921675875400611250, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.326627Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050261414409813275882091954, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.326772Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050261783344694750073124274, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.326938Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050262428980737327904023032, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.327683Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050262890149339170642813432, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.327846Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050263240637476571124294136, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.327997Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050263609572358045315326456, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.328146Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050263941613751372087255544, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.328298Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050264310548632846278287864, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.328446Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050264642590026173050216952, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.332525Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050264993078163573531697656, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.332771Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050265325119556900303626744, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.332947Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050265675607694300785107448, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.333021Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050266007649087627557036536, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.333080Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050266358137225028038517240, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.333136Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050266690178618354810446328, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.333462Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050267059113499829001478648, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.333521Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050267391154893155773407736, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.333575Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050267760089774629964440056, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.333642Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050268184364888326457186916, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.333702Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050268590193257948067322468, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.333758Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050268922234651274839251556, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334030Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050269291169532749030283876, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334087Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050269623210926075802212964, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334139Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050269992145807549993245284, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334194Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050270305740456803055622756, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334246Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050270674675338277246655076, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334301Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050271025163475677728135780, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334582Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050271375651613078209616484, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334636Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050271707693006404981545572, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334689Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050272076627887879172577892, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334744Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050272408669281205944506980, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334798Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050272759157418606425987684, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334853Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050273091198811933197916772, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.334905Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050273460133693407388949092, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.335545Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 16, ts: 32740853050273847515318956070385894, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.335726Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 17, ts: 32740853050274234896944503970969830, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.335881Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 18, ts: 32740853050274585385081904452450534, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.336033Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 19, ts: 32740853050274954319963378643482854, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.336186Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 20, ts: 32740853050275286361356705415411942, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.336340Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 21, ts: 32740853050275655296238179606444262, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.336906Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 22, ts: 32740853050275987337631506378373350, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.336972Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 23, ts: 32740853050276337825768906859854054, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.337031Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 24, ts: 32740853050276669867162233631783142, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.337088Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 25, ts: 32740853050277020355299634113263846, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.337144Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 26, ts: 32740853050277352396692960885192934, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.337200Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 27, ts: 32740853050277721331574435076225254, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.337649Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 28, ts: 32740853050278053372967761848154342, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.337847Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 29, ts: 32740853050278403861105162329635046, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.338006Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 30, ts: 32740853050278735902498489101564134, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.338158Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 31, ts: 32740853050279086390635889583044838, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.338333Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050279492219005509829198240, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.338538Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050279879600631057729782176, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.338692Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050280211642024384501711264, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.338844Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050280562130161784983191968, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.338998Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050280894171555111755121056, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.339147Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050281244659692512236601760, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.339304Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050281576701085839008530848, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.339455Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050281927189223239490011552, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.339617Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050282259230616566261940640, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.339772Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050282609718753966743421344, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.339919Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050282941760147293515350432, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.340071Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050283310695028767706382752, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.340222Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050283642736422094478311840, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.340369Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050283993224559494959792544, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.340519Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050284325265952821731721632, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.340664Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050284694200834295922753952, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.340888Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050285100029203915783718483, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341041Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050285487410829463684302419, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341114Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050285837898966864165783123, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341174Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050286501981753517709641299, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341233Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050286926256867213029328467, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341291Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050287276745004613510809171, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341348Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050287608786397940282738259, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341404Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050287977721279414473770579, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341460Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050288309762672741245699667, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341514Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050288660250810141727180371, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341570Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050288992292203468499109459, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341622Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050289361227084942690141779, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341677Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050289693268478269462070867, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341731Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050290043756615669943551571, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341786Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050290375798008996715480659, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341839Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050290726286146397196961363, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341909Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 16, ts: 32740853050291113667771944517291590, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.341969Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 17, ts: 32740853050291501049397492417875526, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342025Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 18, ts: 32740853050291833090790819189804614, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342082Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 19, ts: 32740853050292202025672293380836934, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342137Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 20, ts: 32740853050292515620321546443214406, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342190Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 21, ts: 32740853050292884555203020634246726, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342245Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 22, ts: 32740853050293216596596347406175814, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342300Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 23, ts: 32740853050293567084733747887656518, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342355Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 24, ts: 32740853050293972913103369497792070, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342410Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 25, ts: 32740853050294341847984843688824390, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342467Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 26, ts: 32740853050294655442634096751201862, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342522Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 27, ts: 32740853050295024377515570942234182, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342578Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 28, ts: 32740853050295356418908897714163270, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342631Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 29, ts: 32740853050295706907046298195643974, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342686Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 30, ts: 32740853050296038948439624967573062, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342740Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 31, ts: 32740853050296407883321099158605382, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342813Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050298234110984397005076712, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342869Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050299654510278072640551144, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342924Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050300687527946200375441640, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.342980Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050301831226078770367641832, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343034Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050302864243746898102532328, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343092Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050303989495135394385180904, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343147Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050305059406291669539174632, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343203Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050306203104424239531374824, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343258Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050307217675348293556713704, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343314Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050308342926736789839362280, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343369Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050309375944404917574252776, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343433Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050310464302305266437798120, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343486Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050311515766717467882240232, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343540Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050312567231129669326682344, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343594Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050313581802053723352021224, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343649Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050314670159954072215566568, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343710Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050316035219015527831216780, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343769Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050317178917148097823416972, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343830Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050318230381560299267859084, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343884Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050319521653645458936472204, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343940Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050320591564801734090465932, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.343995Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050321735262934304082666124, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344052Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050322768280602431817556620, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344107Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050323856638502780681101964, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344161Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050324908102914982125544076, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344215Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050326033354303478408192652, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344270Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050327066371971606143083148, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344323Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050328246963592323554386572, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344377Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050329298428004524998828684, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344431Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050330405232648947571925644, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344487Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050331419803573001597264524, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344539Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050332545054961497879913100, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344598Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050333688753094069222942374, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344654Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050334869344714786634245798, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344708Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050335883915638840659584678, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344762Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050337027613771410651784870, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344816Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050338060631439538386675366, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344868Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050339167436083960959772326, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344925Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050340200453752088694662822, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.344979Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050341325705140584977311398, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345032Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050342377169552786421753510, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345085Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050343483974197208994850470, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345139Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050344498545121263020189350, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345226Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050345586903021611883734694, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345295Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050346601473945665909073574, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345364Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050347708278590088482170534, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345422Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050348722849514142507509414, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345478Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050349792760670417661503142, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345539Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050354773381570316135786516, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345599Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050356175334119918061709332, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345658Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050357282138764340634806292, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345715Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050358425836896910627006484, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345769Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050359514194797259490551828, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345824Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050360602552697608354097172, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345881Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050361709357342030927194132, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345937Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050362816161986453500291092, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.345995Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050363867626398654944733204, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.346050Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050365066664763446065588244, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.346404Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050366081235687500090927124, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.346476Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050367188040331922664024084, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.346530Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050368202611255976689362964, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.346584Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050369290969156325552908308, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.346647Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050370287093336305868695572, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.346701Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050373699740989942135744532, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.347309Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 16, ts: 32740853050375083246795473377109356, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.347519Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 17, ts: 32740853050376300731904338207516012, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.347733Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 18, ts: 32740853050377352196316539651958124, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.347913Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 19, ts: 32740853050378459000960962225055084, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.348094Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 20, ts: 32740853050379547358861311088600428, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.348246Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 21, ts: 32740853050380691056993881080800620, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.348404Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 22, ts: 32740853050381742521406082525242732, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.348552Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 23, ts: 32740853050382904666282726226994540, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.348701Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 24, ts: 32740853050383974577439001380988268, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.348884Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 25, ts: 32740853050385118275571571373188460, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.349039Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 26, ts: 32740853050386151293239699108078956, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.349188Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 27, ts: 32740853050387276544628195390727532, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.349945Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 28, ts: 32740853050388309562296323125618028, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.350016Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 29, ts: 32740853050389434813684819408266604, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.350072Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 30, ts: 32740853050390486278097020852708716, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.350124Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 31, ts: 32740853050391574635997369716254060, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.350193Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050393696011565843060816839, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.350254Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050395024177139150148533191, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.350651Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050396094088295425302526919, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.350851Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050397200892939847875623879, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.351015Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050398270804096123029617607, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.351174Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050399469842460914150472647, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.351327Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050400521306873115594914759, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.351481Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050401628111517538168011719, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.351628Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050402698022673813322005447, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.351782Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050403897061038604442860487, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.351931Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050407789324038157158251463, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.352078Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050409375744028496179690439, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.352228Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050410574782393287300545479, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.352377Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050411773820758078421400519, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.352524Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050412862178658427284945863, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.352675Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050413987430046923567594439, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.352850Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050415315595620230699141760, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.352996Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050416477740496874400893568, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.353142Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050417584545141296973990528, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.353282Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050418728243273866966190720, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.353423Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050419761260941994701081216, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.353564Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050420868065586417274178176, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.353709Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050421901083254545009068672, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.353850Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050423007887898967582165632, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.353995Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050424040905567095317056128, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.354131Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050425203050443739018807936, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.354276Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050426254514855940463250048, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.354415Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050427970062054795451550336, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.354558Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050428671038329596414511744, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.354698Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050429076866699218024647296, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.354842Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050429427354836618506128000, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.355023Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050429814736462166406711936, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.355223Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050430275905064010597843075, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.355393Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050430700180177705917530243, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.355575Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050431050668315106399010947, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.355728Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050431401156452506880491651, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.355875Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050431751644589907361972355, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.356026Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050432102132727307843453059, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.356174Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050432452620864708324933763, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.356322Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050432803109002108806414467, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.356473Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050433135150395435578343555, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.356623Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050433485638532836059824259, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.356765Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050433836126670236541304963, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.356914Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050434186614807637022785667, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.357062Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050434518656200963794714755, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.357212Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050434887591082437985747075, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.357368Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050435201185731691048124547, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.357521Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050435570120613165239156867, aggregate_id: AggregateId(1), block: None, source: Net } } +2026-03-30T15:40:00.365208Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption +2026-03-30T15:40:00.365405Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3aSkShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.365465Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.371906Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.376951Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption +2026-03-30T15:40:00.377026Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3bESmShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.377049Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.381735Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.386779Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption +2026-03-30T15:40:00.389041Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption +2026-03-30T15:40:00.389070Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.393439Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.395865Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:00.399401Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption +2026-03-30T15:40:00.403209Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption +2026-03-30T15:40:00.403249Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.407599Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.409767Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:00.412275Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.416633Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.420971Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.425302Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.429660Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.434106Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.438465Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.443736Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.450530Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.454934Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.458038Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:00.460221Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.462456Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:00.464638Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.468986Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.471167Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:00.473891Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.476130Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:00.478441Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.481705Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:00.484300Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.486483Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:00.490683Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption +2026-03-30T15:40:00.490760Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3aSkShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.490785Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.495254Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.499804Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.505000Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption +2026-03-30T15:40:00.505074Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3bESmShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.505098Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.510307Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption +2026-03-30T15:40:00.512587Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption +2026-03-30T15:40:00.512614Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.517192Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.519427Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:00.521845Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.524030Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:00.527704Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption +2026-03-30T15:40:00.529933Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption +2026-03-30T15:40:00.529962Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.534861Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.540176Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3aSkShareEncryption +2026-03-30T15:40:00.540266Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB sent bad C3aSkShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.540290Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.545338Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3bESmShareEncryption +2026-03-30T15:40:00.545394Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB sent bad C3bESmShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.545417Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.549739Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.554220Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.559299Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3aSkShareEncryption +2026-03-30T15:40:00.559366Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 sent bad C3aSkShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.559388Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.563748Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.568693Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3bESmShareEncryption +2026-03-30T15:40:00.568755Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 sent bad C3bESmShareEncryption proof — AccusedFaulted +2026-03-30T15:40:00.568780Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted +2026-03-30T15:40:00.573191Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.578100Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3aSkShareEncryption +2026-03-30T15:40:00.580329Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption +2026-03-30T15:40:00.580360Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.585283Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3bESmShareEncryption +2026-03-30T15:40:00.587486Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption +2026-03-30T15:40:00.587508Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.591795Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.596033Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.598206Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:00.601051Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3aSkShareEncryption +2026-03-30T15:40:00.603276Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption +2026-03-30T15:40:00.603301Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.609117Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.611291Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:00.614216Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3bESmShareEncryption +2026-03-30T15:40:00.616456Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption +2026-03-30T15:40:00.616482Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation +2026-03-30T15:40:00.624396Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.641287Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.646422Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.653154Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.659501Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.670092Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.677276Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.681714Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.691283Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.701080Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.704466Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:00.709472Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.714757Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:00.721110Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.725511Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.729526Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:00.734346Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.736539Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:00.738750Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.740940Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:00.743124Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.747341Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:00.751286Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.760296Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.769660Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.779290Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.783754Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.793453Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.801269Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.806591Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.810981Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.821375Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.825801Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:00.830032Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.832251Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:00.836432Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.843500Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.846547Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:00.848768Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.851297Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:00.853601Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.856252Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:00.858464Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.860652Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:00.863183Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.867536Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.872542Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.877329Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.881685Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.886411Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.891679Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.896056Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.902632Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.907297Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.909487Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:00.911658Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.914437Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:00.916680Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.921391Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.923579Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:00.925770Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.927947Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:00.930111Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.932284Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:00.934490Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.936636Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:00.939144Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.943450Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.947738Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.952808Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.957125Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.961413Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.965752Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.971297Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.980497Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.984909Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:00.987116Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:00.989313Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.991503Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:00.993688Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:00.998037Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.000242Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.002453Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.004637Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.006817Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.008994Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.011189Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.013370Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.015879Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.020259Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.024622Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.028944Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.033238Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.037522Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.041788Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.046024Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.050290Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.054575Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.056802Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:01.058998Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.061170Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:01.063340Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.067679Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.069845Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.072020Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.074185Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.076378Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.078540Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.080704Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.082870Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.085349Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.092014Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.099852Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.104241Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.108639Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.113027Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.117393Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.121772Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.126159Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.130558Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.132765Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:01.134955Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.137151Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:01.139343Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.143716Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.145905Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.148100Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.150291Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.152474Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.154659Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.156849Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.159049Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.161630Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.166013Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.170406Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.174777Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.179157Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.183537Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.187913Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.192282Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.196653Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.201037Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.203252Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:01.205448Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.207642Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:01.209835Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.214197Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.216412Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.218668Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.220856Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.223043Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.225223Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.227415Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.229609Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.232101Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.241749Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.248576Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.252926Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.259939Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.269488Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.273862Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.278238Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.282630Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.287052Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.289262Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:01.291454Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.293647Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:01.295829Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.300202Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.302404Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.304855Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.307031Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.309195Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.313439Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.318187Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.320384Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.322939Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.327885Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.339696Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.352073Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.363665Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.370261Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.374612Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.380122Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.385813Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.395804Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.398007Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:01.400187Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.402367Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:01.414207Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.421315Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.423495Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.425680Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.427860Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.430037Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.435696Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.438590Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.440787Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.447324Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.457636Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.462067Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.466468Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.472299Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.481340Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.492040Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.502423Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.512601Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.516974Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.520081Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:01.526000Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.528201Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:01.530387Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.535222Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.540655Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.545652Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.547836Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.553034Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.558323Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.560522Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.562710Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.565233Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.573046Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.582279Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.586645Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.592481Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.598150Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.602517Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.614234Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.618625Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.623000Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.625255Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:01.629223Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.631424Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:01.633643Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.638009Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.640199Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.642392Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.644604Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.648591Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.653885Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.659979Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.663287Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.666273Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.674143Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.681277Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.687063Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.691421Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.695739Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.700068Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.704364Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.708669Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.712966Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.715171Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:01.717338Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.719494Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:01.721685Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.725960Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.728103Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.730247Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.732418Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.734597Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.737352Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.741134Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.743364Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.756243Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.763927Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.768274Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.772588Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.782264Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.787600Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.791913Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.796214Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.806651Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.813570Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.817714Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:01.823635Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.826420Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:01.828750Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.835009Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.837173Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.839338Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.841486Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.849763Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.852327Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.854514Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.856686Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.869356Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.878684Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.888831Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.898019Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.902347Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.907591Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.918680Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.925953Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.930314Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.941596Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.947194Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:01.949585Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.951770Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:01.956380Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.960728Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.962891Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:01.966140Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.970965Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:01.974267Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.979389Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:01.982935Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:01.985109Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:01.987574Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.995168Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:01.999558Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.008298Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.012716Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.017081Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.021653Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.028861Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.033224Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.037652Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.039838Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:02.041994Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.044167Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:02.046341Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.050764Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.052912Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:02.055082Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.057208Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:02.059295Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.061399Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:02.063509Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.065718Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:02.068326Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.072590Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.076934Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.081400Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.085733Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.090189Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.094462Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.098836Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.103086Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.138788Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.148320Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote +2026-03-30T15:40:02.153335Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.162094Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote +2026-03-30T15:40:02.164550Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.169018Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.171192Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote +2026-03-30T15:40:02.184373Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote +2026-03-30T15:40:02.190452Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote +2026-03-30T15:40:02.203188Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.208455Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote +2026-03-30T15:40:02.212362Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote +2026-03-30T15:40:02.216071Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote +2026-03-30T15:40:02.221089Z  INFO e3_test_helpers::ciphernode_system: take took 399.612574958s for count=24, total_timeout=Some(5000s), per_evt_timeout=Some(5000s) +>> ["ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote"] == ["KeyshareCreated", "KeyshareCreated", "KeyshareCreated", "ShareVerificationDispatched", "CommitmentConsistencyCheckRequested", "CommitmentConsistencyCheckComplete", "ComputeRequest", "ComputeResponse", "ProofVerificationPassed", "ProofVerificationPassed", "ProofVerificationPassed", "ShareVerificationComplete", "PkAggregationProofPending", "ComputeRequest", "ComputeResponse", "PkAggregationProofSigned", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "ComputeRequest", "ComputeResponse", "ComputeRequest", "ComputeResponse", "PublicKeyAggregated"] +2026-03-30T15:40:02.221216Z  INFO e3_test_helpers::ciphernode_system: expectation take took 399.612711625s for ["KeyshareCreated", "KeyshareCreated", "KeyshareCreated", "ShareVerificationDispatched", "CommitmentConsistencyCheckRequested", "CommitmentConsistencyCheckComplete", "ComputeRequest", "ComputeResponse", "ProofVerificationPassed", "ProofVerificationPassed", "ProofVerificationPassed", "ShareVerificationComplete", "PkAggregationProofPending", "ComputeRequest", "ComputeResponse", "PkAggregationProofSigned", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "ComputeRequest", "ComputeResponse", "ComputeRequest", "ComputeResponse", "PublicKeyAggregated"] total_timeout=5000s per_evt_timeout=5000s + +thread 'test_trbfv_actor' panicked at crates/test-helpers/src/ciphernode_system.rs:295:9: +assertion `left == right` failed + left: ["ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote"] + right: ["KeyshareCreated", "KeyshareCreated", "KeyshareCreated", "ShareVerificationDispatched", "CommitmentConsistencyCheckRequested", "CommitmentConsistencyCheckComplete", "ComputeRequest", "ComputeResponse", "ProofVerificationPassed", "ProofVerificationPassed", "ProofVerificationPassed", "ShareVerificationComplete", "PkAggregationProofPending", "ComputeRequest", "ComputeResponse", "PkAggregationProofSigned", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "ComputeRequest", "ComputeResponse", "ComputeRequest", "ComputeResponse", "PublicKeyAggregated"] +note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace +test test_trbfv_actor ... FAILED + +failures: + +failures: + test_trbfv_actor + +test result: FAILED. 2 passed; 1 failed; 2 ignored; 0 measured; 0 filtered out; finished in 409.09s + +error: test failed, to rerun pass `-p e3-tests --test integration` diff --git a/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json b/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json index 19883b9329..2c13c98caf 100644 --- a/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json +++ b/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json @@ -473,19 +473,6 @@ "name": "UtilizationBpsExceedsMax", "type": "error" }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "bytes[]", - "name": "e3ProgramParams", - "type": "bytes[]" - } - ], - "name": "AllowedE3ProgramsParamsSet", - "type": "event" - }, { "anonymous": false, "inputs": [ @@ -652,19 +639,6 @@ "name": "E3ProgramEnabled", "type": "event" }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "bytes[]", - "name": "e3ProgramParams", - "type": "bytes[]" - } - ], - "name": "E3ProgramsParamsRemoved", - "type": "event" - }, { "anonymous": false, "inputs": [ @@ -720,9 +694,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -920,6 +894,25 @@ "name": "OwnershipTransferred", "type": "event" }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "encodedParams", + "type": "bytes" + } + ], + "name": "ParamSetRegistered", + "type": "event" + }, { "anonymous": false, "inputs": [ @@ -1279,25 +1272,6 @@ "stateMutability": "view", "type": "function" }, - { - "inputs": [ - { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" - } - ], - "name": "e3ProgramsParams", - "outputs": [ - { - "internalType": "bool", - "name": "allowed", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - }, { "inputs": [], "name": "e3RefundManager", @@ -1347,9 +1321,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -1537,9 +1511,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -1610,9 +1584,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -1895,11 +1869,6 @@ "internalType": "struct IEnclave.E3TimeoutConfig", "name": "config", "type": "tuple" - }, - { - "internalType": "bytes[]", - "name": "_e3ProgramsParams", - "type": "bytes[]" } ], "name": "initialize", @@ -2014,6 +1983,25 @@ "stateMutability": "view", "type": "function" }, + { + "inputs": [ + { + "internalType": "enum IEnclave.ParamSet", + "name": "", + "type": "uint8" + } + ], + "name": "paramSetRegistry", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "stateMutability": "view", + "type": "function" + }, { "inputs": [ { @@ -2109,19 +2097,6 @@ "stateMutability": "nonpayable", "type": "function" }, - { - "inputs": [ - { - "internalType": "bytes[]", - "name": "_e3ProgramsParams", - "type": "bytes[]" - } - ], - "name": "removeE3ProgramsParams", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, { "inputs": [], "name": "renounceOwnership", @@ -2149,9 +2124,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -2214,9 +2189,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -2329,19 +2304,6 @@ "stateMutability": "nonpayable", "type": "function" }, - { - "inputs": [ - { - "internalType": "bytes[]", - "name": "_e3ProgramsParams", - "type": "bytes[]" - } - ], - "name": "setE3ProgramsParams", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, { "inputs": [ { @@ -2381,6 +2343,24 @@ "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [ + { + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "encodedParams", + "type": "bytes" + } + ], + "name": "setParamSet", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, { "inputs": [ { @@ -2559,11 +2539,11 @@ "type": "function" } ], - "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615b04806100d65f395ff3fe608060405234801561000f575f5ffd5b50600436106102d9575f3560e01c80639117173c11610182578063cb649617116100e0578063ea71aa571161008f578063ea71aa57146108c0578063f0691cba146108d3578063f2fde38b146108e6578063f81b8ef6146108f9578063fad8e1111461090c578063fbdb32371461091f578063fd2f3d0114610947575f5ffd5b8063cb64961714610829578063cbd1687214610832578063cf0f34c414610845578063cfbdc98d14610858578063d8afed3e14610887578063da16fb2f1461089a578063e59e4695146108ad575f5ffd5b8063ac3d2f421161013c578063ac3d2f4214610780578063b27392d5146107a8578063b68fd1be146107bb578063bb2d1b82146107ce578063bff232c1146107e1578063c1ab0f1f146107f4578063c4ccafa214610807575f5ffd5b80639117173c146105ac57806392312386146105bf578063929a8faf146105d257806399c6679d146105f35780639c8570c81461061b578063a87f4ab91461062e575f5ffd5b80634fc772641161023a5780637cfa9d74116101e95780637cfa9d741461053157806381476ec21461054457806385814243146105575780638da5cb5b1461056a5780638dcdd86b146105725780638e5ce3ad1461058457806390173a4114610597575f5ffd5b80634fc77264146104b357806364226409146104c6578063647846a5146104e75780636db5c8fd146104fa578063715018a61461050357806377868ae41461050b5780637c8c3b4d1461051e575f5ffd5b80631ba72945116102965780631ba72945146103a657806336c5d38a146103b95780634017daf0146103e8578063406ed35c146104155780634147a36014610435578063459d9294146104625780634e92ec63146104a0575f5ffd5b806301d12f1c146102dd57806302a3a9c9146102f25780630ef81b2f1461030557806310bc62811461034357806311bd61d91461036b57806315cce22414610393575b5f5ffd5b6102f06102eb366004614729565b61095a565b005b6102f06103003660046147d9565b610ba1565b61032d6103133660046147fb565b5f908152600960205260409020546001600160a01b031690565b60405161033a919061481f565b60405180910390f35b61032d6103513660046147fb565b60096020525f90815260409020546001600160a01b031681565b61037e610379366004614841565b610c4d565b60405163ffffffff909116815260200161033a565b6102f06103a13660046147d9565b610c89565b6102f06103b4366004614869565b610d2e565b6103db6103c73660046147fb565b5f908152600f602052604090205460ff1690565b60405161033a91906148ab565b6103fb6103f63660046147fb565b610d42565b60405161033a9e9d9c9b9a999897969594939291906148f7565b6104286104233660046147fb565b610f6c565b60405161033a9190614ae7565b6104546104433660046147fb565b600c6020525f908152604090205481565b60405190815260200161033a565b610490610470366004614af9565b8051602081830181018051600b8252928201919093012091525460ff1681565b604051901515815260200161033a565b6102f06104ae3660046147fb565b611269565b6102f06104c13660046147d9565b6112f8565b6104d96104d4366004614b32565b61138b565b60405161033a929190614b69565b60045461032d906001600160a01b031681565b61045460055481565b6102f0611bd3565b6102f0610519366004614b81565b611be6565b6102f061052c366004614bb2565b611c7e565b6102f061053f3660046147fb565b611d07565b6102f0610552366004614be0565b611e06565b60015461032d906001600160a01b031681565b61032d611efa565b5f5461032d906001600160a01b031681565b60035461032d906001600160a01b031681565b61059f611f28565b60405161033a9190614c00565b6102f06105ba3660046147fb565b611f6e565b61059f6105cd3660046147fb565b6120dc565b6105e56105e03660046147fb565b612135565b60405161033a929190614c21565b61032d6106013660046147fb565b5f908152601060205260409020546001600160a01b031690565b610490610629366004614c74565b61215c565b610773604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161033a9190614ceb565b61032d61078e3660046147fb565b5f908152600a60205260409020546001600160a01b031690565b6104906107b6366004614df8565b6123f4565b6102f06107c9366004614b81565b612624565b6102f06107dc366004614e9d565b6126bb565b6102f06107ef3660046147d9565b612777565b6102f0610802366004614be0565b61281e565b6104906108153660046147d9565b60076020525f908152604090205460ff1681565b61045460065481565b6102f0610840366004614bb2565b6128db565b6102f06108533660046147fb565b61298e565b61087a6108663660046147fb565b5f908152600d602052604090205460ff1690565b60405161033a9190614ed5565b6102f0610895366004614ee3565b6129cb565b6104546108a8366004614b32565b612c58565b6102f06108bb3660046147d9565b6131dc565b6102f06108ce366004614efd565b613276565b60025461032d906001600160a01b031681565b6102f06108f43660046147d9565b613523565b6103db6109073660046147fb565b61355d565b6102f061091a3660046147d9565b6136f7565b61032d61092d3660046147fb565b600a6020525f90815260409020546001600160a01b031681565b6102f06109553660046147d9565b61378f565b5f61096361381e565b805490915060ff600160401b82041615906001600160401b03165f811580156109895750825b90505f826001600160401b031660011480156109a45750303b155b9050811580156109b2575080155b156109d05760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156109fa57845460ff60401b1916600160401b1785555b610a0333613848565b610a0c8861298e565b610a158c6136f7565b610a1e8b6131dc565b610a278a610ba1565b610a3089610c89565b610a3987613859565b610a4286612624565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff19169055610b2b611efa565b6001600160a01b03168d6001600160a01b031614610b4c57610b4c8d613523565b8315610b9257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050505050505050565b610ba9613916565b6001600160a01b038116610c045760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f208160028110610c66575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610c91613916565b6001600160a01b03811615801590610cb757506004546001600160a01b03828116911614155b8190610cd75760405163eddf07f560e01b8152600401610bfb919061481f565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610d2390839061481f565b60405180910390a150565b610d36613916565b610d3f81613859565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff90951695939492936001600160a01b039092169291610d8d90614f34565b80601f0160208091040260200160405190810160405280929190818152602001828054610db990614f34565b8015610e045780601f10610ddb57610100808354040283529160200191610e04565b820191905f5260205f20905b815481529060010190602001808311610de757829003601f168201915b505050505090806008018054610e1990614f34565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4590614f34565b8015610e905780601f10610e6757610100808354040283529160200191610e90565b820191905f5260205f20905b815481529060010190602001808311610e7357829003601f168201915b5050506009840154600a850154600b860154600c870154600d8801805497986001600160a01b03958616989490951696509194509291610ecf90614f34565b80601f0160208091040260200160405190810160405280929190818152602001828054610efb90614f34565b8015610f465780601f10610f1d57610100808354040283529160200191610f46565b820191905f5260205f20905b815481529060010190602001808311610f2957829003601f168201915b505050600e90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610f7461440e565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610fb157610fb1614883565b6003811115610fc257610fc2614883565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610fe75750505091835250506005820154602082015260068201546001600160a01b0316604082015260078201805460609092019161103490614f34565b80601f016020809104026020016040519081016040528092919081815260200182805461106090614f34565b80156110ab5780601f10611082576101008083540402835291602001916110ab565b820191905f5260205f20905b81548152906001019060200180831161108e57829003601f168201915b505050505081526020016008820180546110c490614f34565b80601f01602080910402602001604051908101604052809291908181526020018280546110f090614f34565b801561113b5780601f106111125761010080835404028352916020019161113b565b820191905f5260205f20905b81548152906001019060200180831161111e57829003601f168201915b505050918352505060098201546001600160a01b039081166020830152600a830154166040820152600b8201546060820152600c8201546080820152600d8201805460a09092019161118c90614f34565b80601f01602080910402602001604051908101604052809291908181526020018280546111b890614f34565b80156112035780601f106111da57610100808354040283529160200191611203565b820191905f5260205f20905b8154815290600101906020018083116111e657829003601f168201915b5050509183525050600e91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a08201519192508391166112635760405163cd6f4a4f60e01b8152600401610bfb91815260200190565b50919050565b611271613916565b5f8181526009602052604090205481906001600160a01b03166112aa576040516381c4951960e01b8152600401610bfb91815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610d239083815260200190565b611300613916565b6001600160a01b0381165f90815260076020526040902054819060ff1661133b576040516321ac7c5f60e01b8152600401610bfb919061481f565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610d2390839061481f565b5f61139461440e565b5f6012816113a56020870187614f66565b60038111156113b6576113b6614883565b60038111156113c7576113c7614883565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116113ee579050505050505090505f8160016002811061144557611445614f7f565b602002015163ffffffff1611845f0160208101906114639190614f66565b906114825760405163286c068d60e11b8152600401610bfb9190614f93565b506020840135428110156114ac57604051630b99e87960e01b8152600401610bfb91815260200190565b50604084013560208501358110156114da5760405163174b5a0760e21b8152600401610bfb91815260200190565b506017546016545f91906114f2426040890135614fb5565b6114fc9190614fc8565b6115069190614fc8565b90506005548110819061152f576040516313b783af60e21b8152600401610bfb91815260200190565b5060075f61154360808801606089016147d9565b6001600160a01b0316815260208101919091526040015f205460ff1661156f60808701606088016147d9565b9061158e5760405163295a6a6f60e11b8152600401610bfb919061481f565b505f61159986612c58565b60068054965090915085905f6115ae83614fdb565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff1916600117905560109094528290208054339416939093179092556016549192506116899190890135614fc8565b5f878152600e60209081526040909120600101919091558186526116af90880188614f66565b856020019060038111156116c5576116c5614883565b908160038111156116d8576116d8614883565b905250436040808701919091528051808201825290602089019060029083908390808284375f92019190915250505060608087019190915261172090608089019089016147d9565b6001600160a01b031660a086015261173b6080880188614ff3565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060c08087019190915261178390880188614ff3565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526117d0906101008901908901615042565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a08601819052600454611820916001600160a01b03909116903085613948565b5f6118316080890160608a016147d9565b6001600160a01b031663fefd9a8b888461184e60808d018d614ff3565b61185b60a08f018f614ff3565b8f8060c0019061186b9190614ff3565b6040518963ffffffff1660e01b815260040161188e989796959493929190615085565b6020604051808303815f875af11580156118aa573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ce91906150db565b5f818152600960205260409020549091506001600160a01b0316818161190a576040516381c4951960e01b8152600401610bfb91815260200190565b505f828152600a60205260409020546001600160a01b03168281611944576040516381c4951960e01b8152600401610bfb91815260200190565b50608088018390526001600160a01b038083166101008a015281166101208901525f8981526008602090815260409091208951815590890151600180830180548c94939260ff1991909116908360038111156119a2576119a2614883565b0217905550604082015181600201556060820151816003019060026119c892919061448b565b506080820151600582015560a08201516006820180546001600160a01b0319166001600160a01b0390921691909117905560c08201516007820190611a0d9082615151565b5060e08201516008820190611a229082615151565b506101008201516009820180546001600160a01b039283166001600160a01b031991821617909155610120840151600a84018054919093169116179055610140820151600b820155610160820151600c820155610180820151600d820190611a8a9082615151565b506101a0820151600e90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b90611af0908c9088908c90600401615206565b6020604051808303815f875af1158015611b0c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b30919061524b565b611b4d57604051630d8dbe2560e01b815260040160405180910390fd5b611b5d60808b0160608c016147d9565b6001600160a01b03167f5904e83d57e704fba4d92c5617f6b50ae993cd42d78babfcb239d0a6775f30708a8a604051611b97929190614b69565b60405180910390a2885f516020615ad85f395f51905f525f6001604051611bbf929190615266565b60405180910390a250505050505050915091565b611bdb613916565b611be45f6139b5565b565b611bee613916565b80515f5b81811015611c4257600b838281518110611c0e57611c0e614f7f565b6020026020010151604051611c239190615281565b908152604051908190036020019020805460ff19169055600101611bf2565b507fd1b46e030b48add7bc03225cc5a6f403970976b36983f99ec31d535d627fc7db82604051611c729190615297565b60405180910390a15050565b611c86613916565b6001600160a01b03811615801590611cb757505f828152600a60205260409020546001600160a01b03828116911614155b8290611cd9576040516381c4951960e01b8152600401610bfb91815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b03163314611d315760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff166001816006811115611d5657611d56614883565b14611d7b57816001826040516337e1404160e01b8152600401610bfb939291906152fa565b5f828152600d60205260409020805460ff19166002179055601554611da09042614fc8565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f516020615ad85f395f51905f5260016002604051611dfa929190615266565b60405180910390a25050565b5f546001600160a01b03163314611e305760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff166002816006811115611e6057611e60614883565b14611e8557836002826040516337e1404160e01b8152600401610bfb939291906152fa565b5f848152600d6020526040808220805460ff19166003179055600b84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f516020615ad85f395f51905f5260026003604051611eec929190615266565b60405180910390a250505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b611f4960405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff166006816006811115611f9357611f93614883565b148290611fb657604051637cb2d48360e11b8152600401610bfb91815260200190565b505f828152600c60205260409020548281611fe7576040516345ba89d560e11b8152600401610bfb91815260200190565b505f838152600c6020526040812081905561200184613a25565b5f858152601160205260409020546002549192506001600160a01b039081169161202e9183911685613b12565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b6979061206490889087908790879060040161535e565b5f604051808303815f87803b15801561207b575f5ffd5b505af115801561208d573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a073178484516040516120cd929190918252602082015260400190565b60405180910390a25050505050565b6120fd60405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166121528482613b3d565b9250925050915091565b5f5f61216787610f6c565b5f888152600d602052604090205490915060ff16600381600681111561218f5761218f614883565b14886003839091926121b7576040516337e1404160e01b8152600401610bfb939291906152fa565b5050505f888152600e602090815260409182902082516060810184528154815260018201549281018390526002909101549281019290925289904281101561221b576040516308f3034360e31b815260048101929092526024820152604401610bfb565b50506060830151602001518990428111156122525760405163017e35e560e71b815260048101929092526024820152604401610bfb565b505061016083015189901561227d57604051637eb9cea960e11b8152600401610bfb91815260200190565b505f888860405161228f929190615395565b60408051918290039091205f8c815260086020908152838220600c01839055600d905291909120805460ff191660041790556017549091506122d19042614fc8565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf9061231e908d9085908c908c906004016153a4565b6020604051808303815f875af115801561233a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061235e919061524b565b945088888661238257604051632f9f8ab960e01b8152600401610bfb9291906153c3565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a6040516123b69291906153c3565b60405180910390a2895f516020615ad85f395f51905f52600360046040516123df929190615266565b60405180910390a25050505095945050505050565b5f5f6123ff89610f6c565b5f8a8152600d602052604090205490915060ff16600481600681111561242757612427614883565b148a60048390919261244f576040516337e1404160e01b8152600401610bfb939291906152fa565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b90428110156124b2576040516308f3034360e31b815260048101929092526024820152604401610bfb565b50505f8b8152600860205260409020600d016124cf8a8c836153d6565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b604051612513929190615395565b6040519081900381206001600160e01b031960e084901b168252612541918c908c908c908c9060040161548a565b602060405180830381865afa15801561255c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612580919061524b565b93508989856125a457604051632f9f8ab960e01b8152600401610bfb9291906153c3565b50506125af8b613cc5565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b6040516125e594939291906154c2565b60405180910390a28a5f516020615ad85f395f51905f526004600560405161260e929190615266565b60405180910390a2505050979650505050505050565b61262c613916565b80515f5b8181101561268b576001600b84838151811061264e5761264e614f7f565b60200260200101516040516126639190615281565b908152604051908190036020019020805491151560ff19909216919091179055600101612630565b507f027b83cad653f54850fef6faa8c705f73a53e7f8de50a3a33ac1e0e3a5c0be8182604051611c729190615297565b5f546001600160a01b03163314806126dd57506003546001600160a01b031633145b6126fa57604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156127105750600d60ff821611155b6127555760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610bfb565b612773828260ff16600d81111561276e5761276e614883565b614131565b5050565b61277f613916565b6001600160a01b0381166127d55760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610bfb565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b03163314612849576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b158015612893575f5ffd5b505af11580156128a5573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee54282604051611dfa91815260200190565b6128e3613916565b6001600160a01b0381161580159061291457505f828152600960205260409020546001600160a01b03828116911614155b8290612936576040516381c4951960e01b8152600401610bfb91815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb699101611c72565b612996613916565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610d23565b6129d3613916565b6127106129e86101208301610100840161550d565b61ffff161115612a006101208301610100840161550d565b90612a25576040516301027fc160e21b815261ffff9091166004820152602401610bfb565b50612710612a3b6101408301610120840161550d565b61ffff161115612a536101408301610120840161550d565b90612a78576040516301027fc160e21b815261ffff9091166004820152602401610bfb565b50612710612a8e6101608301610140840161550d565b61ffff161115612aa66101608301610140840161550d565b90612acb57604051633239953960e01b815261ffff9091166004820152602401610bfb565b50612710612ae16101808301610160840161550d565b61ffff161115612af96101808301610160840161550d565b90612b1e57604051633239953960e01b815261ffff9091166004820152602401610bfb565b50612710612b346101a08301610180840161550d565b61ffff161115612b4c6101a08301610180840161550d565b90612b7157604051633239953960e01b815261ffff9091166004820152602401610bfb565b50612b846101408201610120830161550d565b61ffff161580612bad57505f612ba1610100830160e084016147d9565b6001600160a01b031614155b612bca5760405163015f92ff60e51b815260040160405180910390fd5b612bdc6101e082016101c08301615544565b63ffffffff16612bf46101c083016101a08401615544565b63ffffffff161015612c19576040516392f55c6560e01b815260040160405180910390fd5b806018612c268282615583565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610d239190615741565b5f80601281612c6a6020860186614f66565b6003811115612c7b57612c7b614883565b6003811115612c8c57612c8c614883565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612cb3579050505050505090505f81600160028110612d0a57612d0a614f7f565b602002015163ffffffff1611835f016020810190612d289190614f66565b90612d475760405163286c068d60e11b8152600401610bfb9190614f93565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115612e72576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190612e519190614f66565b90612e705760405163010b971d60e31b8152600401610bfb9190614f93565b505b6101c081015163ffffffff1615612ec1576101c081015184519063ffffffff9081169082161015612ebf57604051630a4b6b6360e11b815263ffffffff9091166004820152602401610bfb565b505b60408601356020870135811015612eee5760405163174b5a0760e21b8152600401610bfb91815260200190565b506101808101516017545f9161271091612f0c9161ffff169061584b565b612f169190615862565b61271061ffff1683610160015161ffff16601560010154612f37919061584b565b612f419190615862565b61271061ffff1684610140015161ffff1660155f0154612f61919061584b565b612f6b9190615862565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015612fb7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fdb91906150db565b612fe59190614fc8565b612fef9190614fb5565b612ff99190614fc8565b6130039190614fc8565b61300d9190614fc8565b90505f61301b600186614fb5565b61302690600261584b565b61303190600261584b565b61303c906006614fc8565b90505f85845f015161304e919061584b565b905081868560200151613061919061584b565b61306b919061584b565b6130759082614fc8565b905060018611156130bd57600261308d600188614fb5565b613097908861584b565b85604001516130a6919061584b565b6130b09190615862565b6130ba9082614fc8565b90505b81868560c001516130ce919061584b565b6130d8919061584b565b6130e29082614fc8565b9050828685606001516130f5919061584b565b6130ff919061584b565b6131099082614fc8565b905084846080015161311b919061584b565b6131259082614fc8565b9050600185111561316d57600261313d600187614fb5565b613147908761584b565b8560400151613156919061584b565b6131609190615862565b61316a9082614fc8565b90505b60a084015161317c9082614fc8565b610100850151909150612710906131979061ffff1682614fc8565b6131a1908361584b565b6131ab9190615862565b975087806131cf57604051638c4fcd9360e01b8152600401610bfb91815260200190565b5050505050505050919050565b6131e4613916565b6001600160a01b0381161580159061320a57506001546001600160a01b03828116911614155b819061322a576040516320252f0b60e01b8152600401610bfb919061481f565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610d2390839061481f565b61327e613916565b61328b6020820182615544565b63ffffffff166132a16040830160208401615544565b63ffffffff16101580156132c657505f6132be6020830183615544565b63ffffffff16115b6132e357604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c08301521561341c576101a081015163ffffffff166133cc6040840160208501615544565b63ffffffff1610156133e46040840160208501615544565b826101a00151909161341957604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610bfb565b50505b6101c081015163ffffffff1615613493576101c081015163ffffffff166134466020840184615544565b63ffffffff16101561345b6020840184615544565b826101c0015190916134905760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610bfb565b50505b8160125f8560038111156134a9576134a9614883565b60038111156134ba576134ba614883565b815260208101919091526040015f206134d49160026144c9565b508260038111156134e7576134e7614883565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa836040516135169190615881565b60405180910390a2505050565b61352b613916565b6001600160a01b038116613554575f604051631e4fbdf760e01b8152600401610bfb919061481f565b610d3f816139b5565b5f818152600d602052604081205460ff168181600681111561358157613581614883565b036135a657826001826040516337e1404160e01b8152600401610bfb939291906152fa565b60058160068111156135ba576135ba614883565b036135db5760405163462c7bed60e01b815260048101849052602401610bfb565b60068160068111156135ef576135ef614883565b0361361057604051633de16e3560e11b815260048101849052602401610bfb565b5f61361b8483613b3d565b935090508061364057604051639f65d93560e01b815260048101859052602401610bfb565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d81111561368957613689614883565b0217905550835f516020615ad85f395f51905f528360066040516136ae929190615266565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb83856040516136e89291906158c1565b60405180910390a25050919050565b6136ff613916565b6001600160a01b0381161580159061372457505f546001600160a01b03828116911614155b8190613744576040516375ac4eb760e11b8152600401610bfb919061481f565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610d2390839061481f565b6001600160a01b0381165f90815260076020526040902054819060ff16156137cb5760405163b29d459560e01b8152600401610bfb919061481f565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610d2390839061481f565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b61385061428c565b610d3f816142b1565b80356138785760405163055f269d60e01b815260040160405180910390fd5b5f81602001351161389c5760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138c05760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610d23565b3361391f611efa565b6001600160a01b031614611be4573360405163118cdaa760e01b8152600401610bfb919061481f565b6040516001600160a01b0384811660248301528381166044830152606482018390526139af9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506142b9565b50505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d811115613a4d57613a4d614883565b1480613a6a5750600281600d811115613a6857613a68614883565b145b15613aa2575f5b604051908082528060200260200182016040528015613a9a578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613b0857506040513d5f823e601f3d908101601f19168201604052613b059190810190615937565b60015b613a9a575f613a71565b613b3883846001600160a01b031663a9059cbb858560405160240161397d9291906159fc565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613bb7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bdb91906150db565b90506001856006811115613bf157613bf1614883565b148015613bfd57508042115b15613c1057600180935093505050613cbe565b6002856006811115613c2457613c24614883565b148015613c315750815142115b15613c455760016003935093505050613cbe565b6003856006811115613c5957613c59614883565b148015613c695750816020015142115b15613c7d5760016006935093505050613cbe565b6004856006811115613c9157613c91614883565b148015613ca15750816040015142115b15613cb5576001600a935093505050613cbe565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613d0a573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d319190810190615937565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613dd0576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d9c90889088908690600401615a15565b5f604051808303815f87803b158015613db3575f5ffd5b505af1158015613dc5573d5f5f3e3d5ffd5b505050505050505050565b825f03613e71575f858152601060205260409020546001600160a01b03168015613e0857613e086001600160a01b0383168285613b12565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e3c90899089908790600401615a15565b5f604051808303815f87803b158015613e53575f5ffd5b505af1158015613e65573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613eb157506001600160a01b03811615155b15613eed57612710613ec761ffff84168761584b565b613ed19190615862565b92508215613eed57613eed6001600160a01b0385168285613b12565b5f613ef88487614fb5565b90505f876001600160401b03811115613f1357613f136145cb565b604051908082528060200260200182016040528015613f3c578160200160208202803683370190505b5090505f613f4a8984615862565b90505f805b8a811015613f895782848281518110613f6a57613f6a614f7f565b6020908102919091010152613f7f8383614fc8565b9150600101613f4f565b505f613f958286614fb5565b90508015613fd2578084613faa60018e614fb5565b81518110613fba57613fba614f7f565b60200260200101818151613fce9190614fc8565b9052505b600154613fec906001600160a01b038b811691168761431c565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b815260040161403093929190615a75565b5f604051808303815f87803b158015614047575f5ffd5b505af1158015614059573d5f5f3e3d5ffd5b505060015461407792506001600160a01b038c81169250165f61431c565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d866040516140a9929190615aaa565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b81526004016140f593929190615a15565b5f604051808303815f87803b15801561410c575f5ffd5b505af115801561411e573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff169081600681111561415557614155614883565b0361417a57826001826040516337e1404160e01b8152600401610bfb939291906152fa565b600581600681111561418e5761418e614883565b036141af5760405163462c7bed60e01b815260048101849052602401610bfb565b60068160068111156141c3576141c3614883565b036141e457604051633de16e3560e11b815260048101849052602401610bfb565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561422d5761422d614883565b0217905550825f516020615ad85f395f51905f52826006604051614252929190615266565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb82846040516135169291906158c1565b6142946143ac565b611be457604051631afcd79f60e31b815260040160405180910390fd5b61352b61428c565b5f5f60205f8451602086015f885af1806142d8576040513d5f823e3d81fd5b50505f513d915081156142ef5780600114156142fc565b6001600160a01b0384163b155b156139af5783604051635274afe760e01b8152600401610bfb919061481f565b5f836001600160a01b031663095ea7b3848460405160240161433f9291906159fc565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050905061437884826143c5565b6139af576143a284856001600160a01b031663095ea7b3865f60405160240161397d9291906159fc565b6139af84826142b9565b5f6143b561381e565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f519050828015614404575081156143f65780600114614404565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f8152602001614436614565565b81525f602082018190526040820181905260608083018190526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b82600281019282156144b9579160200282015b828111156144b957825182559160200191906001019061449e565b506144c5929150614583565b5090565b6001830191839082156144b9579160200282015f5b8382111561452857833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144de565b80156145585782816101000a81549063ffffffff0219169055600401602081600301049283019260010302614528565b50506144c5929150614583565b60405180604001604052806002906020820280368337509192915050565b5b808211156144c5575f8155600101614584565b6001600160a01b0381168114610d3f575f5ffd5b80356145b681614597565b919050565b5f60608284031215611263575f5ffd5b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715614607576146076145cb565b604052919050565b5f6001600160401b03821115614627576146276145cb565b5060051b60200190565b5f82601f830112614640575f5ffd5b81356001600160401b03811115614659576146596145cb565b61466c601f8201601f19166020016145df565b818152846020838601011115614680575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f82601f8301126146ab575f5ffd5b81356146be6146b98261460f565b6145df565b8082825260208201915060208360051b8601019250858311156146df575f5ffd5b602085015b8381101561471f5780356001600160401b03811115614701575f5ffd5b614710886020838a0101614631565b845250602092830192016146e4565b5095945050505050565b5f5f5f5f5f5f5f5f610140898b031215614741575f5ffd5b883561474c81614597565b9750602089013561475c81614597565b9650604089013561476c81614597565b9550606089013561477c81614597565b9450608089013561478c81614597565b935060a089013592506147a28a60c08b016145bb565b91506101208901356001600160401b038111156147bd575f5ffd5b6147c98b828c0161469c565b9150509295985092959890939650565b5f602082840312156147e9575f5ffd5b81356147f481614597565b9392505050565b5f6020828403121561480b575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b8035600481106145b6575f5ffd5b5f5f60408385031215614852575f5ffd5b61485b83614833565b946020939093013593505050565b5f60608284031215614879575f5ffd5b6147f483836145bb565b634e487b7160e01b5f52602160045260245ffd5b600e81106148a7576148a7614883565b9052565b602081016138428284614897565b600481106148a7576148a7614883565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e8152614907602082018f6148b9565b8c60408201528b6060820152614920608082018c614812565b6101c060a08201525f6149376101c083018c6148c9565b82810360c0840152614949818c6148c9565b905061495860e084018b614812565b61496661010084018a614812565b876101208401528661014084015282810361016084015261498781876148c9565b915050614998610180830185614812565b8215156101a08301529f9e505050505050505050505050505050565b805f5b60028110156139af5781518452602093840193909101906001016149b7565b805182525f60208201516149ed60208501826148b9565b50604082015160408401526060820151614a0a60608501826149b4565b50608082015160a084015260a0820151614a2760c0850182614812565b5060c082015161020060e0850152614a436102008501826148c9565b905060e0830151848203610100860152614a5d82826148c9565b915050610100830151614a74610120860182614812565b50610120830151614a89610140860182614812565b506101408301516101608501526101608301516101808501526101808301518482036101a0860152614abb82826148c9565b9150506101a0830151614ad26101c0860182614812565b506101c08301518015156101e0860152613a9a565b602081525f6147f460208301846149d6565b5f60208284031215614b09575f5ffd5b81356001600160401b03811115614b1e575f5ffd5b614b2a84828501614631565b949350505050565b5f60208284031215614b42575f5ffd5b81356001600160401b03811115614b57575f5ffd5b820161010081850312156147f4575f5ffd5b828152604060208201525f614b2a60408301846149d6565b5f60208284031215614b91575f5ffd5b81356001600160401b03811115614ba6575f5ffd5b614b2a8482850161469c565b5f5f60408385031215614bc3575f5ffd5b823591506020830135614bd581614597565b809150509250929050565b5f5f60408385031215614bf1575f5ffd5b50508035926020909101359150565b81518152602080830151908201526040808301519082015260608101613842565b8215158152604081016147f46020830184614897565b5f5f83601f840112614c47575f5ffd5b5081356001600160401b03811115614c5d575f5ffd5b602083019150836020828501011115613cbe575f5ffd5b5f5f5f5f5f60608688031215614c88575f5ffd5b8535945060208601356001600160401b03811115614ca4575f5ffd5b614cb088828901614c37565b90955093505060408601356001600160401b03811115614cce575f5ffd5b614cda88828901614c37565b969995985093965092949392505050565b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614d4560e0840182614812565b50610100830151614d5d61010084018261ffff169052565b50610120830151614d7561012084018261ffff169052565b50610140830151614d8d61014084018261ffff169052565b50610160830151614da561016084018261ffff169052565b50610180830151614dbd61018084018261ffff169052565b506101a0830151614dd76101a084018263ffffffff169052565b506101c0830151614df16101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614e0e575f5ffd5b8735965060208801356001600160401b03811115614e2a575f5ffd5b614e368a828b01614c37565b90975095505060408801356001600160401b03811115614e54575f5ffd5b614e608a828b01614c37565b90955093505060608801356001600160401b03811115614e7e575f5ffd5b614e8a8a828b01614c37565b989b979a50959850939692959293505050565b5f5f60408385031215614eae575f5ffd5b82359150602083013560ff81168114614bd5575f5ffd5b600781106148a7576148a7614883565b602081016138428284614ec5565b5f6101e0828403128015614ef5575f5ffd5b509092915050565b5f5f60608385031215614f0e575f5ffd5b614f1783614833565b915083606084011115614f28575f5ffd5b50926020919091019150565b600181811c90821680614f4857607f821691505b60208210810361126357634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614f76575f5ffd5b6147f482614833565b634e487b7160e01b5f52603260045260245ffd5b6020810161384282846148b9565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561384257613842614fa1565b8082018082111561384257613842614fa1565b5f60018201614fec57614fec614fa1565b5060010190565b5f5f8335601e19843603018112615008575f5ffd5b8301803591506001600160401b03821115615021575f5ffd5b602001915036819003821315613cbe575f5ffd5b8015158114610d3f575f5ffd5b5f60208284031215615052575f5ffd5b81356147f481615035565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b88815287602082015260a060408201525f6150a460a08301888a61505d565b82810360608401526150b781878961505d565b905082810360808401526150cc81858761505d565b9b9a5050505050505050505050565b5f602082840312156150eb575f5ffd5b5051919050565b601f821115613b3857805f5260205f20601f840160051c810160208510156151175750805b601f840160051c820191505b81811015615136575f8155600101615123565b5050505050565b5f19600383901b1c191660019190911b1790565b81516001600160401b0381111561516a5761516a6145cb565b61517e816151788454614f34565b846150f2565b6020601f8211600181146151ab575f83156151995750848201515b6151a3848261513d565b855550615136565b5f84815260208120601f198516915b828110156151da57878501518255602094850194600190920191016151ba565b50848210156151f757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561524057815163ffffffff1683526020928301929091019060010161521b565b505050949350505050565b5f6020828403121561525b575f5ffd5b81516147f481615035565b604081016152748285614ec5565b6147f46020830184614ec5565b5f82518060208501845e5f920191825250919050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b828110156152ee57603f198786030184526152d98583516148c9565b945060209384019391909101906001016152bd565b50929695505050505050565b8381526060810161530e6020830185614ec5565b614b2a6040830184614ec5565b5f8151808452602084019350602083015f5b828110156153545781516001600160a01b031686526020958601959091019060010161532d565b5093949350505050565b848152836020820152608060408201525f61537c608083018561531b565b905060018060a01b038316606083015295945050505050565b818382375f9101908152919050565b848152836020820152606060408201525f61440460608301848661505d565b602081525f614b2a60208301848661505d565b6001600160401b038311156153ed576153ed6145cb565b615401836153fb8354614f34565b836150f2565b5f601f84116001811461542d575f851561541b5750838201355b615425868261513d565b845550615136565b5f83815260208120601f198716915b8281101561545c578685013582556020948501946001909201910161543c565b5086821015615478575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b858152606060208201525f6154a360608301868861505d565b82810360408401526154b681858761505d565b98975050505050505050565b604081525f6154d560408301868861505d565b82810360208401526154e881858761505d565b979650505050505050565b61ffff81168114610d3f575f5ffd5b80356145b6816154f3565b5f6020828403121561551d575f5ffd5b81356147f4816154f3565b63ffffffff81168114610d3f575f5ffd5b80356145b681615528565b5f60208284031215615554575f5ffd5b81356147f481615528565b5f813561384281614597565b5f8135613842816154f3565b5f813561384281615528565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c08201356006820155600781016155f36155d660e0850161555f565b82546001600160a01b0319166001600160a01b0391909116178255565b615623615603610100850161556b565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b615653615633610120850161556b565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b615683615663610140850161556b565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b6156b3615693610160850161556b565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6156e36156c3610180850161556b565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b506008810161570f6156f86101a08501615577565b825463ffffffff191663ffffffff91909116178255565b613b3861571f6101c08501615577565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e0810161579260e084016145ab565b61579f60e0840182614812565b506157ad6101008401615502565b61ffff166101008301526157c46101208401615502565b61ffff166101208301526157db6101408401615502565b61ffff166101408301526157f26101608401615502565b61ffff166101608301526158096101808401615502565b61ffff166101808301526158206101a08401615539565b63ffffffff166101a08301526158396101c08401615539565b63ffffffff81166101c0840152614df1565b808202811582820484141761384257613842614fa1565b5f8261587c57634e487b7160e01b5f52601260045260245ffd5b500490565b6040810181835f5b60028110156158b857813561589d81615528565b63ffffffff1683526020928301929190910190600101615889565b50505092915050565b604081016158cf8285614ec5565b6147f46020830184614897565b5f82601f8301126158eb575f5ffd5b81516158f96146b98261460f565b8082825260208201915060208360051b86010192508583111561591a575f5ffd5b602085015b8381101561471f57805183526020928301920161591f565b5f5f60408385031215615948575f5ffd5b82516001600160401b0381111561595d575f5ffd5b8301601f8101851361596d575f5ffd5b805161597b6146b98261460f565b8082825260208201915060208360051b85010192508783111561599c575f5ffd5b6020840193505b828410156159c75783516159b681614597565b8252602093840193909101906159a3565b8095505050505060208301516001600160401b038111156159e6575f5ffd5b6159f2858286016158dc565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f615a2d606083018561531b565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b82811015615354578151865260209586019590910190600101615a57565b6001600160a01b03841681526060602082018190525f90615a989083018561531b565b82810360408401526144048185615a45565b604081525f615abc604083018561531b565b8281036020840152615ace8185615a45565b9594505050505056fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", - "deployedBytecode": "0x608060405234801561000f575f5ffd5b50600436106102d9575f3560e01c80639117173c11610182578063cb649617116100e0578063ea71aa571161008f578063ea71aa57146108c0578063f0691cba146108d3578063f2fde38b146108e6578063f81b8ef6146108f9578063fad8e1111461090c578063fbdb32371461091f578063fd2f3d0114610947575f5ffd5b8063cb64961714610829578063cbd1687214610832578063cf0f34c414610845578063cfbdc98d14610858578063d8afed3e14610887578063da16fb2f1461089a578063e59e4695146108ad575f5ffd5b8063ac3d2f421161013c578063ac3d2f4214610780578063b27392d5146107a8578063b68fd1be146107bb578063bb2d1b82146107ce578063bff232c1146107e1578063c1ab0f1f146107f4578063c4ccafa214610807575f5ffd5b80639117173c146105ac57806392312386146105bf578063929a8faf146105d257806399c6679d146105f35780639c8570c81461061b578063a87f4ab91461062e575f5ffd5b80634fc772641161023a5780637cfa9d74116101e95780637cfa9d741461053157806381476ec21461054457806385814243146105575780638da5cb5b1461056a5780638dcdd86b146105725780638e5ce3ad1461058457806390173a4114610597575f5ffd5b80634fc77264146104b357806364226409146104c6578063647846a5146104e75780636db5c8fd146104fa578063715018a61461050357806377868ae41461050b5780637c8c3b4d1461051e575f5ffd5b80631ba72945116102965780631ba72945146103a657806336c5d38a146103b95780634017daf0146103e8578063406ed35c146104155780634147a36014610435578063459d9294146104625780634e92ec63146104a0575f5ffd5b806301d12f1c146102dd57806302a3a9c9146102f25780630ef81b2f1461030557806310bc62811461034357806311bd61d91461036b57806315cce22414610393575b5f5ffd5b6102f06102eb366004614729565b61095a565b005b6102f06103003660046147d9565b610ba1565b61032d6103133660046147fb565b5f908152600960205260409020546001600160a01b031690565b60405161033a919061481f565b60405180910390f35b61032d6103513660046147fb565b60096020525f90815260409020546001600160a01b031681565b61037e610379366004614841565b610c4d565b60405163ffffffff909116815260200161033a565b6102f06103a13660046147d9565b610c89565b6102f06103b4366004614869565b610d2e565b6103db6103c73660046147fb565b5f908152600f602052604090205460ff1690565b60405161033a91906148ab565b6103fb6103f63660046147fb565b610d42565b60405161033a9e9d9c9b9a999897969594939291906148f7565b6104286104233660046147fb565b610f6c565b60405161033a9190614ae7565b6104546104433660046147fb565b600c6020525f908152604090205481565b60405190815260200161033a565b610490610470366004614af9565b8051602081830181018051600b8252928201919093012091525460ff1681565b604051901515815260200161033a565b6102f06104ae3660046147fb565b611269565b6102f06104c13660046147d9565b6112f8565b6104d96104d4366004614b32565b61138b565b60405161033a929190614b69565b60045461032d906001600160a01b031681565b61045460055481565b6102f0611bd3565b6102f0610519366004614b81565b611be6565b6102f061052c366004614bb2565b611c7e565b6102f061053f3660046147fb565b611d07565b6102f0610552366004614be0565b611e06565b60015461032d906001600160a01b031681565b61032d611efa565b5f5461032d906001600160a01b031681565b60035461032d906001600160a01b031681565b61059f611f28565b60405161033a9190614c00565b6102f06105ba3660046147fb565b611f6e565b61059f6105cd3660046147fb565b6120dc565b6105e56105e03660046147fb565b612135565b60405161033a929190614c21565b61032d6106013660046147fb565b5f908152601060205260409020546001600160a01b031690565b610490610629366004614c74565b61215c565b610773604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161033a9190614ceb565b61032d61078e3660046147fb565b5f908152600a60205260409020546001600160a01b031690565b6104906107b6366004614df8565b6123f4565b6102f06107c9366004614b81565b612624565b6102f06107dc366004614e9d565b6126bb565b6102f06107ef3660046147d9565b612777565b6102f0610802366004614be0565b61281e565b6104906108153660046147d9565b60076020525f908152604090205460ff1681565b61045460065481565b6102f0610840366004614bb2565b6128db565b6102f06108533660046147fb565b61298e565b61087a6108663660046147fb565b5f908152600d602052604090205460ff1690565b60405161033a9190614ed5565b6102f0610895366004614ee3565b6129cb565b6104546108a8366004614b32565b612c58565b6102f06108bb3660046147d9565b6131dc565b6102f06108ce366004614efd565b613276565b60025461032d906001600160a01b031681565b6102f06108f43660046147d9565b613523565b6103db6109073660046147fb565b61355d565b6102f061091a3660046147d9565b6136f7565b61032d61092d3660046147fb565b600a6020525f90815260409020546001600160a01b031681565b6102f06109553660046147d9565b61378f565b5f61096361381e565b805490915060ff600160401b82041615906001600160401b03165f811580156109895750825b90505f826001600160401b031660011480156109a45750303b155b9050811580156109b2575080155b156109d05760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156109fa57845460ff60401b1916600160401b1785555b610a0333613848565b610a0c8861298e565b610a158c6136f7565b610a1e8b6131dc565b610a278a610ba1565b610a3089610c89565b610a3987613859565b610a4286612624565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff19169055610b2b611efa565b6001600160a01b03168d6001600160a01b031614610b4c57610b4c8d613523565b8315610b9257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050505050505050565b610ba9613916565b6001600160a01b038116610c045760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f208160028110610c66575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610c91613916565b6001600160a01b03811615801590610cb757506004546001600160a01b03828116911614155b8190610cd75760405163eddf07f560e01b8152600401610bfb919061481f565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610d2390839061481f565b60405180910390a150565b610d36613916565b610d3f81613859565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff90951695939492936001600160a01b039092169291610d8d90614f34565b80601f0160208091040260200160405190810160405280929190818152602001828054610db990614f34565b8015610e045780601f10610ddb57610100808354040283529160200191610e04565b820191905f5260205f20905b815481529060010190602001808311610de757829003601f168201915b505050505090806008018054610e1990614f34565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4590614f34565b8015610e905780601f10610e6757610100808354040283529160200191610e90565b820191905f5260205f20905b815481529060010190602001808311610e7357829003601f168201915b5050506009840154600a850154600b860154600c870154600d8801805497986001600160a01b03958616989490951696509194509291610ecf90614f34565b80601f0160208091040260200160405190810160405280929190818152602001828054610efb90614f34565b8015610f465780601f10610f1d57610100808354040283529160200191610f46565b820191905f5260205f20905b815481529060010190602001808311610f2957829003601f168201915b505050600e90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610f7461440e565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610fb157610fb1614883565b6003811115610fc257610fc2614883565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610fe75750505091835250506005820154602082015260068201546001600160a01b0316604082015260078201805460609092019161103490614f34565b80601f016020809104026020016040519081016040528092919081815260200182805461106090614f34565b80156110ab5780601f10611082576101008083540402835291602001916110ab565b820191905f5260205f20905b81548152906001019060200180831161108e57829003601f168201915b505050505081526020016008820180546110c490614f34565b80601f01602080910402602001604051908101604052809291908181526020018280546110f090614f34565b801561113b5780601f106111125761010080835404028352916020019161113b565b820191905f5260205f20905b81548152906001019060200180831161111e57829003601f168201915b505050918352505060098201546001600160a01b039081166020830152600a830154166040820152600b8201546060820152600c8201546080820152600d8201805460a09092019161118c90614f34565b80601f01602080910402602001604051908101604052809291908181526020018280546111b890614f34565b80156112035780601f106111da57610100808354040283529160200191611203565b820191905f5260205f20905b8154815290600101906020018083116111e657829003601f168201915b5050509183525050600e91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a08201519192508391166112635760405163cd6f4a4f60e01b8152600401610bfb91815260200190565b50919050565b611271613916565b5f8181526009602052604090205481906001600160a01b03166112aa576040516381c4951960e01b8152600401610bfb91815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610d239083815260200190565b611300613916565b6001600160a01b0381165f90815260076020526040902054819060ff1661133b576040516321ac7c5f60e01b8152600401610bfb919061481f565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610d2390839061481f565b5f61139461440e565b5f6012816113a56020870187614f66565b60038111156113b6576113b6614883565b60038111156113c7576113c7614883565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116113ee579050505050505090505f8160016002811061144557611445614f7f565b602002015163ffffffff1611845f0160208101906114639190614f66565b906114825760405163286c068d60e11b8152600401610bfb9190614f93565b506020840135428110156114ac57604051630b99e87960e01b8152600401610bfb91815260200190565b50604084013560208501358110156114da5760405163174b5a0760e21b8152600401610bfb91815260200190565b506017546016545f91906114f2426040890135614fb5565b6114fc9190614fc8565b6115069190614fc8565b90506005548110819061152f576040516313b783af60e21b8152600401610bfb91815260200190565b5060075f61154360808801606089016147d9565b6001600160a01b0316815260208101919091526040015f205460ff1661156f60808701606088016147d9565b9061158e5760405163295a6a6f60e11b8152600401610bfb919061481f565b505f61159986612c58565b60068054965090915085905f6115ae83614fdb565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff1916600117905560109094528290208054339416939093179092556016549192506116899190890135614fc8565b5f878152600e60209081526040909120600101919091558186526116af90880188614f66565b856020019060038111156116c5576116c5614883565b908160038111156116d8576116d8614883565b905250436040808701919091528051808201825290602089019060029083908390808284375f92019190915250505060608087019190915261172090608089019089016147d9565b6001600160a01b031660a086015261173b6080880188614ff3565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060c08087019190915261178390880188614ff3565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526117d0906101008901908901615042565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a08601819052600454611820916001600160a01b03909116903085613948565b5f6118316080890160608a016147d9565b6001600160a01b031663fefd9a8b888461184e60808d018d614ff3565b61185b60a08f018f614ff3565b8f8060c0019061186b9190614ff3565b6040518963ffffffff1660e01b815260040161188e989796959493929190615085565b6020604051808303815f875af11580156118aa573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ce91906150db565b5f818152600960205260409020549091506001600160a01b0316818161190a576040516381c4951960e01b8152600401610bfb91815260200190565b505f828152600a60205260409020546001600160a01b03168281611944576040516381c4951960e01b8152600401610bfb91815260200190565b50608088018390526001600160a01b038083166101008a015281166101208901525f8981526008602090815260409091208951815590890151600180830180548c94939260ff1991909116908360038111156119a2576119a2614883565b0217905550604082015181600201556060820151816003019060026119c892919061448b565b506080820151600582015560a08201516006820180546001600160a01b0319166001600160a01b0390921691909117905560c08201516007820190611a0d9082615151565b5060e08201516008820190611a229082615151565b506101008201516009820180546001600160a01b039283166001600160a01b031991821617909155610120840151600a84018054919093169116179055610140820151600b820155610160820151600c820155610180820151600d820190611a8a9082615151565b506101a0820151600e90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b90611af0908c9088908c90600401615206565b6020604051808303815f875af1158015611b0c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b30919061524b565b611b4d57604051630d8dbe2560e01b815260040160405180910390fd5b611b5d60808b0160608c016147d9565b6001600160a01b03167f5904e83d57e704fba4d92c5617f6b50ae993cd42d78babfcb239d0a6775f30708a8a604051611b97929190614b69565b60405180910390a2885f516020615ad85f395f51905f525f6001604051611bbf929190615266565b60405180910390a250505050505050915091565b611bdb613916565b611be45f6139b5565b565b611bee613916565b80515f5b81811015611c4257600b838281518110611c0e57611c0e614f7f565b6020026020010151604051611c239190615281565b908152604051908190036020019020805460ff19169055600101611bf2565b507fd1b46e030b48add7bc03225cc5a6f403970976b36983f99ec31d535d627fc7db82604051611c729190615297565b60405180910390a15050565b611c86613916565b6001600160a01b03811615801590611cb757505f828152600a60205260409020546001600160a01b03828116911614155b8290611cd9576040516381c4951960e01b8152600401610bfb91815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b03163314611d315760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff166001816006811115611d5657611d56614883565b14611d7b57816001826040516337e1404160e01b8152600401610bfb939291906152fa565b5f828152600d60205260409020805460ff19166002179055601554611da09042614fc8565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f516020615ad85f395f51905f5260016002604051611dfa929190615266565b60405180910390a25050565b5f546001600160a01b03163314611e305760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff166002816006811115611e6057611e60614883565b14611e8557836002826040516337e1404160e01b8152600401610bfb939291906152fa565b5f848152600d6020526040808220805460ff19166003179055600b84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f516020615ad85f395f51905f5260026003604051611eec929190615266565b60405180910390a250505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b611f4960405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff166006816006811115611f9357611f93614883565b148290611fb657604051637cb2d48360e11b8152600401610bfb91815260200190565b505f828152600c60205260409020548281611fe7576040516345ba89d560e11b8152600401610bfb91815260200190565b505f838152600c6020526040812081905561200184613a25565b5f858152601160205260409020546002549192506001600160a01b039081169161202e9183911685613b12565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b6979061206490889087908790879060040161535e565b5f604051808303815f87803b15801561207b575f5ffd5b505af115801561208d573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a073178484516040516120cd929190918252602082015260400190565b60405180910390a25050505050565b6120fd60405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166121528482613b3d565b9250925050915091565b5f5f61216787610f6c565b5f888152600d602052604090205490915060ff16600381600681111561218f5761218f614883565b14886003839091926121b7576040516337e1404160e01b8152600401610bfb939291906152fa565b5050505f888152600e602090815260409182902082516060810184528154815260018201549281018390526002909101549281019290925289904281101561221b576040516308f3034360e31b815260048101929092526024820152604401610bfb565b50506060830151602001518990428111156122525760405163017e35e560e71b815260048101929092526024820152604401610bfb565b505061016083015189901561227d57604051637eb9cea960e11b8152600401610bfb91815260200190565b505f888860405161228f929190615395565b60408051918290039091205f8c815260086020908152838220600c01839055600d905291909120805460ff191660041790556017549091506122d19042614fc8565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf9061231e908d9085908c908c906004016153a4565b6020604051808303815f875af115801561233a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061235e919061524b565b945088888661238257604051632f9f8ab960e01b8152600401610bfb9291906153c3565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a6040516123b69291906153c3565b60405180910390a2895f516020615ad85f395f51905f52600360046040516123df929190615266565b60405180910390a25050505095945050505050565b5f5f6123ff89610f6c565b5f8a8152600d602052604090205490915060ff16600481600681111561242757612427614883565b148a60048390919261244f576040516337e1404160e01b8152600401610bfb939291906152fa565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b90428110156124b2576040516308f3034360e31b815260048101929092526024820152604401610bfb565b50505f8b8152600860205260409020600d016124cf8a8c836153d6565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b604051612513929190615395565b6040519081900381206001600160e01b031960e084901b168252612541918c908c908c908c9060040161548a565b602060405180830381865afa15801561255c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612580919061524b565b93508989856125a457604051632f9f8ab960e01b8152600401610bfb9291906153c3565b50506125af8b613cc5565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b6040516125e594939291906154c2565b60405180910390a28a5f516020615ad85f395f51905f526004600560405161260e929190615266565b60405180910390a2505050979650505050505050565b61262c613916565b80515f5b8181101561268b576001600b84838151811061264e5761264e614f7f565b60200260200101516040516126639190615281565b908152604051908190036020019020805491151560ff19909216919091179055600101612630565b507f027b83cad653f54850fef6faa8c705f73a53e7f8de50a3a33ac1e0e3a5c0be8182604051611c729190615297565b5f546001600160a01b03163314806126dd57506003546001600160a01b031633145b6126fa57604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156127105750600d60ff821611155b6127555760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610bfb565b612773828260ff16600d81111561276e5761276e614883565b614131565b5050565b61277f613916565b6001600160a01b0381166127d55760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610bfb565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b03163314612849576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b158015612893575f5ffd5b505af11580156128a5573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee54282604051611dfa91815260200190565b6128e3613916565b6001600160a01b0381161580159061291457505f828152600960205260409020546001600160a01b03828116911614155b8290612936576040516381c4951960e01b8152600401610bfb91815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb699101611c72565b612996613916565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610d23565b6129d3613916565b6127106129e86101208301610100840161550d565b61ffff161115612a006101208301610100840161550d565b90612a25576040516301027fc160e21b815261ffff9091166004820152602401610bfb565b50612710612a3b6101408301610120840161550d565b61ffff161115612a536101408301610120840161550d565b90612a78576040516301027fc160e21b815261ffff9091166004820152602401610bfb565b50612710612a8e6101608301610140840161550d565b61ffff161115612aa66101608301610140840161550d565b90612acb57604051633239953960e01b815261ffff9091166004820152602401610bfb565b50612710612ae16101808301610160840161550d565b61ffff161115612af96101808301610160840161550d565b90612b1e57604051633239953960e01b815261ffff9091166004820152602401610bfb565b50612710612b346101a08301610180840161550d565b61ffff161115612b4c6101a08301610180840161550d565b90612b7157604051633239953960e01b815261ffff9091166004820152602401610bfb565b50612b846101408201610120830161550d565b61ffff161580612bad57505f612ba1610100830160e084016147d9565b6001600160a01b031614155b612bca5760405163015f92ff60e51b815260040160405180910390fd5b612bdc6101e082016101c08301615544565b63ffffffff16612bf46101c083016101a08401615544565b63ffffffff161015612c19576040516392f55c6560e01b815260040160405180910390fd5b806018612c268282615583565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610d239190615741565b5f80601281612c6a6020860186614f66565b6003811115612c7b57612c7b614883565b6003811115612c8c57612c8c614883565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612cb3579050505050505090505f81600160028110612d0a57612d0a614f7f565b602002015163ffffffff1611835f016020810190612d289190614f66565b90612d475760405163286c068d60e11b8152600401610bfb9190614f93565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115612e72576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190612e519190614f66565b90612e705760405163010b971d60e31b8152600401610bfb9190614f93565b505b6101c081015163ffffffff1615612ec1576101c081015184519063ffffffff9081169082161015612ebf57604051630a4b6b6360e11b815263ffffffff9091166004820152602401610bfb565b505b60408601356020870135811015612eee5760405163174b5a0760e21b8152600401610bfb91815260200190565b506101808101516017545f9161271091612f0c9161ffff169061584b565b612f169190615862565b61271061ffff1683610160015161ffff16601560010154612f37919061584b565b612f419190615862565b61271061ffff1684610140015161ffff1660155f0154612f61919061584b565b612f6b9190615862565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015612fb7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fdb91906150db565b612fe59190614fc8565b612fef9190614fb5565b612ff99190614fc8565b6130039190614fc8565b61300d9190614fc8565b90505f61301b600186614fb5565b61302690600261584b565b61303190600261584b565b61303c906006614fc8565b90505f85845f015161304e919061584b565b905081868560200151613061919061584b565b61306b919061584b565b6130759082614fc8565b905060018611156130bd57600261308d600188614fb5565b613097908861584b565b85604001516130a6919061584b565b6130b09190615862565b6130ba9082614fc8565b90505b81868560c001516130ce919061584b565b6130d8919061584b565b6130e29082614fc8565b9050828685606001516130f5919061584b565b6130ff919061584b565b6131099082614fc8565b905084846080015161311b919061584b565b6131259082614fc8565b9050600185111561316d57600261313d600187614fb5565b613147908761584b565b8560400151613156919061584b565b6131609190615862565b61316a9082614fc8565b90505b60a084015161317c9082614fc8565b610100850151909150612710906131979061ffff1682614fc8565b6131a1908361584b565b6131ab9190615862565b975087806131cf57604051638c4fcd9360e01b8152600401610bfb91815260200190565b5050505050505050919050565b6131e4613916565b6001600160a01b0381161580159061320a57506001546001600160a01b03828116911614155b819061322a576040516320252f0b60e01b8152600401610bfb919061481f565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610d2390839061481f565b61327e613916565b61328b6020820182615544565b63ffffffff166132a16040830160208401615544565b63ffffffff16101580156132c657505f6132be6020830183615544565b63ffffffff16115b6132e357604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c08301521561341c576101a081015163ffffffff166133cc6040840160208501615544565b63ffffffff1610156133e46040840160208501615544565b826101a00151909161341957604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610bfb565b50505b6101c081015163ffffffff1615613493576101c081015163ffffffff166134466020840184615544565b63ffffffff16101561345b6020840184615544565b826101c0015190916134905760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610bfb565b50505b8160125f8560038111156134a9576134a9614883565b60038111156134ba576134ba614883565b815260208101919091526040015f206134d49160026144c9565b508260038111156134e7576134e7614883565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa836040516135169190615881565b60405180910390a2505050565b61352b613916565b6001600160a01b038116613554575f604051631e4fbdf760e01b8152600401610bfb919061481f565b610d3f816139b5565b5f818152600d602052604081205460ff168181600681111561358157613581614883565b036135a657826001826040516337e1404160e01b8152600401610bfb939291906152fa565b60058160068111156135ba576135ba614883565b036135db5760405163462c7bed60e01b815260048101849052602401610bfb565b60068160068111156135ef576135ef614883565b0361361057604051633de16e3560e11b815260048101849052602401610bfb565b5f61361b8483613b3d565b935090508061364057604051639f65d93560e01b815260048101859052602401610bfb565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d81111561368957613689614883565b0217905550835f516020615ad85f395f51905f528360066040516136ae929190615266565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb83856040516136e89291906158c1565b60405180910390a25050919050565b6136ff613916565b6001600160a01b0381161580159061372457505f546001600160a01b03828116911614155b8190613744576040516375ac4eb760e11b8152600401610bfb919061481f565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610d2390839061481f565b6001600160a01b0381165f90815260076020526040902054819060ff16156137cb5760405163b29d459560e01b8152600401610bfb919061481f565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610d2390839061481f565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b61385061428c565b610d3f816142b1565b80356138785760405163055f269d60e01b815260040160405180910390fd5b5f81602001351161389c5760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138c05760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610d23565b3361391f611efa565b6001600160a01b031614611be4573360405163118cdaa760e01b8152600401610bfb919061481f565b6040516001600160a01b0384811660248301528381166044830152606482018390526139af9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506142b9565b50505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d811115613a4d57613a4d614883565b1480613a6a5750600281600d811115613a6857613a68614883565b145b15613aa2575f5b604051908082528060200260200182016040528015613a9a578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613b0857506040513d5f823e601f3d908101601f19168201604052613b059190810190615937565b60015b613a9a575f613a71565b613b3883846001600160a01b031663a9059cbb858560405160240161397d9291906159fc565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613bb7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bdb91906150db565b90506001856006811115613bf157613bf1614883565b148015613bfd57508042115b15613c1057600180935093505050613cbe565b6002856006811115613c2457613c24614883565b148015613c315750815142115b15613c455760016003935093505050613cbe565b6003856006811115613c5957613c59614883565b148015613c695750816020015142115b15613c7d5760016006935093505050613cbe565b6004856006811115613c9157613c91614883565b148015613ca15750816040015142115b15613cb5576001600a935093505050613cbe565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613d0a573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d319190810190615937565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613dd0576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d9c90889088908690600401615a15565b5f604051808303815f87803b158015613db3575f5ffd5b505af1158015613dc5573d5f5f3e3d5ffd5b505050505050505050565b825f03613e71575f858152601060205260409020546001600160a01b03168015613e0857613e086001600160a01b0383168285613b12565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e3c90899089908790600401615a15565b5f604051808303815f87803b158015613e53575f5ffd5b505af1158015613e65573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613eb157506001600160a01b03811615155b15613eed57612710613ec761ffff84168761584b565b613ed19190615862565b92508215613eed57613eed6001600160a01b0385168285613b12565b5f613ef88487614fb5565b90505f876001600160401b03811115613f1357613f136145cb565b604051908082528060200260200182016040528015613f3c578160200160208202803683370190505b5090505f613f4a8984615862565b90505f805b8a811015613f895782848281518110613f6a57613f6a614f7f565b6020908102919091010152613f7f8383614fc8565b9150600101613f4f565b505f613f958286614fb5565b90508015613fd2578084613faa60018e614fb5565b81518110613fba57613fba614f7f565b60200260200101818151613fce9190614fc8565b9052505b600154613fec906001600160a01b038b811691168761431c565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b815260040161403093929190615a75565b5f604051808303815f87803b158015614047575f5ffd5b505af1158015614059573d5f5f3e3d5ffd5b505060015461407792506001600160a01b038c81169250165f61431c565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d866040516140a9929190615aaa565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b81526004016140f593929190615a15565b5f604051808303815f87803b15801561410c575f5ffd5b505af115801561411e573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff169081600681111561415557614155614883565b0361417a57826001826040516337e1404160e01b8152600401610bfb939291906152fa565b600581600681111561418e5761418e614883565b036141af5760405163462c7bed60e01b815260048101849052602401610bfb565b60068160068111156141c3576141c3614883565b036141e457604051633de16e3560e11b815260048101849052602401610bfb565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561422d5761422d614883565b0217905550825f516020615ad85f395f51905f52826006604051614252929190615266565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb82846040516135169291906158c1565b6142946143ac565b611be457604051631afcd79f60e31b815260040160405180910390fd5b61352b61428c565b5f5f60205f8451602086015f885af1806142d8576040513d5f823e3d81fd5b50505f513d915081156142ef5780600114156142fc565b6001600160a01b0384163b155b156139af5783604051635274afe760e01b8152600401610bfb919061481f565b5f836001600160a01b031663095ea7b3848460405160240161433f9291906159fc565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050905061437884826143c5565b6139af576143a284856001600160a01b031663095ea7b3865f60405160240161397d9291906159fc565b6139af84826142b9565b5f6143b561381e565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f519050828015614404575081156143f65780600114614404565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f8152602001614436614565565b81525f602082018190526040820181905260608083018190526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b82600281019282156144b9579160200282015b828111156144b957825182559160200191906001019061449e565b506144c5929150614583565b5090565b6001830191839082156144b9579160200282015f5b8382111561452857833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144de565b80156145585782816101000a81549063ffffffff0219169055600401602081600301049283019260010302614528565b50506144c5929150614583565b60405180604001604052806002906020820280368337509192915050565b5b808211156144c5575f8155600101614584565b6001600160a01b0381168114610d3f575f5ffd5b80356145b681614597565b919050565b5f60608284031215611263575f5ffd5b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715614607576146076145cb565b604052919050565b5f6001600160401b03821115614627576146276145cb565b5060051b60200190565b5f82601f830112614640575f5ffd5b81356001600160401b03811115614659576146596145cb565b61466c601f8201601f19166020016145df565b818152846020838601011115614680575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f82601f8301126146ab575f5ffd5b81356146be6146b98261460f565b6145df565b8082825260208201915060208360051b8601019250858311156146df575f5ffd5b602085015b8381101561471f5780356001600160401b03811115614701575f5ffd5b614710886020838a0101614631565b845250602092830192016146e4565b5095945050505050565b5f5f5f5f5f5f5f5f610140898b031215614741575f5ffd5b883561474c81614597565b9750602089013561475c81614597565b9650604089013561476c81614597565b9550606089013561477c81614597565b9450608089013561478c81614597565b935060a089013592506147a28a60c08b016145bb565b91506101208901356001600160401b038111156147bd575f5ffd5b6147c98b828c0161469c565b9150509295985092959890939650565b5f602082840312156147e9575f5ffd5b81356147f481614597565b9392505050565b5f6020828403121561480b575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b8035600481106145b6575f5ffd5b5f5f60408385031215614852575f5ffd5b61485b83614833565b946020939093013593505050565b5f60608284031215614879575f5ffd5b6147f483836145bb565b634e487b7160e01b5f52602160045260245ffd5b600e81106148a7576148a7614883565b9052565b602081016138428284614897565b600481106148a7576148a7614883565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e8152614907602082018f6148b9565b8c60408201528b6060820152614920608082018c614812565b6101c060a08201525f6149376101c083018c6148c9565b82810360c0840152614949818c6148c9565b905061495860e084018b614812565b61496661010084018a614812565b876101208401528661014084015282810361016084015261498781876148c9565b915050614998610180830185614812565b8215156101a08301529f9e505050505050505050505050505050565b805f5b60028110156139af5781518452602093840193909101906001016149b7565b805182525f60208201516149ed60208501826148b9565b50604082015160408401526060820151614a0a60608501826149b4565b50608082015160a084015260a0820151614a2760c0850182614812565b5060c082015161020060e0850152614a436102008501826148c9565b905060e0830151848203610100860152614a5d82826148c9565b915050610100830151614a74610120860182614812565b50610120830151614a89610140860182614812565b506101408301516101608501526101608301516101808501526101808301518482036101a0860152614abb82826148c9565b9150506101a0830151614ad26101c0860182614812565b506101c08301518015156101e0860152613a9a565b602081525f6147f460208301846149d6565b5f60208284031215614b09575f5ffd5b81356001600160401b03811115614b1e575f5ffd5b614b2a84828501614631565b949350505050565b5f60208284031215614b42575f5ffd5b81356001600160401b03811115614b57575f5ffd5b820161010081850312156147f4575f5ffd5b828152604060208201525f614b2a60408301846149d6565b5f60208284031215614b91575f5ffd5b81356001600160401b03811115614ba6575f5ffd5b614b2a8482850161469c565b5f5f60408385031215614bc3575f5ffd5b823591506020830135614bd581614597565b809150509250929050565b5f5f60408385031215614bf1575f5ffd5b50508035926020909101359150565b81518152602080830151908201526040808301519082015260608101613842565b8215158152604081016147f46020830184614897565b5f5f83601f840112614c47575f5ffd5b5081356001600160401b03811115614c5d575f5ffd5b602083019150836020828501011115613cbe575f5ffd5b5f5f5f5f5f60608688031215614c88575f5ffd5b8535945060208601356001600160401b03811115614ca4575f5ffd5b614cb088828901614c37565b90955093505060408601356001600160401b03811115614cce575f5ffd5b614cda88828901614c37565b969995985093965092949392505050565b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614d4560e0840182614812565b50610100830151614d5d61010084018261ffff169052565b50610120830151614d7561012084018261ffff169052565b50610140830151614d8d61014084018261ffff169052565b50610160830151614da561016084018261ffff169052565b50610180830151614dbd61018084018261ffff169052565b506101a0830151614dd76101a084018263ffffffff169052565b506101c0830151614df16101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614e0e575f5ffd5b8735965060208801356001600160401b03811115614e2a575f5ffd5b614e368a828b01614c37565b90975095505060408801356001600160401b03811115614e54575f5ffd5b614e608a828b01614c37565b90955093505060608801356001600160401b03811115614e7e575f5ffd5b614e8a8a828b01614c37565b989b979a50959850939692959293505050565b5f5f60408385031215614eae575f5ffd5b82359150602083013560ff81168114614bd5575f5ffd5b600781106148a7576148a7614883565b602081016138428284614ec5565b5f6101e0828403128015614ef5575f5ffd5b509092915050565b5f5f60608385031215614f0e575f5ffd5b614f1783614833565b915083606084011115614f28575f5ffd5b50926020919091019150565b600181811c90821680614f4857607f821691505b60208210810361126357634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614f76575f5ffd5b6147f482614833565b634e487b7160e01b5f52603260045260245ffd5b6020810161384282846148b9565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561384257613842614fa1565b8082018082111561384257613842614fa1565b5f60018201614fec57614fec614fa1565b5060010190565b5f5f8335601e19843603018112615008575f5ffd5b8301803591506001600160401b03821115615021575f5ffd5b602001915036819003821315613cbe575f5ffd5b8015158114610d3f575f5ffd5b5f60208284031215615052575f5ffd5b81356147f481615035565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b88815287602082015260a060408201525f6150a460a08301888a61505d565b82810360608401526150b781878961505d565b905082810360808401526150cc81858761505d565b9b9a5050505050505050505050565b5f602082840312156150eb575f5ffd5b5051919050565b601f821115613b3857805f5260205f20601f840160051c810160208510156151175750805b601f840160051c820191505b81811015615136575f8155600101615123565b5050505050565b5f19600383901b1c191660019190911b1790565b81516001600160401b0381111561516a5761516a6145cb565b61517e816151788454614f34565b846150f2565b6020601f8211600181146151ab575f83156151995750848201515b6151a3848261513d565b855550615136565b5f84815260208120601f198516915b828110156151da57878501518255602094850194600190920191016151ba565b50848210156151f757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561524057815163ffffffff1683526020928301929091019060010161521b565b505050949350505050565b5f6020828403121561525b575f5ffd5b81516147f481615035565b604081016152748285614ec5565b6147f46020830184614ec5565b5f82518060208501845e5f920191825250919050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b828110156152ee57603f198786030184526152d98583516148c9565b945060209384019391909101906001016152bd565b50929695505050505050565b8381526060810161530e6020830185614ec5565b614b2a6040830184614ec5565b5f8151808452602084019350602083015f5b828110156153545781516001600160a01b031686526020958601959091019060010161532d565b5093949350505050565b848152836020820152608060408201525f61537c608083018561531b565b905060018060a01b038316606083015295945050505050565b818382375f9101908152919050565b848152836020820152606060408201525f61440460608301848661505d565b602081525f614b2a60208301848661505d565b6001600160401b038311156153ed576153ed6145cb565b615401836153fb8354614f34565b836150f2565b5f601f84116001811461542d575f851561541b5750838201355b615425868261513d565b845550615136565b5f83815260208120601f198716915b8281101561545c578685013582556020948501946001909201910161543c565b5086821015615478575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b858152606060208201525f6154a360608301868861505d565b82810360408401526154b681858761505d565b98975050505050505050565b604081525f6154d560408301868861505d565b82810360208401526154e881858761505d565b979650505050505050565b61ffff81168114610d3f575f5ffd5b80356145b6816154f3565b5f6020828403121561551d575f5ffd5b81356147f4816154f3565b63ffffffff81168114610d3f575f5ffd5b80356145b681615528565b5f60208284031215615554575f5ffd5b81356147f481615528565b5f813561384281614597565b5f8135613842816154f3565b5f813561384281615528565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c08201356006820155600781016155f36155d660e0850161555f565b82546001600160a01b0319166001600160a01b0391909116178255565b615623615603610100850161556b565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b615653615633610120850161556b565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b615683615663610140850161556b565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b6156b3615693610160850161556b565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6156e36156c3610180850161556b565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b506008810161570f6156f86101a08501615577565b825463ffffffff191663ffffffff91909116178255565b613b3861571f6101c08501615577565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e0810161579260e084016145ab565b61579f60e0840182614812565b506157ad6101008401615502565b61ffff166101008301526157c46101208401615502565b61ffff166101208301526157db6101408401615502565b61ffff166101408301526157f26101608401615502565b61ffff166101608301526158096101808401615502565b61ffff166101808301526158206101a08401615539565b63ffffffff166101a08301526158396101c08401615539565b63ffffffff81166101c0840152614df1565b808202811582820484141761384257613842614fa1565b5f8261587c57634e487b7160e01b5f52601260045260245ffd5b500490565b6040810181835f5b60028110156158b857813561589d81615528565b63ffffffff1683526020928301929190910190600101615889565b50505092915050565b604081016158cf8285614ec5565b6147f46020830184614897565b5f82601f8301126158eb575f5ffd5b81516158f96146b98261460f565b8082825260208201915060208360051b86010192508583111561591a575f5ffd5b602085015b8381101561471f57805183526020928301920161591f565b5f5f60408385031215615948575f5ffd5b82516001600160401b0381111561595d575f5ffd5b8301601f8101851361596d575f5ffd5b805161597b6146b98261460f565b8082825260208201915060208360051b85010192508783111561599c575f5ffd5b6020840193505b828410156159c75783516159b681614597565b8252602093840193909101906159a3565b8095505050505060208301516001600160401b038111156159e6575f5ffd5b6159f2858286016158dc565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f615a2d606083018561531b565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b82811015615354578151865260209586019590910190600101615a57565b6001600160a01b03841681526060602082018190525f90615a989083018561531b565b82810360408401526144048185615a45565b604081525f615abc604083018561531b565b8281036020840152615ace8185615a45565b9594505050505056fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", + "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615948806100d65f395ff3fe608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e03660046145eb565b61092e565b005b61030f6102f5366004614606565b5f908152600960205260409020546001600160a01b031690565b60405161031c919061462a565b60405180910390f35b61030f610333366004614606565b60096020525f90815260409020546001600160a01b031681565b61036061035b366004614651565b6109da565b60405163ffffffff909116815260200161031c565b6102e56103833660046145eb565b610a16565b6102e5610396366004614689565b610abb565b6103bd6103a9366004614606565b5f908152600f602052604090205460ff1690565b60405161031c91906146cb565b6103dd6103d8366004614606565b610acf565b60405161031c9e9d9c9b9a99989796959493929190614727565b61040a610405366004614606565b610c7a565b60405161031c9190614909565b610436610425366004614606565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e5610452366004614926565b610f19565b6102e5610465366004614606565b611156565b6102e56104783660046145eb565b6111e5565b61049061048b3660046149ba565b611278565b60405161031c91906149d3565b60045461030f906001600160a01b031681565b61043660055481565b6102e561130f565b6102e56104cf3660046149e5565b611322565b6102e56104e2366004614606565b6113ab565b6102e56104f5366004614a13565b6114aa565b6102e5610508366004614a70565b61159e565b60015461030f906001600160a01b031681565b61030f611665565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b610555611693565b60405161031c9190614abe565b6102e5610570366004614606565b6116d9565b610555610583366004614606565b611847565b61059b610596366004614606565b6118a0565b60405161031c929190614adf565b61030f6105b7366004614606565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614af5565b6118c7565b604051901515815260200161031c565b610436610602366004614b6c565b611b5f565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614ba3565b61030f610767366004614606565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614cb0565b6120e3565b6102e56107a2366004614d55565b612313565b6102e56107b53660046145eb565b6123cf565b6102e56107c8366004614a13565b612476565b6105e46107db3660046145eb565b60076020525f908152604090205460ff1681565b61043660065481565b6102e56108063660046149e5565b612533565b6102e5610819366004614606565b6125ed565b61084061082c366004614606565b5f908152600d602052604090205460ff1690565b60405161031c9190614d8d565b6102e561085b366004614d9b565b61262a565b6102e561086e3660046145eb565b6128b7565b6102e5610881366004614db5565b612951565b60025461030f906001600160a01b031681565b6102e56108a73660046145eb565b612bfe565b6108bf6108ba366004614b6c565b612c38565b60405161031c929190614dec565b6103bd6108db366004614606565b61359e565b6102e56108ee3660046145eb565b613738565b61030f610901366004614606565b600a6020525f90815260409020546001600160a01b031681565b6102e56109293660046145eb565b6137d0565b61093661385f565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e61385f565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b8152600401610988919061462a565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab090839061462a565b60405180910390a150565b610ac361385f565b610acc81613891565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614e0c565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614e0c565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c82614459565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf6146a3565b6003811115610cd057610cd06146a3565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152606090910190600160a01b900460ff166001811115610d4f57610d4f6146a3565b6001811115610d6057610d606146a3565b8152602001600782018054610d7490614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610da090614e0c565b8015610deb5780601f10610dc257610100808354040283529160200191610deb565b820191905f5260205f20905b815481529060010190602001808311610dce57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e3c90614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6890614e0c565b8015610eb35780601f10610e8a57610100808354040283529160200191610eb3565b820191905f5260205f20905b815481529060010190602001808311610e9657829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610f135760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f2261394e565b805490915060ff600160401b82041615906001600160401b03165f81158015610f485750825b90505f826001600160401b03166001148015610f635750303b155b905081158015610f71575080155b15610f8f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610fb957845460ff60401b1916600160401b1785555b610fc233613978565b610fcb876125ed565b610fd48b613738565b610fdd8a6128b7565b610fe68961092e565b610fef88610a16565b610ff886613891565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110e1611665565b6001600160a01b03168c6001600160a01b031614611102576111028c612bfe565b831561114857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61115e61385f565b5f8181526009602052604090205481906001600160a01b0316611197576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111ed61385f565b6001600160a01b0381165f90815260076020526040902054819060ff16611228576040516321ac7c5f60e01b8152600401610988919061462a565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab090839061462a565b600b6020525f90815260409020805461129090614e0c565b80601f01602080910402602001604051908101604052809291908181526020018280546112bc90614e0c565b80156113075780601f106112de57610100808354040283529160200191611307565b820191905f5260205f20905b8154815290600101906020018083116112ea57829003601f168201915b505050505081565b61131761385f565b6113205f613989565b565b61132a61385f565b6001600160a01b0381161580159061135b57505f828152600a60205260409020546001600160a01b03828116911614155b829061137d576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113d55760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113fa576113fa6146a3565b1461141f57816001826040516337e1404160e01b815260040161098893929190614e3e565b5f828152600d60205260409020805460ff191660021790556015546114449042614e73565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f51602061591c5f395f51905f526001600260405161149e929190614e86565b60405180910390a25050565b5f546001600160a01b031633146114d45760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff166002816006811115611504576115046146a3565b1461152957836002826040516337e1404160e01b815260040161098893929190614e3e565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f51602061591c5f395f51905f5260026003604051611590929190614e86565b60405180910390a250505050565b6115a661385f565b806115e25760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b8181600b5f8660018111156115f9576115f96146a3565b600181111561160a5761160a6146a3565b81526020019081526020015f209182611624929190614f14565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161165893929190614ff0565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6116b460405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff1660068160068111156116fe576116fe6146a3565b14829061172157604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c60205260409020548281611752576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c6020526040812081905561176c846139f9565b5f858152601160205260409020546002549192506001600160a01b03908116916117999183911685613aed565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b697906117cf90889087908790879060040161505c565b5f604051808303815f87803b1580156117e6575f5ffd5b505af11580156117f8573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a07317848451604051611838929190918252602082015260400190565b60405180910390a25050505050565b61186860405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118bd8482613b4a565b9250925050915091565b5f5f6118d287610c7a565b5f888152600d602052604090205490915060ff1660038160068111156118fa576118fa6146a3565b1488600383909192611922576040516337e1404160e01b815260040161098893929190614e3e565b5050505f888152600e6020908152604091829020825160608101845281548152600182015492810183905260029091015492810192909252899042811015611986576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119bd5760405163017e35e560e71b815260048101929092526024820152604401610988565b50506101608301518990156119e857604051637eb9cea960e11b815260040161098891815260200190565b505f88886040516119fa9291906150a7565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff19166004179055601754909150611a3c9042614e73565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611a89908d9085908c908c906004016150b6565b6020604051808303815f875af1158015611aa5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac991906150e2565b9450888886611aed57604051632f9f8ab960e01b81526004016109889291906150fd565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611b219291906150fd565b60405180910390a2895f51602061591c5f395f51905f5260036004604051611b4a929190614e86565b60405180910390a25050505095945050505050565b5f80601281611b716020860186615110565b6003811115611b8257611b826146a3565b6003811115611b9357611b936146a3565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611bba579050505050505090505f81600160028110611c1157611c11615093565b602002015163ffffffff1611835f016020810190611c2f9190615110565b90611c4e5760405163286c068d60e11b81526004016109889190615129565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d79576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d589190615110565b90611d775760405163010b971d60e31b81526004016109889190615129565b505b6101c081015163ffffffff1615611dc8576101c081015184519063ffffffff9081169082161015611dc657604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611df55760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611e139161ffff1690615137565b611e1d919061514e565b61271061ffff1683610160015161ffff16601560010154611e3e9190615137565b611e48919061514e565b61271061ffff1684610140015161ffff1660155f0154611e689190615137565b611e72919061514e565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611ebe573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ee2919061516d565b611eec9190614e73565b611ef69190615184565b611f009190614e73565b611f0a9190614e73565b611f149190614e73565b90505f611f22600186615184565b611f2d906002615137565b611f38906002615137565b611f43906006614e73565b90505f85845f0151611f559190615137565b905081868560200151611f689190615137565b611f729190615137565b611f7c9082614e73565b90506001861115611fc4576002611f94600188615184565b611f9e9088615137565b8560400151611fad9190615137565b611fb7919061514e565b611fc19082614e73565b90505b81868560c00151611fd59190615137565b611fdf9190615137565b611fe99082614e73565b905082868560600151611ffc9190615137565b6120069190615137565b6120109082614e73565b90508484608001516120229190615137565b61202c9082614e73565b90506001851115612074576002612044600187615184565b61204e9087615137565b856040015161205d9190615137565b612067919061514e565b6120719082614e73565b90505b60a08401516120839082614e73565b6101008501519091506127109061209e9061ffff1682614e73565b6120a89083615137565b6120b2919061514e565b975087806120d657604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f6120ee89610c7a565b5f8a8152600d602052604090205490915060ff166004816006811115612116576121166146a3565b148a60048390919261213e576040516337e1404160e01b815260040161098893929190614e3e565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b90428110156121a1576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121be8a8c83614f14565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b6040516122029291906150a7565b6040519081900381206001600160e01b031960e084901b168252612230918c908c908c908c90600401615197565b602060405180830381865afa15801561224b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061226f91906150e2565b935089898561229357604051632f9f8ab960e01b81526004016109889291906150fd565b505061229e8b613cd2565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b6040516122d494939291906151cf565b60405180910390a28a5f51602061591c5f395f51905f52600460056040516122fd929190614e86565b60405180910390a2505050979650505050505050565b5f546001600160a01b031633148061233557506003546001600160a01b031633145b61235257604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156123685750600d60ff821611155b6123ad5760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b6123cb828260ff16600d8111156123c6576123c66146a3565b61413d565b5050565b6123d761385f565b6001600160a01b03811661242d5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b031633146124a1576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b1580156124eb575f5ffd5b505af11580156124fd573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161149e91815260200190565b61253b61385f565b6001600160a01b0381161580159061256c57505f828152600960205260409020546001600160a01b03828116911614155b829061258e576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b6125f561385f565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b61263261385f565b6127106126476101208301610100840161521a565b61ffff16111561265f6101208301610100840161521a565b90612684576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061269a6101408301610120840161521a565b61ffff1611156126b26101408301610120840161521a565b906126d7576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126ed6101608301610140840161521a565b61ffff1611156127056101608301610140840161521a565b9061272a57604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127406101808301610160840161521a565b61ffff1611156127586101808301610160840161521a565b9061277d57604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127936101a08301610180840161521a565b61ffff1611156127ab6101a08301610180840161521a565b906127d057604051633239953960e01b815261ffff9091166004820152602401610988565b506127e36101408201610120830161521a565b61ffff16158061280c57505f612800610100830160e084016145eb565b6001600160a01b031614155b6128295760405163015f92ff60e51b815260040160405180910390fd5b61283b6101e082016101c08301615251565b63ffffffff166128536101c083016101a08401615251565b63ffffffff161015612878576040516392f55c6560e01b815260040160405180910390fd5b8060186128858282615290565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab0919061544e565b6128bf61385f565b6001600160a01b038116158015906128e557506001546001600160a01b03828116911614155b8190612905576040516320252f0b60e01b8152600401610988919061462a565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab090839061462a565b61295961385f565b6129666020820182615251565b63ffffffff1661297c6040830160208401615251565b63ffffffff16101580156129a157505f6129996020830183615251565b63ffffffff16115b6129be57604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612af7576101a081015163ffffffff16612aa76040840160208501615251565b63ffffffff161015612abf6040840160208501615251565b826101a001519091612af457604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b6e576101c081015163ffffffff16612b216020840184615251565b63ffffffff161015612b366020840184615251565b826101c001519091612b6b5760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612b8457612b846146a3565b6003811115612b9557612b956146a3565b815260208101919091526040015f20612baf9160026144d6565b50826003811115612bc257612bc26146a3565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612bf19190615558565b60405180910390a2505050565b612c0661385f565b6001600160a01b038116612c2f575f604051631e4fbdf760e01b8152600401610988919061462a565b610acc81613989565b5f612c41614459565b5f601281612c526020870187615110565b6003811115612c6357612c636146a3565b6003811115612c7457612c746146a3565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612c9b579050505050505090505f81600160028110612cf257612cf2615093565b602002015163ffffffff1611845f016020810190612d109190615110565b90612d2f5760405163286c068d60e11b81526004016109889190615129565b50602084013542811015612d5957604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612d875760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612d9f426040890135615184565b612da99190614e73565b612db39190614e73565b905060055481108190612ddc576040516313b783af60e21b815260040161098891815260200190565b5060075f612df060808801606089016145eb565b6001600160a01b0316815260208101919091526040015f205460ff16612e1c60808701606088016145eb565b90612e3b5760405163295a6a6f60e11b8152600401610988919061462a565b505f612e4686611b5f565b60068054965090915085905f612e5b83615598565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612f369190890135614e73565b5f878152600e6020908152604090912060010191909155818652612f5c90880188615110565b85602001906003811115612f7257612f726146a3565b90816003811115612f8557612f856146a3565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612fcd90608089019089016145eb565b6001600160a01b031660a080870191909152612fee908801608089016149ba565b8560c001906001811115613004576130046146a3565b90816001811115613017576130176146a3565b90525061302760c08801886155b0565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526130749061010089019089016155f2565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a086018190526004546130c4916001600160a01b03909116903085614298565b5f600b816130d860a08b0160808c016149ba565b60018111156130e9576130e96146a3565b60018111156130fa576130fa6146a3565b81526020019081526020015f20805461311290614e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461313e90614e0c565b80156131895780601f1061316057610100808354040283529160200191613189565b820191905f5260205f20905b81548152906001019060200180831161316c57829003601f168201915b505050505090505f8151116131e05760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f6131f160808a0160608b016145eb565b6001600160a01b031663fefd9a8b89858561320f60a08f018f6155b0565b8f8060c0019061321f91906155b0565b6040518863ffffffff1660e01b8152600401613241979695949392919061560d565b6020604051808303815f875af115801561325d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613281919061516d565b5f818152600960205260409020549091506001600160a01b031681816132bd576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b031682816132f7576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff199190911690836003811115613355576133556146a3565b02179055506040820151816002015560608201518160030190600261337b929190614577565b506080820151600582015560a08201516006820180546001600160a01b039092166001600160a01b031983168117825560c0850151926001600160a81b03191617600160a01b8360018111156133d3576133d36146a3565b021790555060e082015160078201906133ec9082615661565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906134549082615661565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b906134ba908d9089908d90600401615716565b6020604051808303815f875af11580156134d6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134fa91906150e2565b61351757604051630d8dbe2560e01b815260040160405180910390fd5b61352760808c0160608d016145eb565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b604051613561929190614dec565b60405180910390a2895f51602061591c5f395f51905f525f6001604051613589929190614e86565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff16818160068111156135c2576135c26146a3565b036135e757826001826040516337e1404160e01b815260040161098893929190614e3e565b60058160068111156135fb576135fb6146a3565b0361361c5760405163462c7bed60e01b815260048101849052602401610988565b6006816006811115613630576136306146a3565b0361365157604051633de16e3560e11b815260048101849052602401610988565b5f61365c8483613b4a565b935090508061368157604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d8111156136ca576136ca6146a3565b0217905550835f51602061591c5f395f51905f528360066040516136ef929190614e86565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb838560405161372992919061575b565b60405180910390a25050919050565b61374061385f565b6001600160a01b0381161580159061376557505f546001600160a01b03828116911614155b8190613785576040516375ac4eb760e11b8152600401610988919061462a565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab090839061462a565b6001600160a01b0381165f90815260076020526040902054819060ff161561380c5760405163b29d459560e01b8152600401610988919061462a565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab090839061462a565b33613868611665565b6001600160a01b031614611320573360405163118cdaa760e01b8152600401610988919061462a565b80356138b05760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138d45760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138f85760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b6139806142d7565b610acc816142fc565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d811115613a2157613a216146a3565b1480613a3e5750600281600d811115613a3c57613a3c6146a3565b145b15613a76575f5b604051908082528060200260200182016040528015613a6e578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613adc57506040513d5f823e601f3d908101601f19168201604052613ad99190810190615781565b60015b613ae6575f613a45565b9392505050565b613b4583846001600160a01b031663a9059cbb8585604051602401613b13929190615849565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614304565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613bc4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613be8919061516d565b90506001856006811115613bfe57613bfe6146a3565b148015613c0a57508042115b15613c1d57600180935093505050613ccb565b6002856006811115613c3157613c316146a3565b148015613c3e5750815142115b15613c525760016003935093505050613ccb565b6003856006811115613c6657613c666146a3565b148015613c765750816020015142115b15613c8a5760016006935093505050613ccb565b6004856006811115613c9e57613c9e6146a3565b148015613cae5750816040015142115b15613cc2576001600a935093505050613ccb565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613d17573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d3e9190810190615781565b80515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613ddc576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613da890889088908690600401615862565b5f604051808303815f87803b158015613dbf575f5ffd5b505af1158015613dd1573d5f5f3e3d5ffd5b505050505050505050565b825f03613e7d575f858152601060205260409020546001600160a01b03168015613e1457613e146001600160a01b0383168285613aed565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e4890899089908790600401615862565b5f604051808303815f87803b158015613e5f575f5ffd5b505af1158015613e71573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613ebd57506001600160a01b03811615155b15613ef957612710613ed361ffff841687615137565b613edd919061514e565b92508215613ef957613ef96001600160a01b0385168285613aed565b5f613f048487615184565b90505f876001600160401b03811115613f1f57613f1f614ea1565b604051908082528060200260200182016040528015613f48578160200160208202803683370190505b5090505f613f56898461514e565b90505f805b8a811015613f955782848281518110613f7657613f76615093565b6020908102919091010152613f8b8383614e73565b9150600101613f5b565b505f613fa18286615184565b90508015613fde578084613fb660018e615184565b81518110613fc657613fc6615093565b60200260200101818151613fda9190614e73565b9052505b600154613ff8906001600160a01b038b8116911687614367565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b815260040161403c939291906158c2565b5f604051808303815f87803b158015614053575f5ffd5b505af1158015614065573d5f5f3e3d5ffd5b505060015461408392506001600160a01b038c81169250165f614367565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d866040516140b59291906158f7565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b815260040161410193929190615862565b5f604051808303815f87803b158015614118575f5ffd5b505af115801561412a573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff1690816006811115614161576141616146a3565b0361418657826001826040516337e1404160e01b815260040161098893929190614e3e565b600581600681111561419a5761419a6146a3565b036141bb5760405163462c7bed60e01b815260048101849052602401610988565b60068160068111156141cf576141cf6146a3565b036141f057604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d811115614239576142396146a3565b0217905550825f51602061591c5f395f51905f5282600660405161425e929190614e86565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612bf192919061575b565b6040516001600160a01b0384811660248301528381166044830152606482018390526142d19186918216906323b872dd90608401613b13565b50505050565b6142df6143f7565b61132057604051631afcd79f60e31b815260040160405180910390fd5b612c066142d7565b5f5f60205f8451602086015f885af180614323576040513d5f823e3d81fd5b50505f513d9150811561433a578060011415614347565b6001600160a01b0384163b155b156142d15783604051635274afe760e01b8152600401610988919061462a565b5f836001600160a01b031663095ea7b3848460405160240161438a929190615849565b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505090506143c38482614410565b6142d1576143ed84856001600160a01b031663095ea7b3865f604051602401613b13929190615849565b6142d18482614304565b5f61440061394e565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f51905082801561444f57508115614441578060011461444f565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f81526020016144816145a5565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b600183019183908215614567579160200282015f5b8382111561453557833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144eb565b80156145655782816101000a81549063ffffffff0219169055600401602081600301049283019260010302614535565b505b506145739291506145c3565b5090565b8260028101928215614567579160200282015b8281111561456757825182559160200191906001019061458a565b60405180604001604052806002906020820280368337509192915050565b5b80821115614573575f81556001016145c4565b6001600160a01b0381168114610acc575f5ffd5b5f602082840312156145fb575f5ffd5b8135613ae6816145d7565b5f60208284031215614616575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b80356004811061464c575f5ffd5b919050565b5f5f60408385031215614662575f5ffd5b61466b8361463e565b946020939093013593505050565b5f60608284031215610f13575f5ffd5b5f60608284031215614699575f5ffd5b613ae68383614679565b634e487b7160e01b5f52602160045260245ffd5b600e81106146c7576146c76146a3565b9052565b6020810161397282846146b7565b600481106146c7576146c76146a3565b600281106146c7576146c76146a3565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e8152614737602082018f6146d9565b8c60408201528b6060820152614750608082018c61461d565b61475d60a082018b6146e9565b6101c060c08201525f6147746101c083018b6146f9565b61478160e084018b61461d565b61478f61010084018a61461d565b87610120840152866101408401528281036101608401526147b081876146f9565b9150506147c161018083018561461d565b8215156101a08301529f9e505050505050505050505050505050565b805f5b60028110156142d15781518452602093840193909101906001016147e0565b805182525f602082015161481660208501826146d9565b5060408201516040840152606082015161483360608501826147dd565b50608082015160a084015260a082015161485060c085018261461d565b5060c082015161486360e08501826146e9565b5060e08201516102006101008501526148806102008501826146f9565b905061010083015161489661012086018261461d565b506101208301516148ab61014086018261461d565b506101408301516101608501526101608301516101808501526101808301518482036101a08601526148dd82826146f9565b9150506101a08301516148f46101c086018261461d565b506101c08301518015156101e0860152613a6e565b602081525f613ae660208301846147ff565b803561464c816145d7565b5f5f5f5f5f5f5f610120888a03121561493d575f5ffd5b8735614948816145d7565b96506020880135614958816145d7565b95506040880135614968816145d7565b94506060880135614978816145d7565b93506080880135614988816145d7565b925060a0880135915061499e8960c08a01614679565b905092959891949750929550565b80356002811061464c575f5ffd5b5f602082840312156149ca575f5ffd5b613ae6826149ac565b602081525f613ae660208301846146f9565b5f5f604083850312156149f6575f5ffd5b823591506020830135614a08816145d7565b809150509250929050565b5f5f60408385031215614a24575f5ffd5b50508035926020909101359150565b5f5f83601f840112614a43575f5ffd5b5081356001600160401b03811115614a59575f5ffd5b602083019150836020828501011115613ccb575f5ffd5b5f5f5f60408486031215614a82575f5ffd5b614a8b846149ac565b925060208401356001600160401b03811115614aa5575f5ffd5b614ab186828701614a33565b9497909650939450505050565b81518152602080830151908201526040808301519082015260608101613972565b821515815260408101613ae660208301846146b7565b5f5f5f5f5f60608688031215614b09575f5ffd5b8535945060208601356001600160401b03811115614b25575f5ffd5b614b3188828901614a33565b90955093505060408601356001600160401b03811115614b4f575f5ffd5b614b5b88828901614a33565b969995985093965092949392505050565b5f60208284031215614b7c575f5ffd5b81356001600160401b03811115614b91575f5ffd5b82016101008185031215613ae6575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614bfd60e084018261461d565b50610100830151614c1561010084018261ffff169052565b50610120830151614c2d61012084018261ffff169052565b50610140830151614c4561014084018261ffff169052565b50610160830151614c5d61016084018261ffff169052565b50610180830151614c7561018084018261ffff169052565b506101a0830151614c8f6101a084018263ffffffff169052565b506101c0830151614ca96101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614cc6575f5ffd5b8735965060208801356001600160401b03811115614ce2575f5ffd5b614cee8a828b01614a33565b90975095505060408801356001600160401b03811115614d0c575f5ffd5b614d188a828b01614a33565b90955093505060608801356001600160401b03811115614d36575f5ffd5b614d428a828b01614a33565b989b979a50959850939692959293505050565b5f5f60408385031215614d66575f5ffd5b82359150602083013560ff81168114614a08575f5ffd5b600781106146c7576146c76146a3565b602081016139728284614d7d565b5f6101e0828403128015614dad575f5ffd5b509092915050565b5f5f60608385031215614dc6575f5ffd5b614dcf8361463e565b915083606084011115614de0575f5ffd5b50926020919091019150565b828152604060208201525f614e0460408301846147ff565b949350505050565b600181811c90821680614e2057607f821691505b602082108103610f1357634e487b7160e01b5f52602260045260245ffd5b83815260608101614e526020830185614d7d565b614e046040830184614d7d565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561397257613972614e5f565b60408101614e948285614d7d565b613ae66020830184614d7d565b634e487b7160e01b5f52604160045260245ffd5b601f821115613b4557805f5260205f20601f840160051c81016020851015614eda5750805b601f840160051c820191505b81811015614ef9575f8155600101614ee6565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614f2b57614f2b614ea1565b614f3f83614f398354614e0c565b83614eb5565b5f601f841160018114614f6b575f8515614f595750838201355b614f638682614f00565b845550614ef9565b5f83815260208120601f198716915b82811015614f9a5786850135825560209485019460019092019101614f7a565b5086821015614fb6575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b614ffa81856146e9565b604060208201525f615010604083018486614fc8565b95945050505050565b5f8151808452602084019350602083015f5b828110156150525781516001600160a01b031686526020958601959091019060010161502b565b5093949350505050565b848152836020820152608060408201525f61507a6080830185615019565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f61444f606083018486614fc8565b8015158114610acc575f5ffd5b5f602082840312156150f2575f5ffd5b8151613ae6816150d5565b602081525f614e04602083018486614fc8565b5f60208284031215615120575f5ffd5b613ae68261463e565b6020810161397282846146d9565b808202811582820484141761397257613972614e5f565b5f8261516857634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561517d575f5ffd5b5051919050565b8181038181111561397257613972614e5f565b858152606060208201525f6151b0606083018688614fc8565b82810360408401526151c3818587614fc8565b98975050505050505050565b604081525f6151e2604083018688614fc8565b82810360208401526151f5818587614fc8565b979650505050505050565b61ffff81168114610acc575f5ffd5b803561464c81615200565b5f6020828403121561522a575f5ffd5b8135613ae681615200565b63ffffffff81168114610acc575f5ffd5b803561464c81615235565b5f60208284031215615261575f5ffd5b8135613ae681615235565b5f8135613972816145d7565b5f813561397281615200565b5f813561397281615235565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c08201356006820155600781016153006152e360e0850161526c565b82546001600160a01b0319166001600160a01b0391909116178255565b6153306153106101008501615278565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6153606153406101208501615278565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b6153906153706101408501615278565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b6153c06153a06101608501615278565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6153f06153d06101808501615278565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b506008810161541c6154056101a08501615284565b825463ffffffff191663ffffffff91909116178255565b613b4561542c6101c08501615284565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e0810161549f60e0840161491b565b6154ac60e084018261461d565b506154ba610100840161520f565b61ffff166101008301526154d1610120840161520f565b61ffff166101208301526154e8610140840161520f565b61ffff166101408301526154ff610160840161520f565b61ffff16610160830152615516610180840161520f565b61ffff1661018083015261552d6101a08401615246565b63ffffffff166101a08301526155466101c08401615246565b63ffffffff81166101c0840152614ca9565b6040810181835f5b600281101561558f57813561557481615235565b63ffffffff1683526020928301929190910190600101615560565b50505092915050565b5f600182016155a9576155a9614e5f565b5060010190565b5f5f8335601e198436030181126155c5575f5ffd5b8301803591506001600160401b038211156155de575f5ffd5b602001915036819003821315613ccb575f5ffd5b5f60208284031215615602575f5ffd5b8135613ae6816150d5565b87815286602082015260a060408201525f61562b60a08301886146f9565b828103606084015261563e818789614fc8565b90508281036080840152615653818587614fc8565b9a9950505050505050505050565b81516001600160401b0381111561567a5761567a614ea1565b61568e816156888454614e0c565b84614eb5565b6020601f8211600181146156bb575f83156156a95750848201515b6156b38482614f00565b855550614ef9565b5f84815260208120601f198516915b828110156156ea57878501518255602094850194600190920191016156ca565b508482101561570757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561575057815163ffffffff1683526020928301929091019060010161572b565b505050949350505050565b604081016157698285614d7d565b613ae660208301846146b7565b805161464c816145d7565b5f60208284031215615791575f5ffd5b81516001600160401b038111156157a6575f5ffd5b8201601f810184136157b6575f5ffd5b80516001600160401b038111156157cf576157cf614ea1565b8060051b604051601f19603f83011681018181106001600160401b03821117156157fb576157fb614ea1565b604052918252602081840181019290810187841115615818575f5ffd5b6020850194505b8385101561583e5761583085615776565b81526020948501940161581f565b509695505050505050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f61587a6060830185615019565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b828110156150525781518652602095860195909101906001016158a4565b6001600160a01b03841681526060602082018190525f906158e590830185615019565b828103604084015261444f8185615892565b604081525f6159096040830185615019565b8281036020840152615010818561589256fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", + "deployedBytecode": "0x608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e03660046145eb565b61092e565b005b61030f6102f5366004614606565b5f908152600960205260409020546001600160a01b031690565b60405161031c919061462a565b60405180910390f35b61030f610333366004614606565b60096020525f90815260409020546001600160a01b031681565b61036061035b366004614651565b6109da565b60405163ffffffff909116815260200161031c565b6102e56103833660046145eb565b610a16565b6102e5610396366004614689565b610abb565b6103bd6103a9366004614606565b5f908152600f602052604090205460ff1690565b60405161031c91906146cb565b6103dd6103d8366004614606565b610acf565b60405161031c9e9d9c9b9a99989796959493929190614727565b61040a610405366004614606565b610c7a565b60405161031c9190614909565b610436610425366004614606565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e5610452366004614926565b610f19565b6102e5610465366004614606565b611156565b6102e56104783660046145eb565b6111e5565b61049061048b3660046149ba565b611278565b60405161031c91906149d3565b60045461030f906001600160a01b031681565b61043660055481565b6102e561130f565b6102e56104cf3660046149e5565b611322565b6102e56104e2366004614606565b6113ab565b6102e56104f5366004614a13565b6114aa565b6102e5610508366004614a70565b61159e565b60015461030f906001600160a01b031681565b61030f611665565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b610555611693565b60405161031c9190614abe565b6102e5610570366004614606565b6116d9565b610555610583366004614606565b611847565b61059b610596366004614606565b6118a0565b60405161031c929190614adf565b61030f6105b7366004614606565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614af5565b6118c7565b604051901515815260200161031c565b610436610602366004614b6c565b611b5f565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614ba3565b61030f610767366004614606565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614cb0565b6120e3565b6102e56107a2366004614d55565b612313565b6102e56107b53660046145eb565b6123cf565b6102e56107c8366004614a13565b612476565b6105e46107db3660046145eb565b60076020525f908152604090205460ff1681565b61043660065481565b6102e56108063660046149e5565b612533565b6102e5610819366004614606565b6125ed565b61084061082c366004614606565b5f908152600d602052604090205460ff1690565b60405161031c9190614d8d565b6102e561085b366004614d9b565b61262a565b6102e561086e3660046145eb565b6128b7565b6102e5610881366004614db5565b612951565b60025461030f906001600160a01b031681565b6102e56108a73660046145eb565b612bfe565b6108bf6108ba366004614b6c565b612c38565b60405161031c929190614dec565b6103bd6108db366004614606565b61359e565b6102e56108ee3660046145eb565b613738565b61030f610901366004614606565b600a6020525f90815260409020546001600160a01b031681565b6102e56109293660046145eb565b6137d0565b61093661385f565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e61385f565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b8152600401610988919061462a565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab090839061462a565b60405180910390a150565b610ac361385f565b610acc81613891565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614e0c565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614e0c565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c82614459565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf6146a3565b6003811115610cd057610cd06146a3565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152606090910190600160a01b900460ff166001811115610d4f57610d4f6146a3565b6001811115610d6057610d606146a3565b8152602001600782018054610d7490614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610da090614e0c565b8015610deb5780601f10610dc257610100808354040283529160200191610deb565b820191905f5260205f20905b815481529060010190602001808311610dce57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e3c90614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6890614e0c565b8015610eb35780601f10610e8a57610100808354040283529160200191610eb3565b820191905f5260205f20905b815481529060010190602001808311610e9657829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610f135760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f2261394e565b805490915060ff600160401b82041615906001600160401b03165f81158015610f485750825b90505f826001600160401b03166001148015610f635750303b155b905081158015610f71575080155b15610f8f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610fb957845460ff60401b1916600160401b1785555b610fc233613978565b610fcb876125ed565b610fd48b613738565b610fdd8a6128b7565b610fe68961092e565b610fef88610a16565b610ff886613891565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110e1611665565b6001600160a01b03168c6001600160a01b031614611102576111028c612bfe565b831561114857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61115e61385f565b5f8181526009602052604090205481906001600160a01b0316611197576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111ed61385f565b6001600160a01b0381165f90815260076020526040902054819060ff16611228576040516321ac7c5f60e01b8152600401610988919061462a565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab090839061462a565b600b6020525f90815260409020805461129090614e0c565b80601f01602080910402602001604051908101604052809291908181526020018280546112bc90614e0c565b80156113075780601f106112de57610100808354040283529160200191611307565b820191905f5260205f20905b8154815290600101906020018083116112ea57829003601f168201915b505050505081565b61131761385f565b6113205f613989565b565b61132a61385f565b6001600160a01b0381161580159061135b57505f828152600a60205260409020546001600160a01b03828116911614155b829061137d576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113d55760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113fa576113fa6146a3565b1461141f57816001826040516337e1404160e01b815260040161098893929190614e3e565b5f828152600d60205260409020805460ff191660021790556015546114449042614e73565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f51602061591c5f395f51905f526001600260405161149e929190614e86565b60405180910390a25050565b5f546001600160a01b031633146114d45760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff166002816006811115611504576115046146a3565b1461152957836002826040516337e1404160e01b815260040161098893929190614e3e565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f51602061591c5f395f51905f5260026003604051611590929190614e86565b60405180910390a250505050565b6115a661385f565b806115e25760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b8181600b5f8660018111156115f9576115f96146a3565b600181111561160a5761160a6146a3565b81526020019081526020015f209182611624929190614f14565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161165893929190614ff0565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6116b460405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff1660068160068111156116fe576116fe6146a3565b14829061172157604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c60205260409020548281611752576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c6020526040812081905561176c846139f9565b5f858152601160205260409020546002549192506001600160a01b03908116916117999183911685613aed565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b697906117cf90889087908790879060040161505c565b5f604051808303815f87803b1580156117e6575f5ffd5b505af11580156117f8573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a07317848451604051611838929190918252602082015260400190565b60405180910390a25050505050565b61186860405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118bd8482613b4a565b9250925050915091565b5f5f6118d287610c7a565b5f888152600d602052604090205490915060ff1660038160068111156118fa576118fa6146a3565b1488600383909192611922576040516337e1404160e01b815260040161098893929190614e3e565b5050505f888152600e6020908152604091829020825160608101845281548152600182015492810183905260029091015492810192909252899042811015611986576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119bd5760405163017e35e560e71b815260048101929092526024820152604401610988565b50506101608301518990156119e857604051637eb9cea960e11b815260040161098891815260200190565b505f88886040516119fa9291906150a7565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff19166004179055601754909150611a3c9042614e73565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611a89908d9085908c908c906004016150b6565b6020604051808303815f875af1158015611aa5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac991906150e2565b9450888886611aed57604051632f9f8ab960e01b81526004016109889291906150fd565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611b219291906150fd565b60405180910390a2895f51602061591c5f395f51905f5260036004604051611b4a929190614e86565b60405180910390a25050505095945050505050565b5f80601281611b716020860186615110565b6003811115611b8257611b826146a3565b6003811115611b9357611b936146a3565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611bba579050505050505090505f81600160028110611c1157611c11615093565b602002015163ffffffff1611835f016020810190611c2f9190615110565b90611c4e5760405163286c068d60e11b81526004016109889190615129565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d79576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d589190615110565b90611d775760405163010b971d60e31b81526004016109889190615129565b505b6101c081015163ffffffff1615611dc8576101c081015184519063ffffffff9081169082161015611dc657604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611df55760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611e139161ffff1690615137565b611e1d919061514e565b61271061ffff1683610160015161ffff16601560010154611e3e9190615137565b611e48919061514e565b61271061ffff1684610140015161ffff1660155f0154611e689190615137565b611e72919061514e565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611ebe573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ee2919061516d565b611eec9190614e73565b611ef69190615184565b611f009190614e73565b611f0a9190614e73565b611f149190614e73565b90505f611f22600186615184565b611f2d906002615137565b611f38906002615137565b611f43906006614e73565b90505f85845f0151611f559190615137565b905081868560200151611f689190615137565b611f729190615137565b611f7c9082614e73565b90506001861115611fc4576002611f94600188615184565b611f9e9088615137565b8560400151611fad9190615137565b611fb7919061514e565b611fc19082614e73565b90505b81868560c00151611fd59190615137565b611fdf9190615137565b611fe99082614e73565b905082868560600151611ffc9190615137565b6120069190615137565b6120109082614e73565b90508484608001516120229190615137565b61202c9082614e73565b90506001851115612074576002612044600187615184565b61204e9087615137565b856040015161205d9190615137565b612067919061514e565b6120719082614e73565b90505b60a08401516120839082614e73565b6101008501519091506127109061209e9061ffff1682614e73565b6120a89083615137565b6120b2919061514e565b975087806120d657604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f6120ee89610c7a565b5f8a8152600d602052604090205490915060ff166004816006811115612116576121166146a3565b148a60048390919261213e576040516337e1404160e01b815260040161098893929190614e3e565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b90428110156121a1576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121be8a8c83614f14565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b6040516122029291906150a7565b6040519081900381206001600160e01b031960e084901b168252612230918c908c908c908c90600401615197565b602060405180830381865afa15801561224b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061226f91906150e2565b935089898561229357604051632f9f8ab960e01b81526004016109889291906150fd565b505061229e8b613cd2565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b6040516122d494939291906151cf565b60405180910390a28a5f51602061591c5f395f51905f52600460056040516122fd929190614e86565b60405180910390a2505050979650505050505050565b5f546001600160a01b031633148061233557506003546001600160a01b031633145b61235257604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156123685750600d60ff821611155b6123ad5760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b6123cb828260ff16600d8111156123c6576123c66146a3565b61413d565b5050565b6123d761385f565b6001600160a01b03811661242d5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b031633146124a1576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b1580156124eb575f5ffd5b505af11580156124fd573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161149e91815260200190565b61253b61385f565b6001600160a01b0381161580159061256c57505f828152600960205260409020546001600160a01b03828116911614155b829061258e576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b6125f561385f565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b61263261385f565b6127106126476101208301610100840161521a565b61ffff16111561265f6101208301610100840161521a565b90612684576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061269a6101408301610120840161521a565b61ffff1611156126b26101408301610120840161521a565b906126d7576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126ed6101608301610140840161521a565b61ffff1611156127056101608301610140840161521a565b9061272a57604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127406101808301610160840161521a565b61ffff1611156127586101808301610160840161521a565b9061277d57604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127936101a08301610180840161521a565b61ffff1611156127ab6101a08301610180840161521a565b906127d057604051633239953960e01b815261ffff9091166004820152602401610988565b506127e36101408201610120830161521a565b61ffff16158061280c57505f612800610100830160e084016145eb565b6001600160a01b031614155b6128295760405163015f92ff60e51b815260040160405180910390fd5b61283b6101e082016101c08301615251565b63ffffffff166128536101c083016101a08401615251565b63ffffffff161015612878576040516392f55c6560e01b815260040160405180910390fd5b8060186128858282615290565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab0919061544e565b6128bf61385f565b6001600160a01b038116158015906128e557506001546001600160a01b03828116911614155b8190612905576040516320252f0b60e01b8152600401610988919061462a565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab090839061462a565b61295961385f565b6129666020820182615251565b63ffffffff1661297c6040830160208401615251565b63ffffffff16101580156129a157505f6129996020830183615251565b63ffffffff16115b6129be57604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612af7576101a081015163ffffffff16612aa76040840160208501615251565b63ffffffff161015612abf6040840160208501615251565b826101a001519091612af457604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b6e576101c081015163ffffffff16612b216020840184615251565b63ffffffff161015612b366020840184615251565b826101c001519091612b6b5760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612b8457612b846146a3565b6003811115612b9557612b956146a3565b815260208101919091526040015f20612baf9160026144d6565b50826003811115612bc257612bc26146a3565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612bf19190615558565b60405180910390a2505050565b612c0661385f565b6001600160a01b038116612c2f575f604051631e4fbdf760e01b8152600401610988919061462a565b610acc81613989565b5f612c41614459565b5f601281612c526020870187615110565b6003811115612c6357612c636146a3565b6003811115612c7457612c746146a3565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612c9b579050505050505090505f81600160028110612cf257612cf2615093565b602002015163ffffffff1611845f016020810190612d109190615110565b90612d2f5760405163286c068d60e11b81526004016109889190615129565b50602084013542811015612d5957604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612d875760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612d9f426040890135615184565b612da99190614e73565b612db39190614e73565b905060055481108190612ddc576040516313b783af60e21b815260040161098891815260200190565b5060075f612df060808801606089016145eb565b6001600160a01b0316815260208101919091526040015f205460ff16612e1c60808701606088016145eb565b90612e3b5760405163295a6a6f60e11b8152600401610988919061462a565b505f612e4686611b5f565b60068054965090915085905f612e5b83615598565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612f369190890135614e73565b5f878152600e6020908152604090912060010191909155818652612f5c90880188615110565b85602001906003811115612f7257612f726146a3565b90816003811115612f8557612f856146a3565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612fcd90608089019089016145eb565b6001600160a01b031660a080870191909152612fee908801608089016149ba565b8560c001906001811115613004576130046146a3565b90816001811115613017576130176146a3565b90525061302760c08801886155b0565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526130749061010089019089016155f2565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a086018190526004546130c4916001600160a01b03909116903085614298565b5f600b816130d860a08b0160808c016149ba565b60018111156130e9576130e96146a3565b60018111156130fa576130fa6146a3565b81526020019081526020015f20805461311290614e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461313e90614e0c565b80156131895780601f1061316057610100808354040283529160200191613189565b820191905f5260205f20905b81548152906001019060200180831161316c57829003601f168201915b505050505090505f8151116131e05760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f6131f160808a0160608b016145eb565b6001600160a01b031663fefd9a8b89858561320f60a08f018f6155b0565b8f8060c0019061321f91906155b0565b6040518863ffffffff1660e01b8152600401613241979695949392919061560d565b6020604051808303815f875af115801561325d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613281919061516d565b5f818152600960205260409020549091506001600160a01b031681816132bd576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b031682816132f7576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff199190911690836003811115613355576133556146a3565b02179055506040820151816002015560608201518160030190600261337b929190614577565b506080820151600582015560a08201516006820180546001600160a01b039092166001600160a01b031983168117825560c0850151926001600160a81b03191617600160a01b8360018111156133d3576133d36146a3565b021790555060e082015160078201906133ec9082615661565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906134549082615661565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b906134ba908d9089908d90600401615716565b6020604051808303815f875af11580156134d6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134fa91906150e2565b61351757604051630d8dbe2560e01b815260040160405180910390fd5b61352760808c0160608d016145eb565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b604051613561929190614dec565b60405180910390a2895f51602061591c5f395f51905f525f6001604051613589929190614e86565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff16818160068111156135c2576135c26146a3565b036135e757826001826040516337e1404160e01b815260040161098893929190614e3e565b60058160068111156135fb576135fb6146a3565b0361361c5760405163462c7bed60e01b815260048101849052602401610988565b6006816006811115613630576136306146a3565b0361365157604051633de16e3560e11b815260048101849052602401610988565b5f61365c8483613b4a565b935090508061368157604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d8111156136ca576136ca6146a3565b0217905550835f51602061591c5f395f51905f528360066040516136ef929190614e86565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb838560405161372992919061575b565b60405180910390a25050919050565b61374061385f565b6001600160a01b0381161580159061376557505f546001600160a01b03828116911614155b8190613785576040516375ac4eb760e11b8152600401610988919061462a565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab090839061462a565b6001600160a01b0381165f90815260076020526040902054819060ff161561380c5760405163b29d459560e01b8152600401610988919061462a565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab090839061462a565b33613868611665565b6001600160a01b031614611320573360405163118cdaa760e01b8152600401610988919061462a565b80356138b05760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138d45760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138f85760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b6139806142d7565b610acc816142fc565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d811115613a2157613a216146a3565b1480613a3e5750600281600d811115613a3c57613a3c6146a3565b145b15613a76575f5b604051908082528060200260200182016040528015613a6e578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613adc57506040513d5f823e601f3d908101601f19168201604052613ad99190810190615781565b60015b613ae6575f613a45565b9392505050565b613b4583846001600160a01b031663a9059cbb8585604051602401613b13929190615849565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614304565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613bc4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613be8919061516d565b90506001856006811115613bfe57613bfe6146a3565b148015613c0a57508042115b15613c1d57600180935093505050613ccb565b6002856006811115613c3157613c316146a3565b148015613c3e5750815142115b15613c525760016003935093505050613ccb565b6003856006811115613c6657613c666146a3565b148015613c765750816020015142115b15613c8a5760016006935093505050613ccb565b6004856006811115613c9e57613c9e6146a3565b148015613cae5750816040015142115b15613cc2576001600a935093505050613ccb565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613d17573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d3e9190810190615781565b80515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613ddc576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613da890889088908690600401615862565b5f604051808303815f87803b158015613dbf575f5ffd5b505af1158015613dd1573d5f5f3e3d5ffd5b505050505050505050565b825f03613e7d575f858152601060205260409020546001600160a01b03168015613e1457613e146001600160a01b0383168285613aed565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e4890899089908790600401615862565b5f604051808303815f87803b158015613e5f575f5ffd5b505af1158015613e71573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613ebd57506001600160a01b03811615155b15613ef957612710613ed361ffff841687615137565b613edd919061514e565b92508215613ef957613ef96001600160a01b0385168285613aed565b5f613f048487615184565b90505f876001600160401b03811115613f1f57613f1f614ea1565b604051908082528060200260200182016040528015613f48578160200160208202803683370190505b5090505f613f56898461514e565b90505f805b8a811015613f955782848281518110613f7657613f76615093565b6020908102919091010152613f8b8383614e73565b9150600101613f5b565b505f613fa18286615184565b90508015613fde578084613fb660018e615184565b81518110613fc657613fc6615093565b60200260200101818151613fda9190614e73565b9052505b600154613ff8906001600160a01b038b8116911687614367565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b815260040161403c939291906158c2565b5f604051808303815f87803b158015614053575f5ffd5b505af1158015614065573d5f5f3e3d5ffd5b505060015461408392506001600160a01b038c81169250165f614367565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d866040516140b59291906158f7565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b815260040161410193929190615862565b5f604051808303815f87803b158015614118575f5ffd5b505af115801561412a573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff1690816006811115614161576141616146a3565b0361418657826001826040516337e1404160e01b815260040161098893929190614e3e565b600581600681111561419a5761419a6146a3565b036141bb5760405163462c7bed60e01b815260048101849052602401610988565b60068160068111156141cf576141cf6146a3565b036141f057604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d811115614239576142396146a3565b0217905550825f51602061591c5f395f51905f5282600660405161425e929190614e86565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612bf192919061575b565b6040516001600160a01b0384811660248301528381166044830152606482018390526142d19186918216906323b872dd90608401613b13565b50505050565b6142df6143f7565b61132057604051631afcd79f60e31b815260040160405180910390fd5b612c066142d7565b5f5f60205f8451602086015f885af180614323576040513d5f823e3d81fd5b50505f513d9150811561433a578060011415614347565b6001600160a01b0384163b155b156142d15783604051635274afe760e01b8152600401610988919061462a565b5f836001600160a01b031663095ea7b3848460405160240161438a929190615849565b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505090506143c38482614410565b6142d1576143ed84856001600160a01b031663095ea7b3865f604051602401613b13929190615849565b6142d18482614304565b5f61440061394e565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f51905082801561444f57508115614441578060011461444f565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f81526020016144816145a5565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b600183019183908215614567579160200282015f5b8382111561453557833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144eb565b80156145655782816101000a81549063ffffffff0219169055600401602081600301049283019260010302614535565b505b506145739291506145c3565b5090565b8260028101928215614567579160200282015b8281111561456757825182559160200191906001019061458a565b60405180604001604052806002906020820280368337509192915050565b5b80821115614573575f81556001016145c4565b6001600160a01b0381168114610acc575f5ffd5b5f602082840312156145fb575f5ffd5b8135613ae6816145d7565b5f60208284031215614616575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b80356004811061464c575f5ffd5b919050565b5f5f60408385031215614662575f5ffd5b61466b8361463e565b946020939093013593505050565b5f60608284031215610f13575f5ffd5b5f60608284031215614699575f5ffd5b613ae68383614679565b634e487b7160e01b5f52602160045260245ffd5b600e81106146c7576146c76146a3565b9052565b6020810161397282846146b7565b600481106146c7576146c76146a3565b600281106146c7576146c76146a3565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e8152614737602082018f6146d9565b8c60408201528b6060820152614750608082018c61461d565b61475d60a082018b6146e9565b6101c060c08201525f6147746101c083018b6146f9565b61478160e084018b61461d565b61478f61010084018a61461d565b87610120840152866101408401528281036101608401526147b081876146f9565b9150506147c161018083018561461d565b8215156101a08301529f9e505050505050505050505050505050565b805f5b60028110156142d15781518452602093840193909101906001016147e0565b805182525f602082015161481660208501826146d9565b5060408201516040840152606082015161483360608501826147dd565b50608082015160a084015260a082015161485060c085018261461d565b5060c082015161486360e08501826146e9565b5060e08201516102006101008501526148806102008501826146f9565b905061010083015161489661012086018261461d565b506101208301516148ab61014086018261461d565b506101408301516101608501526101608301516101808501526101808301518482036101a08601526148dd82826146f9565b9150506101a08301516148f46101c086018261461d565b506101c08301518015156101e0860152613a6e565b602081525f613ae660208301846147ff565b803561464c816145d7565b5f5f5f5f5f5f5f610120888a03121561493d575f5ffd5b8735614948816145d7565b96506020880135614958816145d7565b95506040880135614968816145d7565b94506060880135614978816145d7565b93506080880135614988816145d7565b925060a0880135915061499e8960c08a01614679565b905092959891949750929550565b80356002811061464c575f5ffd5b5f602082840312156149ca575f5ffd5b613ae6826149ac565b602081525f613ae660208301846146f9565b5f5f604083850312156149f6575f5ffd5b823591506020830135614a08816145d7565b809150509250929050565b5f5f60408385031215614a24575f5ffd5b50508035926020909101359150565b5f5f83601f840112614a43575f5ffd5b5081356001600160401b03811115614a59575f5ffd5b602083019150836020828501011115613ccb575f5ffd5b5f5f5f60408486031215614a82575f5ffd5b614a8b846149ac565b925060208401356001600160401b03811115614aa5575f5ffd5b614ab186828701614a33565b9497909650939450505050565b81518152602080830151908201526040808301519082015260608101613972565b821515815260408101613ae660208301846146b7565b5f5f5f5f5f60608688031215614b09575f5ffd5b8535945060208601356001600160401b03811115614b25575f5ffd5b614b3188828901614a33565b90955093505060408601356001600160401b03811115614b4f575f5ffd5b614b5b88828901614a33565b969995985093965092949392505050565b5f60208284031215614b7c575f5ffd5b81356001600160401b03811115614b91575f5ffd5b82016101008185031215613ae6575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614bfd60e084018261461d565b50610100830151614c1561010084018261ffff169052565b50610120830151614c2d61012084018261ffff169052565b50610140830151614c4561014084018261ffff169052565b50610160830151614c5d61016084018261ffff169052565b50610180830151614c7561018084018261ffff169052565b506101a0830151614c8f6101a084018263ffffffff169052565b506101c0830151614ca96101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614cc6575f5ffd5b8735965060208801356001600160401b03811115614ce2575f5ffd5b614cee8a828b01614a33565b90975095505060408801356001600160401b03811115614d0c575f5ffd5b614d188a828b01614a33565b90955093505060608801356001600160401b03811115614d36575f5ffd5b614d428a828b01614a33565b989b979a50959850939692959293505050565b5f5f60408385031215614d66575f5ffd5b82359150602083013560ff81168114614a08575f5ffd5b600781106146c7576146c76146a3565b602081016139728284614d7d565b5f6101e0828403128015614dad575f5ffd5b509092915050565b5f5f60608385031215614dc6575f5ffd5b614dcf8361463e565b915083606084011115614de0575f5ffd5b50926020919091019150565b828152604060208201525f614e0460408301846147ff565b949350505050565b600181811c90821680614e2057607f821691505b602082108103610f1357634e487b7160e01b5f52602260045260245ffd5b83815260608101614e526020830185614d7d565b614e046040830184614d7d565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561397257613972614e5f565b60408101614e948285614d7d565b613ae66020830184614d7d565b634e487b7160e01b5f52604160045260245ffd5b601f821115613b4557805f5260205f20601f840160051c81016020851015614eda5750805b601f840160051c820191505b81811015614ef9575f8155600101614ee6565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614f2b57614f2b614ea1565b614f3f83614f398354614e0c565b83614eb5565b5f601f841160018114614f6b575f8515614f595750838201355b614f638682614f00565b845550614ef9565b5f83815260208120601f198716915b82811015614f9a5786850135825560209485019460019092019101614f7a565b5086821015614fb6575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b614ffa81856146e9565b604060208201525f615010604083018486614fc8565b95945050505050565b5f8151808452602084019350602083015f5b828110156150525781516001600160a01b031686526020958601959091019060010161502b565b5093949350505050565b848152836020820152608060408201525f61507a6080830185615019565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f61444f606083018486614fc8565b8015158114610acc575f5ffd5b5f602082840312156150f2575f5ffd5b8151613ae6816150d5565b602081525f614e04602083018486614fc8565b5f60208284031215615120575f5ffd5b613ae68261463e565b6020810161397282846146d9565b808202811582820484141761397257613972614e5f565b5f8261516857634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561517d575f5ffd5b5051919050565b8181038181111561397257613972614e5f565b858152606060208201525f6151b0606083018688614fc8565b82810360408401526151c3818587614fc8565b98975050505050505050565b604081525f6151e2604083018688614fc8565b82810360208401526151f5818587614fc8565b979650505050505050565b61ffff81168114610acc575f5ffd5b803561464c81615200565b5f6020828403121561522a575f5ffd5b8135613ae681615200565b63ffffffff81168114610acc575f5ffd5b803561464c81615235565b5f60208284031215615261575f5ffd5b8135613ae681615235565b5f8135613972816145d7565b5f813561397281615200565b5f813561397281615235565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c08201356006820155600781016153006152e360e0850161526c565b82546001600160a01b0319166001600160a01b0391909116178255565b6153306153106101008501615278565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6153606153406101208501615278565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b6153906153706101408501615278565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b6153c06153a06101608501615278565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6153f06153d06101808501615278565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b506008810161541c6154056101a08501615284565b825463ffffffff191663ffffffff91909116178255565b613b4561542c6101c08501615284565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e0810161549f60e0840161491b565b6154ac60e084018261461d565b506154ba610100840161520f565b61ffff166101008301526154d1610120840161520f565b61ffff166101208301526154e8610140840161520f565b61ffff166101408301526154ff610160840161520f565b61ffff16610160830152615516610180840161520f565b61ffff1661018083015261552d6101a08401615246565b63ffffffff166101a08301526155466101c08401615246565b63ffffffff81166101c0840152614ca9565b6040810181835f5b600281101561558f57813561557481615235565b63ffffffff1683526020928301929190910190600101615560565b50505092915050565b5f600182016155a9576155a9614e5f565b5060010190565b5f5f8335601e198436030181126155c5575f5ffd5b8301803591506001600160401b038211156155de575f5ffd5b602001915036819003821315613ccb575f5ffd5b5f60208284031215615602575f5ffd5b8135613ae6816150d5565b87815286602082015260a060408201525f61562b60a08301886146f9565b828103606084015261563e818789614fc8565b90508281036080840152615653818587614fc8565b9a9950505050505050505050565b81516001600160401b0381111561567a5761567a614ea1565b61568e816156888454614e0c565b84614eb5565b6020601f8211600181146156bb575f83156156a95750848201515b6156b38482614f00565b855550614ef9565b5f84815260208120601f198516915b828110156156ea57878501518255602094850194600190920191016156ca565b508482101561570757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561575057815163ffffffff1683526020928301929091019060010161572b565b505050949350505050565b604081016157698285614d7d565b613ae660208301846146b7565b805161464c816145d7565b5f60208284031215615791575f5ffd5b81516001600160401b038111156157a6575f5ffd5b8201601f810184136157b6575f5ffd5b80516001600160401b038111156157cf576157cf614ea1565b8060051b604051601f19603f83011681018181106001600160401b03821117156157fb576157fb614ea1565b604052918252602081840181019290810187841115615818575f5ffd5b6020850194505b8385101561583e5761583085615776565b81526020948501940161581f565b509695505050505050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f61587a6060830185615019565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b828110156150525781518652602095860195909101906001016158a4565b6001600160a01b03841681526060602082018190525f906158e590830185615019565b828103604084015261444f8185615892565b604081525f6159096040830185615019565b8281036020840152615010818561589256fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", "linkReferences": {}, "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/Enclave.sol", - "buildInfoId": "solc-0_8_28-361d4ed525b2a26ac9b3313fd80fb3038fddef8a" + "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json b/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json index 185e63b330..cd9e02252b 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json @@ -940,5 +940,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/IBondingRegistry.sol", - "buildInfoId": "solc-0_8_28-67d7bf420ed8ac25001394841682e83cf4523ea2" + "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json b/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json index 4e550a8b39..1a54de2ed8 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json @@ -568,11 +568,6 @@ "internalType": "address[]", "name": "nodes", "type": "address[]" - }, - { - "internalType": "uint256[]", - "name": "scores", - "type": "uint256[]" } ], "stateMutability": "view", @@ -965,5 +960,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/ICiphernodeRegistry.sol", - "buildInfoId": "solc-0_8_28-67d7bf420ed8ac25001394841682e83cf4523ea2" + "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json b/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json index fa7cc31b58..e18082ff7d 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json @@ -425,19 +425,6 @@ "name": "UtilizationBpsExceedsMax", "type": "error" }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "bytes[]", - "name": "e3ProgramParams", - "type": "bytes[]" - } - ], - "name": "AllowedE3ProgramsParamsSet", - "type": "event" - }, { "anonymous": false, "inputs": [ @@ -604,19 +591,6 @@ "name": "E3ProgramEnabled", "type": "event" }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "bytes[]", - "name": "e3ProgramParams", - "type": "bytes[]" - } - ], - "name": "E3ProgramsParamsRemoved", - "type": "event" - }, { "anonymous": false, "inputs": [ @@ -672,9 +646,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -840,6 +814,25 @@ "name": "MaxDurationSet", "type": "event" }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "encodedParams", + "type": "bytes" + } + ], + "name": "ParamSetRegistered", + "type": "event" + }, { "anonymous": false, "inputs": [ @@ -1247,9 +1240,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -1320,9 +1313,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -1696,19 +1689,6 @@ "stateMutability": "nonpayable", "type": "function" }, - { - "inputs": [ - { - "internalType": "bytes[]", - "name": "_e3ProgramsParams", - "type": "bytes[]" - } - ], - "name": "removeE3ProgramsParams", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, { "inputs": [ { @@ -1729,9 +1709,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -1794,9 +1774,9 @@ "type": "address" }, { - "internalType": "bytes", - "name": "e3ProgramParams", - "type": "bytes" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" }, { "internalType": "bytes", @@ -1912,12 +1892,12 @@ { "inputs": [ { - "internalType": "bytes[]", - "name": "_e3ProgramsParams", - "type": "bytes[]" + "internalType": "contract IERC20", + "name": "_feeToken", + "type": "address" } ], - "name": "setE3ProgramsParams", + "name": "setFeeToken", "outputs": [], "stateMutability": "nonpayable", "type": "function" @@ -1925,12 +1905,12 @@ { "inputs": [ { - "internalType": "contract IERC20", - "name": "_feeToken", - "type": "address" + "internalType": "uint256", + "name": "_maxDuration", + "type": "uint256" } ], - "name": "setFeeToken", + "name": "setMaxDuration", "outputs": [], "stateMutability": "nonpayable", "type": "function" @@ -1938,12 +1918,17 @@ { "inputs": [ { - "internalType": "uint256", - "name": "_maxDuration", - "type": "uint256" + "internalType": "enum IEnclave.ParamSet", + "name": "paramSet", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "encodedParams", + "type": "bytes" } ], - "name": "setMaxDuration", + "name": "setParamSet", "outputs": [], "stateMutability": "nonpayable", "type": "function" @@ -2093,5 +2078,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/IEnclave.sol", - "buildInfoId": "solc-0_8_28-67d7bf420ed8ac25001394841682e83cf4523ea2" + "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json b/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json index ae582e7c29..d5374087fb 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json @@ -954,5 +954,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/ISlashingManager.sol", - "buildInfoId": "solc-0_8_28-67d7bf420ed8ac25001394841682e83cf4523ea2" + "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json b/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json index 6a70931d0a..08296ba9d8 100644 --- a/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json +++ b/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json @@ -743,13 +743,8 @@ "outputs": [ { "internalType": "address[]", - "name": "nodes", + "name": "", "type": "address[]" - }, - { - "internalType": "uint256[]", - "name": "scores", - "type": "uint256[]" } ], "stateMutability": "view", @@ -1264,30 +1259,30 @@ "type": "function" } ], - "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613ecf806100d65f395ff3fe608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80639f0f874a11610135578063e59e4695116100b4578063f26ef74e11610079578063f26ef74e1461057f578063f2fde38b14610592578063f379b0df146105a5578063f52fd803146105df578063f6fc05d514610651575f5ffd5b8063e59e469514610524578063e6745e1314610537578063e82f3b701461054a578063ebf0c7171461055d578063f165053614610565575f5ffd5b8063c3a0ec30116100fa578063c3a0ec30146104bc578063ca2869a0146104cd578063cd6dc687146104ec578063da881e5a146104ff578063dbb06c9314610512575f5ffd5b80639f0f874a1461044e578063a016493014610457578063a8a4d69b14610477578063bff232c11461048a578063c2b40ae41461049d575f5ffd5b8063715018a6116101c15780638d1ddfb1116101865780638d1ddfb1146103ce5780638da5cb5b146103e45780638e5ce3ad146103ec5780639015d371146103ff5780639a7a2ffc14610412575f5ffd5b8063715018a6146103475780637c92f5241461034f578063858142431461037c5780638a78bb151461039c5780638cb89ecb146103af575f5ffd5b80632e7b716d116102075780632e7b716d146102d95780634d6861a6146102ec57806350e6d94c146102ff5780635d5047761461032157806370e36bbe14610334575f5ffd5b8063096b810a146102435780630f3e34121461025857806317d611201461026b5780632800d82914610295578063291a691b146102b6575b5f5ffd5b6102566102513660046132aa565b61065a565b005b6102566102663660046132c5565b6107a6565b61027e6102793660046132c5565b6107e9565b60405161028c92919061334f565b60405180910390f35b6102a86102a33660046132c5565b610993565b60405190815260200161028c565b6102c96102c436600461337c565b6109df565b604051901515815260200161028c565b6102c96102e73660046132aa565b610bb9565b6102c96102fa3660046132c5565b610c6c565b6102c961030d3660046132aa565b60066020525f908152604090205460ff1681565b6102c961032f3660046133b5565b610cab565b6102566103423660046132aa565b610cef565b610256610d65565b61036261035d3660046133e3565b610d78565b6040805192835263ffffffff90911660208301520161028c565b60015461038f906001600160a01b031681565b60405161028c9190613418565b6102566103aa3660046132aa565b610f1f565b6102a86103bd3660046132c5565b60096020525f908152604090205481565b600454600160281b900464ffffffffff166102a8565b61038f61105d565b600b5461038f906001600160a01b031681565b6102c961040d3660046132aa565b61108b565b6104386104203660046132aa565b60076020525f908152604090205464ffffffffff1681565b60405164ffffffffff909116815260200161028c565b6102a860035481565b61046a6104653660046132c5565b6110a8565b60405161028c919061342c565b6102c96104853660046133b5565b61113e565b6102566104983660046132aa565b611182565b6102a86104ab3660046132c5565b60086020525f908152604090205481565b6001546001600160a01b031661038f565b6102a86104db3660046132c5565b5f9081526008602052604090205490565b6102566104fa36600461343e565b6111d3565b6102c961050d3660046132c5565b611330565b5f5461038f906001600160a01b031681565b6102566105323660046132aa565b61160a565b610256610545366004613468565b611682565b6102a86105583660046132c5565b611845565b6102a8611876565b61056d601481565b60405160ff909116815260200161028c565b61025661058d3660046134cc565b611888565b6102566105a03660046132aa565b611b7a565b6004546105c19064ffffffffff80821691600160281b90041682565b6040805164ffffffffff93841681529290911660208301520161028c565b6106226105ed3660046132c5565b5f908152600a6020819052604090912090810154600590910154909163ffffffff80831692600160201b900416908284101590565b60405161028c949392919093845263ffffffff9283166020850152911660408301521515606082015260800190565b6102a860025481565b61066261105d565b6001600160a01b0316336001600160a01b0316148061068b57506001546001600160a01b031633145b6106a857604051632864c4e160e01b815260040160405180910390fd5b6106b18161108b565b81906106da576040516381e5828960e01b81526004016106d19190613418565b60405180910390fd5b506001600160a01b0381165f9081526007602052604081205464ffffffffff16906107089060049083611bb4565b6001600160a01b0382165f908152600660205260408120805460ff191690556002805491610735836135e6565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f8c008e3835f6c79bfcdb89f0f6ca8705e0b01049ee84a90b0e4da1c7ba9405d5906060015b60405180910390a25050565b6107ae611e56565b60038190556040518181527fbe772dc189863d512fa01e489c8eac204975aef1a8662d8b5a333804b5207ab79060200160405180910390a150565b5f818152600a60208190526040909120600681015491810154606092839291806001600160401b03811115610820576108206135fb565b604051908082528060200260200182016040528015610849578160200160208202803683370190505b509450806001600160401b03811115610864576108646135fb565b60405190808252806020026020018201604052801561088d578160200160208202803683370190505b5093505f805b83811015610989575f8560060182815481106108b1576108b161360f565b5f918252602090912001546001600160a01b0316905060016001600160a01b0382165f90815260098801602052604090205460ff1660028111156108f7576108f7613623565b03610980578088848151811061090f5761090f61360f565b60200260200101906001600160a01b031690816001600160a01b031681525050856008015f826001600160a01b03166001600160a01b031681526020019081526020015f20548784815181106109675761096761360f565b60209081029190910101528261097c81613637565b9350505b50600101610893565b5050505050915091565b5f818152600a6020526040812081815460ff1660038111156109b7576109b7613623565b036109d557604051630d4c1d9760e41b815260040160405180910390fd5b6003015492915050565b5f80546001600160a01b03163314610a0a5760405163e4c2a7eb60e01b815260040160405180910390fd5b5f848152600a6020526040812090815460ff166003811115610a2e57610a2e613623565b14610a4c576040516374ff462560e11b815260040160405180910390fd5b60015460408051630cc37d8f60e11b815290515f926001600160a01b031691631986fb1e9160048083019260209291908290030181865afa158015610a93573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab7919061364f565b905080610aca6040860160208701613679565b63ffffffff161115610ae26040860160208701613679565b829091610b10576040516344ec930f60e01b815263ffffffff909216600483015260248201526044016106d1565b5050815460ff1916600190811783558201859055436002830155600354610b379042613692565b6003830155610b4b600583018560026131e1565b50610b54611876565b5f87815260086020526040908190209190915560028301546003840154915188927f381d281d32f95ef8fe4e5f3b263ea6a32d03d331e1a141ae1da996dc02a7a17092610ba5928a928a92916136a5565b60405180910390a250600195945050505050565b5f610bc38261108b565b610bce57505f919050565b6001546001600160a01b0316610bf7576040516350ca893360e01b815260040160405180910390fd5b600154604051639f8a13d760e01b81526001600160a01b0390911690639f8a13d790610c27908590600401613418565b602060405180830381865afa158015610c42573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c669190613704565b92915050565b5f818152600a602052604081206001815460ff166003811115610c9157610c91613623565b14610c9e57505f92915050565b6003015442111592915050565b5f60015f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff166002811115610ce757610ce7613623565b149392505050565b610cf7611e56565b6001600160a01b038116610d1e5760405163d92e233d60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b038316908117825560405190917f2c8267accd82e977550ed2349c73311183cd22e306347be4453c8d130995e3c991a250565b610d6d611e56565b610d765f611e88565b565b600b545f9081906001600160a01b03163314610da75760405163fcef374960e01b815260040160405180910390fd5b5f858152600a602052604090206002815460ff166003811115610dcc57610dcc613623565b14610dea57604051634f4b461f60e11b815260040160405180910390fd5b60058101546001600160a01b0386165f90815260098301602052604090205463ffffffff909116925060019060ff166002811115610e2a57610e2a613623565b14610e3a57600a01549150610f17565b6001600160a01b0385165f9081526009820160205260408120805460ff19166002179055600a8201805491610e6e836135e6565b919050555080600a01549250846001600160a01b0316867f6c783b92374361b4d6efaf29673b89437ee969bb3c9d2d5d86b143ad5447b8498686604051610ebf929190918252602082015260400190565b60405180910390a36040805184815263ffffffff84166020820181905285101591810182905287907f119cb11dd0a68c257d6dc9b06dcb37dd422ce276eb8bf3cd0b7079a116b8e2989060600160405180910390a250505b935093915050565b610f2761105d565b6001600160a01b0316336001600160a01b03161480610f5057506001546001600160a01b031633145b610f6d57604051632864c4e160e01b815260040160405180910390fd5b610f768161108b565b61105a5760048054600160281b900464ffffffffff1690610fa0906001600160a01b038416611ef8565b6001600160a01b0382165f908152600660209081526040808320805460ff1916600117905560079091528120805464ffffffffff841664ffffffffff199091161790556002805491610ff183613637565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f3318d261fe14a5761d2d1e21555652f623d2134c430a9883c9ad6e958bb0db539060600161079a565b50565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b03165f9081526006602052604090205460ff1690565b5f818152600a602052604090206004810154606091906110db576040516322e679e360e11b815260040160405180910390fd5b8060060180548060200260200160405190810160405280929190818152602001828054801561113157602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311611113575b5050505050915050919050565b5f805f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff16600281111561117957611179613623565b14159392505050565b61118a611e56565b6001600160a01b0381166111b15760405163d92e233d60e01b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6111dc6120ce565b805490915060ff600160401b82041615906001600160401b03165f811580156112025750825b90505f826001600160401b0316600114801561121d5750303b155b90508115801561122b575080155b156112495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561127357845460ff60401b1916600160401b1785555b6001600160a01b03871661129a5760405163d92e233d60e01b815260040160405180910390fd5b6112a3336120f6565b6112af60046014612107565b6112b8866107a6565b6112c061105d565b6001600160a01b0316876001600160a01b0316146112e1576112e187611b7a565b831561132757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f818152600a6020526040812081815460ff16600381111561135457611354613623565b0361137257604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff16600381111561138a5761138a613623565b146113a857604051631860f69960e31b815260040160405180910390fd5b806003015442116113cc57604051632f021e8d60e11b815260040160405180910390fd5b60058101546006820154600160201b90910463ffffffff161115806114b1578154600360ff199091161782556006820154600583015460408051928352600160201b90910463ffffffff16602083015285917fecc4a9fb7e28d074cba7f5b227e9b5827823c850a385539b9a2f98a08f8c203d910160405180910390a25f54604051635d968dc160e11b815260048101869052600260248201526001600160a01b039091169063bb2d1b82906044015f604051808303815f87803b158015611492575f5ffd5b505af11580156114a4573d5f5f3e3d5ffd5b505f979650505050505050565b815460ff191660021782556006820154600a83018190555f816001600160401b038111156114e1576114e16135fb565b60405190808252806020026020018201604052801561150a578160200160208202803683370190505b5090505f5b8281101561157c57846008015f8660060183815481106115315761153161360f565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205482518390839081106115695761156961360f565b602090810291909101015260010161150f565b505f54604051631f3ea75d60e21b8152600481018890526001600160a01b0390911690637cfa9d74906024015f604051808303815f87803b1580156115bf575f5ffd5b505af11580156115d1573d5f5f3e3d5ffd5b50505050857f4f1f5b329c741a8ba15e9645e301061294d0c1fdd455448ffd5e76ff255929d78560060183604051610ba592919061371d565b611612611e56565b6001600160a01b0381166116395760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a7905f90a250565b5f828152600a6020526040812090815460ff1660038111156116a6576116a6613623565b036116c457604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156116dc576116dc613623565b146116fa57604051631860f69960e31b815260040160405180910390fd5b806003015442111561171f57604051639a19114d60e01b815260040160405180910390fd5b335f90815260078201602052604090205460ff16156117515760405163257309f160e11b815260040160405180910390fd5b61175a33610bb9565b6117775760405163149fbcfd60e11b815260040160405180910390fd5b611782338385612186565b6001810154604080516bffffffffffffffffffffffff193360601b16602080830191909152603482018690526054820187905260748083019490945282518083039094018452609490910190915281519101205f90335f8181526007850160205260409020805460ff1916600117905590915061180190839083612357565b506040805184815260208101839052339186917f52999628fb1cb05707e842278833b22e511f11746202cecdf221968b0b89e8bd910160405180910390a350505050565b5f8181526009602052604090205480611871576040516322e679e360e11b815260040160405180910390fd5b919050565b5f61188360046014612558565b905090565b5f898152600a602052604090206002815460ff1660038111156118ad576118ad613623565b146118cb57604051634f4b461f60e11b815260040160405180910390fd5b6004810154156118ee5760405163632a22bb60e01b815260040160405180910390fd5b600681015488146119375760405162461bcd60e51b815260206004820152601360248201527209cdec8ca40c6deeadce840dad2e6dac2e8c6d606b1b60448201526064016106d1565b5f61194485870187613874565b9150505f81511161198e5760405162461bcd60e51b815260206004820152601460248201527343353a206e6f207075626c696320696e7075747360601b60448201526064016106d1565b5f816001835161199e9190613917565b815181106119ae576119ae61360f565b602002602001015190505f5f5f9054906101000a90046001600160a01b03166001600160a01b031663406ed35c8e6040518263ffffffff1660e01b81526004016119fa91815260200190565b5f60405180830381865afa158015611a14573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a3b91908101906139fc565b610120810151604051637bf41d7760e11b81529192506001600160a01b03169063f7e83aee90611a75908b908b908b908b90600401613b9b565b602060405180830381865afa158015611a90573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ab4919061364f565b5060048085018390555f8e815260096020526040808220859055905490516340a3b76160e11b81529182018f9052602482018490526001600160a01b0316906381476ec2906044015f604051808303815f87803b158015611b13575f5ffd5b505af1158015611b25573d5f5f3e3d5ffd5b505050508c7f49ac1dd411942113d1c5e6799c6379ce341afe85a4175fb562cf2a5fb886c27d8d8d8d8d8d8d604051611b6396959493929190613bcc565b60405180910390a250505050505050505050505050565b611b82611e56565b6001600160a01b038116611bab575f604051631e4fbdf760e01b81526004016106d19190613418565b61105a81611e88565b7f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611bf35760405162461bcd60e51b81526004016106d190613c45565b825464ffffffffff600160281b90910481169082168111611c515760405162461bcd60e51b815260206004820152601860248201527713185e9e5253550e881b195859881b5d5cdd08195e1a5cdd60421b60448201526064016106d1565b825f5b81866001015f611c648488612651565b64ffffffffff1681526020019081526020015f20819055505f816001611c8a9190613c8f565b60ff168464ffffffffff16901c64ffffffffff16905060018564ffffffffff16901c64ffffffffff168111611cbf5750611e4e565b600185165f03611d86575f611cde83611cd9886001613ca8565b612651565b60408051808201825286815264ffffffffff83165f90815260018c0160209081529083902054908201529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611d3f91600401613cc5565b602060405180830381865af4158015611d5a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7e919061364f565b935050611e3a565b5f611d9683611cd9600189613cf5565b60408051808201825264ffffffffff83165f90815260018c0160209081529083902054825281018790529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611df791600401613cc5565b602060405180830381865af4158015611e12573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e36919061364f565b9350505b50647fffffffff600194851c169301611c54565b505050505050565b33611e5f61105d565b6001600160a01b031614610d76573360405163118cdaa760e01b81526004016106d19190613418565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b8154600160281b900464ffffffffff167f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611f475760405162461bcd60e51b81526004016106d190613c45565b825464ffffffffff90811690821610611f9a5760405162461bcd60e51b815260206004820152601560248201527413185e9e5253550e881d1c9959481a5cc8199d5b1b605a1b60448201526064016106d1565b611fa5816001613ca8565b835464ffffffffff91909116600160281b0269ffffffffff000000000019909116178355815f5b81856001015f611fdc8487612651565b64ffffffffff16815260208101919091526040015f205560018316156120c7575f61200c82611cd9600187613cf5565b60408051808201825264ffffffffff83165f90815260018a0160209081529083902054825281018690529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe9161206d91600401613cc5565b602060405180830381865af4158015612088573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ac919061364f565b647fffffffff600195861c1694909350919091019050611fcc565b5050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610c66565b6120fe61266e565b61105a81612693565b602060ff821611156121555760405162461bcd60e51b81526020600482015260176024820152764c617a79494d543a205472656520746f6f206c6172676560481b60448201526064016106d1565b612166600160ff831681901b613917565b825469ffffffffffffffffffff191664ffffffffff919091161790915550565b5f82116121a65760405163aeaddff160e01b815260040160405180910390fd5b6001546001600160a01b03166121cf576040516350ca893360e01b815260040160405180910390fd5b5f818152600a602052604081206001805460028301549293926001600160a01b039091169163bb03bd7191889161220591613917565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa15801561224c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612270919061364f565b90505f60015f9054906101000a90046001600160a01b03166001600160a01b0316631209b1f66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122c3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122e7919061364f565b90505f81116123095760405163aeaddff160e01b815260040160405180910390fd5b5f6123148284613d12565b90505f81116123365760405163149fbcfd60e11b815260040160405180910390fd5b808611156113275760405163aeaddff160e01b815260040160405180910390fd5b60058301546006840180545f92600160201b900463ffffffff16908111156123d557508054600180820183555f928352602080842090920180546001600160a01b0319166001600160a01b03881690811790915583526008870182526040808420869055600988019092529120805460ff1916821790559050612551565b5f5f90505f876008015f855f815481106123f1576123f161360f565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905060015b8454811015612479575f896008015f87848154811061243b5761243b61360f565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905082811115612470578092508193505b5060010161241a565b5080861061248d575f945050505050612551565b5f886009015f8685815481106124a5576124a561360f565b5f9182526020808320909101546001600160a01b031683528201929092526040019020805460ff191660018360028111156124e2576124e2613623565b0217905550868483815481106124fa576124fa61360f565b5f91825260208083209190910180546001600160a01b0319166001600160a01b03948516179055918916815260088a018252604080822089905560098b0190925220805460ff191660019081179091559450505050505b9392505050565b5f5f8260ff16116125ab5760405162461bcd60e51b815260206004820152601a60248201527f4c617a79494d543a206465707468206d757374206265203e203000000000000060448201526064016106d1565b602060ff831611156125cf5760405162461bcd60e51b81526004016106d190613d31565b8254600160281b900464ffffffffff16806125ee60ff85166002613e82565b64ffffffffff16101561263e5760405162461bcd60e51b8152602060048201526018602482015277098c2f4f2929aa87440c2dac4d2ceeadeeae640c8cae0e8d60431b60448201526064016106d1565b61264984828561269b565b949350505050565b5f8161266460ff851663ffffffff613e9b565b6125519190613ca8565b612676612763565b610d7657604051631afcd79f60e31b815260040160405180910390fd5b611b8261266e565b5f602060ff831611156126c05760405162461bcd60e51b81526004016106d190613d31565b8264ffffffffff165f036126de576126d78261277c565b9050612551565b5f6126ea836001613c8f565b60ff166001600160401b03811115612704576127046135fb565b60405190808252806020026020018201604052801561272d578160200160208202803683370190505b50905061273c85858584612e16565b808360ff16815181106127515761275161360f565b60200260200101519150509392505050565b5f61276c6120ce565b54600160401b900460ff16919050565b5f8160ff165f0361278e57505f919050565b8160ff166001036127c057507f2098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864919050565b8160ff166002036127f257507f1069673dcdb12263df301a6ff584a7ec261a44cb9dc68df067a4774460b1f1e1919050565b8160ff1660030361282457507f18f43331537ee2af2e3d758d50f72106467c6eea50371dd528d57eb2b856d238919050565b8160ff1660040361285657507f07f9d837cb17b0d36320ffe93ba52345f1b728571a568265caac97559dbc952a919050565b8160ff1660050361288857507f2b94cf5e8746b3f5c9631f4c5df32907a699c58c94b2ad4d7b5cec1639183f55919050565b8160ff166006036128ba57507f2dee93c5a666459646ea7d22cca9e1bcfed71e6951b953611d11dda32ea09d78919050565b8160ff166007036128ec57507f078295e5a22b84e982cf601eb639597b8b0515a88cb5ac7fa8a4aabe3c87349d919050565b8160ff1660080361291e57507f2fa5e5f18f6027a6501bec864564472a616b2e274a41211a444cbe3a99f3cc61919050565b8160ff1660090361295057507f0e884376d0d8fd21ecb780389e941f66e45e7acce3e228ab3e2156a614fcd747919050565b8160ff16600a0361298257507f1b7201da72494f1e28717ad1a52eb469f95892f957713533de6175e5da190af2919050565b8160ff16600b036129b457507f1f8d8822725e36385200c0b201249819a6e6e1e4650808b5bebc6bface7d7636919050565b8160ff16600c036129e657507f2c5d82f66c914bafb9701589ba8cfcfb6162b0a12acf88a8d0879a0471b5f85a919050565b8160ff16600d03612a1857507f14c54148a0940bb820957f5adf3fa1134ef5c4aaa113f4646458f270e0bfbfd0919050565b8160ff16600e03612a4a57507f190d33b12f986f961e10c0ee44d8b9af11be25588cad89d416118e4bf4ebe80c919050565b8160ff16600f03612a7c57507f22f98aa9ce704152ac17354914ad73ed1167ae6596af510aa5b3649325e06c92919050565b8160ff16601003612aae57507f2a7c7c9b6ce5880b9f6f228d72bf6a575a526f29c66ecceef8b753d38bba7323919050565b8160ff16601103612ae057507f2e8186e558698ec1c67af9c14d463ffc470043c9c2988b954d75dd643f36b992919050565b8160ff16601203612b1257507f0f57c5571e9a4eab49e2c8cf050dae948aef6ead647392273546249d1c1ff10f919050565b8160ff16601303612b4457507f1830ee67b5fb554ad5f63d4388800e1cfe78e310697d46e43c9ce36134f72cca919050565b8160ff16601403612b7657507f2134e76ac5d21aab186c2be1dd8f84ee880a1e46eaf712f9d371b6df22191f3e919050565b8160ff16601503612ba857507f19df90ec844ebc4ffeebd866f33859b0c051d8c958ee3aa88f8f8df3db91a5b1919050565b8160ff16601603612bda57507f18cca2a66b5c0787981e69aefd84852d74af0e93ef4912b4648c05f722efe52b919050565b8160ff16601703612c0c57507f2388909415230d1b4d1304d2d54f473a628338f2efad83fadf05644549d2538d919050565b8160ff16601803612c3e57507f27171fb4a97b6cc0e9e8f543b5294de866a2af2c9c8d0b1d96e673e4529ed540919050565b8160ff16601903612c7057507f2ff6650540f629fd5711a0bc74fc0d28dcb230b9392583e5f8d59696dde6ae21919050565b8160ff16601a03612ca257507f120c58f143d491e95902f7f5277778a2e0ad5168f6add75669932630ce611518919050565b8160ff16601b03612cd457507f1f21feb70d3f21b07bf853d5e5db03071ec495a0a565a21da2d665d279483795919050565b8160ff16601c03612d0657507f24be905fa71335e14c638cc0f66a8623a826e768068a9e968bb1a1dde18a72d2919050565b8160ff16601d03612d3857507f0f8666b62ed17491c50ceadead57d4cd597ef3821d65c328744c74e553dac26d919050565b8160ff16601e03612d6a57507f0918d46bf52d98b034413f4a1a1c41594e7a7a3f6ae08cb43d1a2a230e1959ef919050565b8160ff16601f03612d9c57507f1bbeb01b4c479ecde76917645e404dfa2e26f90d0afc5a65128513ad375c5ff2919050565b8160ff16602003612dce57507f2f68a1c58e257e42a17a6c61dff5551ed560b9922ab119d5ac8e184c9734ead9919050565b60405162461bcd60e51b815260206004820152601e60248201527f4c617a79494d543a2064656661756c745a65726f2062616420696e646578000060448201526064016106d1565b602060ff83161115612e3a5760405162461bcd60e51b81526004016106d190613d31565b5f8364ffffffffff1611612e9e5760405162461bcd60e51b815260206004820152602560248201527f4c617a79494d543a206e756d626572206f66206c6561766573206d7573742062604482015264065203e20360dc1b60648201526084016106d1565b5f612eaa600185613cf5565b9050600181165f03612efd57846001015f612ec55f84612651565b64ffffffffff1681526020019081526020015f2054825f81518110612eec57612eec61360f565b602002602001018181525050612f25565b612f065f61277c565b825f81518110612f1857612f1861360f565b6020026020010181815250505b5f5b8360ff168160ff161015611e4e57600182165f0361301d5773__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280868560ff1681518110612f7957612f7961360f565b60200260200101518152602001612f8f8561277c565b8152506040518263ffffffff1660e01b8152600401612fae9190613cc5565b602060405180830381865af4158015612fc9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fed919061364f565b83612ff9836001613c8f565b60ff168151811061300c5761300c61360f565b6020026020010181815250506131ce565b5f613029826001613c8f565b60ff168664ffffffffff16901c64ffffffffff16905060018364ffffffffff16901c64ffffffffff168111156130cb575f876001015f61308085600161306f9190613c8f565b60018864ffffffffff16901c612651565b64ffffffffff1681526020019081526020015f2054905080858460016130a69190613c8f565b60ff16815181106130b9576130b961360f565b602002602001018181525050506131cc565b5f876001015f6130e285600188611cd99190613cf5565b64ffffffffff1681526020019081526020015f2054905073__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280848152602001888760ff16815181106131395761313961360f565b60200260200101518152506040518263ffffffff1660e01b81526004016131609190613cc5565b602060405180830381865af415801561317b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061319f919061364f565b856131ab856001613c8f565b60ff16815181106131be576131be61360f565b602002602001018181525050505b505b647fffffffff600192831c169101612f27565b600183019183908215613272579160200282015f5b8382111561324057833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026131f6565b80156132705782816101000a81549063ffffffff0219169055600401602081600301049283019260010302613240565b505b5061327e929150613282565b5090565b5b8082111561327e575f8155600101613283565b6001600160a01b038116811461105a575f5ffd5b5f602082840312156132ba575f5ffd5b813561255181613296565b5f602082840312156132d5575f5ffd5b5035919050565b5f8151808452602084019350602083015f5b828110156133155781516001600160a01b03168652602095860195909101906001016132ee565b5093949350505050565b5f8151808452602084019350602083015f5b82811015613315578151865260209586019590910190600101613331565b604081525f61336160408301856132dc565b8281036020840152613373818561331f565b95945050505050565b5f5f5f6080848603121561338e575f5ffd5b8335925060208401359150608084018510156133a8575f5ffd5b6040840190509250925092565b5f5f604083850312156133c6575f5ffd5b8235915060208301356133d881613296565b809150509250929050565b5f5f5f606084860312156133f5575f5ffd5b83359250602084013561340781613296565b929592945050506040919091013590565b6001600160a01b0391909116815260200190565b602081525f61255160208301846132dc565b5f5f6040838503121561344f575f5ffd5b823561345a81613296565b946020939093013593505050565b5f5f60408385031215613479575f5ffd5b50508035926020909101359150565b5f5f83601f840112613498575f5ffd5b5081356001600160401b038111156134ae575f5ffd5b6020830191508360208285010111156134c5575f5ffd5b9250929050565b5f5f5f5f5f5f5f5f5f60a08a8c0312156134e4575f5ffd5b8935985060208a01356001600160401b03811115613500575f5ffd5b8a01601f81018c13613510575f5ffd5b80356001600160401b03811115613525575f5ffd5b8c60208260051b8401011115613539575f5ffd5b6020919091019850965060408a01356001600160401b0381111561355b575f5ffd5b6135678c828d01613488565b90975095505060608a01356001600160401b03811115613585575f5ffd5b6135918c828d01613488565b90955093505060808a01356001600160401b038111156135af575f5ffd5b6135bb8c828d01613488565b915080935050809150509295985092959850929598565b634e487b7160e01b5f52601160045260245ffd5b5f816135f4576135f46135d2565b505f190190565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b5f60018201613648576136486135d2565b5060010190565b5f6020828403121561365f575f5ffd5b5051919050565b803563ffffffff81168114611871575f5ffd5b5f60208284031215613689575f5ffd5b61255182613666565b80820180821115610c6657610c666135d2565b84815260a0810160208201855f5b60028110156136e05763ffffffff6136ca83613666565b16835260209283019291909101906001016136b3565b50505060608201939093526080015292915050565b80518015158114611871575f5ffd5b5f60208284031215613714575f5ffd5b612551826136f5565b604080825283549082018190525f8481526020812090916060840190835b818110156137625783546001600160a01b031683526001938401936020909301920161373b565b50508381036020850152613776818661331f565b9695505050505050565b6040516101e081016001600160401b03811182821017156137a3576137a36135fb565b60405290565b604051601f8201601f191681016001600160401b03811182821017156137d1576137d16135fb565b604052919050565b5f6001600160401b038211156137f1576137f16135fb565b50601f01601f191660200190565b5f82601f83011261380e575f5ffd5b81356001600160401b03811115613827576138276135fb565b8060051b613837602082016137a9565b91825260208185018101929081019086841115613852575f5ffd5b6020860192505b83831015613776578235825260209283019290910190613859565b5f5f60408385031215613885575f5ffd5b82356001600160401b0381111561389a575f5ffd5b8301601f810185136138aa575f5ffd5b80356138bd6138b8826137d9565b6137a9565b8181528660208385010111156138d1575f5ffd5b816020840160208301375f6020838301015280945050505060208301356001600160401b03811115613901575f5ffd5b61390d858286016137ff565b9150509250929050565b81810381811115610c6657610c666135d2565b805160048110611871575f5ffd5b5f82601f830112613947575f5ffd5b604080519081016001600160401b0381118282101715613969576139696135fb565b806040525080604084018581111561397f575f5ffd5b845b81811015613999578051835260209283019201613981565b509195945050505050565b805161187181613296565b5f82601f8301126139be575f5ffd5b81516139cc6138b8826137d9565b8181528460208386010111156139e0575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215613a0c575f5ffd5b81516001600160401b03811115613a21575f5ffd5b82016102008185031215613a33575f5ffd5b613a3b613780565b81518152613a4b6020830161392a565b602082015260408281015190820152613a678560608401613938565b606082015260a08201516080820152613a8260c083016139a4565b60a082015260e08201516001600160401b03811115613a9f575f5ffd5b613aab868285016139af565b60c0830152506101008201516001600160401b03811115613aca575f5ffd5b613ad6868285016139af565b60e083015250613ae961012083016139a4565b610100820152613afc61014083016139a4565b61012082015261016082810151610140830152610180830151908201526101a08201516001600160401b03811115613b32575f5ffd5b613b3e868285016139af565b61018083015250613b526101c083016139a4565b6101a0820152613b656101e083016136f5565b6101c0820152949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f613bae604083018688613b73565b8281036020840152613bc1818587613b73565b979650505050505050565b606080825281018690525f8760808301825b89811015613c0e578235613bf181613296565b6001600160a01b0316825260209283019290910190600101613bde565b508381036020850152613c2281888a613b73565b9150508281036040840152613c38818587613b73565b9998505050505050505050565b6020808252602a908201527f4c617a79494d543a206c656166206d757374206265203c20534e41524b5f53436040820152691053105497d19251531160b21b606082015260800190565b60ff8181168382160190811115610c6657610c666135d2565b64ffffffffff8181168382160190811115610c6657610c666135d2565b6040810181835f5b6002811015613cec578151835260209283019290910190600101613ccd565b50505092915050565b64ffffffffff8281168282160390811115610c6657610c666135d2565b5f82613d2c57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526023908201527f4c617a79494d543a206465707468206d757374206265203c3d204d41585f44456040820152620a0a8960eb1b606082015260800190565b6001815b6001841115610f1757808504811115613d9357613d936135d2565b6001841615613da157908102905b60019390931c928002613d78565b5f82613dbd57506001610c66565b81613dc957505f610c66565b8160018114613ddf5760028114613de957613e1b565b6001915050610c66565b60ff841115613dfa57613dfa6135d2565b6001841b915064ffffffffff821115613e1557613e156135d2565b50610c66565b5060208310610133831016604e8410600b8410161715613e53575081810a64ffffffffff811115613e4e57613e4e6135d2565b610c66565b613e6364ffffffffff8484613d74565b8064ffffffffff04821115613e7a57613e7a6135d2565b029392505050565b5f61255164ffffffffff841664ffffffffff8416613daf565b64ffffffffff8181168382160290811690818114613ebb57613ebb6135d2565b509291505056fea164736f6c634300081c000a", - "deployedBytecode": "0x608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80639f0f874a11610135578063e59e4695116100b4578063f26ef74e11610079578063f26ef74e1461057f578063f2fde38b14610592578063f379b0df146105a5578063f52fd803146105df578063f6fc05d514610651575f5ffd5b8063e59e469514610524578063e6745e1314610537578063e82f3b701461054a578063ebf0c7171461055d578063f165053614610565575f5ffd5b8063c3a0ec30116100fa578063c3a0ec30146104bc578063ca2869a0146104cd578063cd6dc687146104ec578063da881e5a146104ff578063dbb06c9314610512575f5ffd5b80639f0f874a1461044e578063a016493014610457578063a8a4d69b14610477578063bff232c11461048a578063c2b40ae41461049d575f5ffd5b8063715018a6116101c15780638d1ddfb1116101865780638d1ddfb1146103ce5780638da5cb5b146103e45780638e5ce3ad146103ec5780639015d371146103ff5780639a7a2ffc14610412575f5ffd5b8063715018a6146103475780637c92f5241461034f578063858142431461037c5780638a78bb151461039c5780638cb89ecb146103af575f5ffd5b80632e7b716d116102075780632e7b716d146102d95780634d6861a6146102ec57806350e6d94c146102ff5780635d5047761461032157806370e36bbe14610334575f5ffd5b8063096b810a146102435780630f3e34121461025857806317d611201461026b5780632800d82914610295578063291a691b146102b6575b5f5ffd5b6102566102513660046132aa565b61065a565b005b6102566102663660046132c5565b6107a6565b61027e6102793660046132c5565b6107e9565b60405161028c92919061334f565b60405180910390f35b6102a86102a33660046132c5565b610993565b60405190815260200161028c565b6102c96102c436600461337c565b6109df565b604051901515815260200161028c565b6102c96102e73660046132aa565b610bb9565b6102c96102fa3660046132c5565b610c6c565b6102c961030d3660046132aa565b60066020525f908152604090205460ff1681565b6102c961032f3660046133b5565b610cab565b6102566103423660046132aa565b610cef565b610256610d65565b61036261035d3660046133e3565b610d78565b6040805192835263ffffffff90911660208301520161028c565b60015461038f906001600160a01b031681565b60405161028c9190613418565b6102566103aa3660046132aa565b610f1f565b6102a86103bd3660046132c5565b60096020525f908152604090205481565b600454600160281b900464ffffffffff166102a8565b61038f61105d565b600b5461038f906001600160a01b031681565b6102c961040d3660046132aa565b61108b565b6104386104203660046132aa565b60076020525f908152604090205464ffffffffff1681565b60405164ffffffffff909116815260200161028c565b6102a860035481565b61046a6104653660046132c5565b6110a8565b60405161028c919061342c565b6102c96104853660046133b5565b61113e565b6102566104983660046132aa565b611182565b6102a86104ab3660046132c5565b60086020525f908152604090205481565b6001546001600160a01b031661038f565b6102a86104db3660046132c5565b5f9081526008602052604090205490565b6102566104fa36600461343e565b6111d3565b6102c961050d3660046132c5565b611330565b5f5461038f906001600160a01b031681565b6102566105323660046132aa565b61160a565b610256610545366004613468565b611682565b6102a86105583660046132c5565b611845565b6102a8611876565b61056d601481565b60405160ff909116815260200161028c565b61025661058d3660046134cc565b611888565b6102566105a03660046132aa565b611b7a565b6004546105c19064ffffffffff80821691600160281b90041682565b6040805164ffffffffff93841681529290911660208301520161028c565b6106226105ed3660046132c5565b5f908152600a6020819052604090912090810154600590910154909163ffffffff80831692600160201b900416908284101590565b60405161028c949392919093845263ffffffff9283166020850152911660408301521515606082015260800190565b6102a860025481565b61066261105d565b6001600160a01b0316336001600160a01b0316148061068b57506001546001600160a01b031633145b6106a857604051632864c4e160e01b815260040160405180910390fd5b6106b18161108b565b81906106da576040516381e5828960e01b81526004016106d19190613418565b60405180910390fd5b506001600160a01b0381165f9081526007602052604081205464ffffffffff16906107089060049083611bb4565b6001600160a01b0382165f908152600660205260408120805460ff191690556002805491610735836135e6565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f8c008e3835f6c79bfcdb89f0f6ca8705e0b01049ee84a90b0e4da1c7ba9405d5906060015b60405180910390a25050565b6107ae611e56565b60038190556040518181527fbe772dc189863d512fa01e489c8eac204975aef1a8662d8b5a333804b5207ab79060200160405180910390a150565b5f818152600a60208190526040909120600681015491810154606092839291806001600160401b03811115610820576108206135fb565b604051908082528060200260200182016040528015610849578160200160208202803683370190505b509450806001600160401b03811115610864576108646135fb565b60405190808252806020026020018201604052801561088d578160200160208202803683370190505b5093505f805b83811015610989575f8560060182815481106108b1576108b161360f565b5f918252602090912001546001600160a01b0316905060016001600160a01b0382165f90815260098801602052604090205460ff1660028111156108f7576108f7613623565b03610980578088848151811061090f5761090f61360f565b60200260200101906001600160a01b031690816001600160a01b031681525050856008015f826001600160a01b03166001600160a01b031681526020019081526020015f20548784815181106109675761096761360f565b60209081029190910101528261097c81613637565b9350505b50600101610893565b5050505050915091565b5f818152600a6020526040812081815460ff1660038111156109b7576109b7613623565b036109d557604051630d4c1d9760e41b815260040160405180910390fd5b6003015492915050565b5f80546001600160a01b03163314610a0a5760405163e4c2a7eb60e01b815260040160405180910390fd5b5f848152600a6020526040812090815460ff166003811115610a2e57610a2e613623565b14610a4c576040516374ff462560e11b815260040160405180910390fd5b60015460408051630cc37d8f60e11b815290515f926001600160a01b031691631986fb1e9160048083019260209291908290030181865afa158015610a93573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab7919061364f565b905080610aca6040860160208701613679565b63ffffffff161115610ae26040860160208701613679565b829091610b10576040516344ec930f60e01b815263ffffffff909216600483015260248201526044016106d1565b5050815460ff1916600190811783558201859055436002830155600354610b379042613692565b6003830155610b4b600583018560026131e1565b50610b54611876565b5f87815260086020526040908190209190915560028301546003840154915188927f381d281d32f95ef8fe4e5f3b263ea6a32d03d331e1a141ae1da996dc02a7a17092610ba5928a928a92916136a5565b60405180910390a250600195945050505050565b5f610bc38261108b565b610bce57505f919050565b6001546001600160a01b0316610bf7576040516350ca893360e01b815260040160405180910390fd5b600154604051639f8a13d760e01b81526001600160a01b0390911690639f8a13d790610c27908590600401613418565b602060405180830381865afa158015610c42573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c669190613704565b92915050565b5f818152600a602052604081206001815460ff166003811115610c9157610c91613623565b14610c9e57505f92915050565b6003015442111592915050565b5f60015f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff166002811115610ce757610ce7613623565b149392505050565b610cf7611e56565b6001600160a01b038116610d1e5760405163d92e233d60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b038316908117825560405190917f2c8267accd82e977550ed2349c73311183cd22e306347be4453c8d130995e3c991a250565b610d6d611e56565b610d765f611e88565b565b600b545f9081906001600160a01b03163314610da75760405163fcef374960e01b815260040160405180910390fd5b5f858152600a602052604090206002815460ff166003811115610dcc57610dcc613623565b14610dea57604051634f4b461f60e11b815260040160405180910390fd5b60058101546001600160a01b0386165f90815260098301602052604090205463ffffffff909116925060019060ff166002811115610e2a57610e2a613623565b14610e3a57600a01549150610f17565b6001600160a01b0385165f9081526009820160205260408120805460ff19166002179055600a8201805491610e6e836135e6565b919050555080600a01549250846001600160a01b0316867f6c783b92374361b4d6efaf29673b89437ee969bb3c9d2d5d86b143ad5447b8498686604051610ebf929190918252602082015260400190565b60405180910390a36040805184815263ffffffff84166020820181905285101591810182905287907f119cb11dd0a68c257d6dc9b06dcb37dd422ce276eb8bf3cd0b7079a116b8e2989060600160405180910390a250505b935093915050565b610f2761105d565b6001600160a01b0316336001600160a01b03161480610f5057506001546001600160a01b031633145b610f6d57604051632864c4e160e01b815260040160405180910390fd5b610f768161108b565b61105a5760048054600160281b900464ffffffffff1690610fa0906001600160a01b038416611ef8565b6001600160a01b0382165f908152600660209081526040808320805460ff1916600117905560079091528120805464ffffffffff841664ffffffffff199091161790556002805491610ff183613637565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f3318d261fe14a5761d2d1e21555652f623d2134c430a9883c9ad6e958bb0db539060600161079a565b50565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b03165f9081526006602052604090205460ff1690565b5f818152600a602052604090206004810154606091906110db576040516322e679e360e11b815260040160405180910390fd5b8060060180548060200260200160405190810160405280929190818152602001828054801561113157602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311611113575b5050505050915050919050565b5f805f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff16600281111561117957611179613623565b14159392505050565b61118a611e56565b6001600160a01b0381166111b15760405163d92e233d60e01b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6111dc6120ce565b805490915060ff600160401b82041615906001600160401b03165f811580156112025750825b90505f826001600160401b0316600114801561121d5750303b155b90508115801561122b575080155b156112495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561127357845460ff60401b1916600160401b1785555b6001600160a01b03871661129a5760405163d92e233d60e01b815260040160405180910390fd5b6112a3336120f6565b6112af60046014612107565b6112b8866107a6565b6112c061105d565b6001600160a01b0316876001600160a01b0316146112e1576112e187611b7a565b831561132757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f818152600a6020526040812081815460ff16600381111561135457611354613623565b0361137257604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff16600381111561138a5761138a613623565b146113a857604051631860f69960e31b815260040160405180910390fd5b806003015442116113cc57604051632f021e8d60e11b815260040160405180910390fd5b60058101546006820154600160201b90910463ffffffff161115806114b1578154600360ff199091161782556006820154600583015460408051928352600160201b90910463ffffffff16602083015285917fecc4a9fb7e28d074cba7f5b227e9b5827823c850a385539b9a2f98a08f8c203d910160405180910390a25f54604051635d968dc160e11b815260048101869052600260248201526001600160a01b039091169063bb2d1b82906044015f604051808303815f87803b158015611492575f5ffd5b505af11580156114a4573d5f5f3e3d5ffd5b505f979650505050505050565b815460ff191660021782556006820154600a83018190555f816001600160401b038111156114e1576114e16135fb565b60405190808252806020026020018201604052801561150a578160200160208202803683370190505b5090505f5b8281101561157c57846008015f8660060183815481106115315761153161360f565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205482518390839081106115695761156961360f565b602090810291909101015260010161150f565b505f54604051631f3ea75d60e21b8152600481018890526001600160a01b0390911690637cfa9d74906024015f604051808303815f87803b1580156115bf575f5ffd5b505af11580156115d1573d5f5f3e3d5ffd5b50505050857f4f1f5b329c741a8ba15e9645e301061294d0c1fdd455448ffd5e76ff255929d78560060183604051610ba592919061371d565b611612611e56565b6001600160a01b0381166116395760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a7905f90a250565b5f828152600a6020526040812090815460ff1660038111156116a6576116a6613623565b036116c457604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156116dc576116dc613623565b146116fa57604051631860f69960e31b815260040160405180910390fd5b806003015442111561171f57604051639a19114d60e01b815260040160405180910390fd5b335f90815260078201602052604090205460ff16156117515760405163257309f160e11b815260040160405180910390fd5b61175a33610bb9565b6117775760405163149fbcfd60e11b815260040160405180910390fd5b611782338385612186565b6001810154604080516bffffffffffffffffffffffff193360601b16602080830191909152603482018690526054820187905260748083019490945282518083039094018452609490910190915281519101205f90335f8181526007850160205260409020805460ff1916600117905590915061180190839083612357565b506040805184815260208101839052339186917f52999628fb1cb05707e842278833b22e511f11746202cecdf221968b0b89e8bd910160405180910390a350505050565b5f8181526009602052604090205480611871576040516322e679e360e11b815260040160405180910390fd5b919050565b5f61188360046014612558565b905090565b5f898152600a602052604090206002815460ff1660038111156118ad576118ad613623565b146118cb57604051634f4b461f60e11b815260040160405180910390fd5b6004810154156118ee5760405163632a22bb60e01b815260040160405180910390fd5b600681015488146119375760405162461bcd60e51b815260206004820152601360248201527209cdec8ca40c6deeadce840dad2e6dac2e8c6d606b1b60448201526064016106d1565b5f61194485870187613874565b9150505f81511161198e5760405162461bcd60e51b815260206004820152601460248201527343353a206e6f207075626c696320696e7075747360601b60448201526064016106d1565b5f816001835161199e9190613917565b815181106119ae576119ae61360f565b602002602001015190505f5f5f9054906101000a90046001600160a01b03166001600160a01b031663406ed35c8e6040518263ffffffff1660e01b81526004016119fa91815260200190565b5f60405180830381865afa158015611a14573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a3b91908101906139fc565b610120810151604051637bf41d7760e11b81529192506001600160a01b03169063f7e83aee90611a75908b908b908b908b90600401613b9b565b602060405180830381865afa158015611a90573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ab4919061364f565b5060048085018390555f8e815260096020526040808220859055905490516340a3b76160e11b81529182018f9052602482018490526001600160a01b0316906381476ec2906044015f604051808303815f87803b158015611b13575f5ffd5b505af1158015611b25573d5f5f3e3d5ffd5b505050508c7f49ac1dd411942113d1c5e6799c6379ce341afe85a4175fb562cf2a5fb886c27d8d8d8d8d8d8d604051611b6396959493929190613bcc565b60405180910390a250505050505050505050505050565b611b82611e56565b6001600160a01b038116611bab575f604051631e4fbdf760e01b81526004016106d19190613418565b61105a81611e88565b7f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611bf35760405162461bcd60e51b81526004016106d190613c45565b825464ffffffffff600160281b90910481169082168111611c515760405162461bcd60e51b815260206004820152601860248201527713185e9e5253550e881b195859881b5d5cdd08195e1a5cdd60421b60448201526064016106d1565b825f5b81866001015f611c648488612651565b64ffffffffff1681526020019081526020015f20819055505f816001611c8a9190613c8f565b60ff168464ffffffffff16901c64ffffffffff16905060018564ffffffffff16901c64ffffffffff168111611cbf5750611e4e565b600185165f03611d86575f611cde83611cd9886001613ca8565b612651565b60408051808201825286815264ffffffffff83165f90815260018c0160209081529083902054908201529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611d3f91600401613cc5565b602060405180830381865af4158015611d5a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7e919061364f565b935050611e3a565b5f611d9683611cd9600189613cf5565b60408051808201825264ffffffffff83165f90815260018c0160209081529083902054825281018790529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611df791600401613cc5565b602060405180830381865af4158015611e12573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e36919061364f565b9350505b50647fffffffff600194851c169301611c54565b505050505050565b33611e5f61105d565b6001600160a01b031614610d76573360405163118cdaa760e01b81526004016106d19190613418565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b8154600160281b900464ffffffffff167f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611f475760405162461bcd60e51b81526004016106d190613c45565b825464ffffffffff90811690821610611f9a5760405162461bcd60e51b815260206004820152601560248201527413185e9e5253550e881d1c9959481a5cc8199d5b1b605a1b60448201526064016106d1565b611fa5816001613ca8565b835464ffffffffff91909116600160281b0269ffffffffff000000000019909116178355815f5b81856001015f611fdc8487612651565b64ffffffffff16815260208101919091526040015f205560018316156120c7575f61200c82611cd9600187613cf5565b60408051808201825264ffffffffff83165f90815260018a0160209081529083902054825281018690529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe9161206d91600401613cc5565b602060405180830381865af4158015612088573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ac919061364f565b647fffffffff600195861c1694909350919091019050611fcc565b5050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610c66565b6120fe61266e565b61105a81612693565b602060ff821611156121555760405162461bcd60e51b81526020600482015260176024820152764c617a79494d543a205472656520746f6f206c6172676560481b60448201526064016106d1565b612166600160ff831681901b613917565b825469ffffffffffffffffffff191664ffffffffff919091161790915550565b5f82116121a65760405163aeaddff160e01b815260040160405180910390fd5b6001546001600160a01b03166121cf576040516350ca893360e01b815260040160405180910390fd5b5f818152600a602052604081206001805460028301549293926001600160a01b039091169163bb03bd7191889161220591613917565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa15801561224c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612270919061364f565b90505f60015f9054906101000a90046001600160a01b03166001600160a01b0316631209b1f66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122c3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122e7919061364f565b90505f81116123095760405163aeaddff160e01b815260040160405180910390fd5b5f6123148284613d12565b90505f81116123365760405163149fbcfd60e11b815260040160405180910390fd5b808611156113275760405163aeaddff160e01b815260040160405180910390fd5b60058301546006840180545f92600160201b900463ffffffff16908111156123d557508054600180820183555f928352602080842090920180546001600160a01b0319166001600160a01b03881690811790915583526008870182526040808420869055600988019092529120805460ff1916821790559050612551565b5f5f90505f876008015f855f815481106123f1576123f161360f565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905060015b8454811015612479575f896008015f87848154811061243b5761243b61360f565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905082811115612470578092508193505b5060010161241a565b5080861061248d575f945050505050612551565b5f886009015f8685815481106124a5576124a561360f565b5f9182526020808320909101546001600160a01b031683528201929092526040019020805460ff191660018360028111156124e2576124e2613623565b0217905550868483815481106124fa576124fa61360f565b5f91825260208083209190910180546001600160a01b0319166001600160a01b03948516179055918916815260088a018252604080822089905560098b0190925220805460ff191660019081179091559450505050505b9392505050565b5f5f8260ff16116125ab5760405162461bcd60e51b815260206004820152601a60248201527f4c617a79494d543a206465707468206d757374206265203e203000000000000060448201526064016106d1565b602060ff831611156125cf5760405162461bcd60e51b81526004016106d190613d31565b8254600160281b900464ffffffffff16806125ee60ff85166002613e82565b64ffffffffff16101561263e5760405162461bcd60e51b8152602060048201526018602482015277098c2f4f2929aa87440c2dac4d2ceeadeeae640c8cae0e8d60431b60448201526064016106d1565b61264984828561269b565b949350505050565b5f8161266460ff851663ffffffff613e9b565b6125519190613ca8565b612676612763565b610d7657604051631afcd79f60e31b815260040160405180910390fd5b611b8261266e565b5f602060ff831611156126c05760405162461bcd60e51b81526004016106d190613d31565b8264ffffffffff165f036126de576126d78261277c565b9050612551565b5f6126ea836001613c8f565b60ff166001600160401b03811115612704576127046135fb565b60405190808252806020026020018201604052801561272d578160200160208202803683370190505b50905061273c85858584612e16565b808360ff16815181106127515761275161360f565b60200260200101519150509392505050565b5f61276c6120ce565b54600160401b900460ff16919050565b5f8160ff165f0361278e57505f919050565b8160ff166001036127c057507f2098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864919050565b8160ff166002036127f257507f1069673dcdb12263df301a6ff584a7ec261a44cb9dc68df067a4774460b1f1e1919050565b8160ff1660030361282457507f18f43331537ee2af2e3d758d50f72106467c6eea50371dd528d57eb2b856d238919050565b8160ff1660040361285657507f07f9d837cb17b0d36320ffe93ba52345f1b728571a568265caac97559dbc952a919050565b8160ff1660050361288857507f2b94cf5e8746b3f5c9631f4c5df32907a699c58c94b2ad4d7b5cec1639183f55919050565b8160ff166006036128ba57507f2dee93c5a666459646ea7d22cca9e1bcfed71e6951b953611d11dda32ea09d78919050565b8160ff166007036128ec57507f078295e5a22b84e982cf601eb639597b8b0515a88cb5ac7fa8a4aabe3c87349d919050565b8160ff1660080361291e57507f2fa5e5f18f6027a6501bec864564472a616b2e274a41211a444cbe3a99f3cc61919050565b8160ff1660090361295057507f0e884376d0d8fd21ecb780389e941f66e45e7acce3e228ab3e2156a614fcd747919050565b8160ff16600a0361298257507f1b7201da72494f1e28717ad1a52eb469f95892f957713533de6175e5da190af2919050565b8160ff16600b036129b457507f1f8d8822725e36385200c0b201249819a6e6e1e4650808b5bebc6bface7d7636919050565b8160ff16600c036129e657507f2c5d82f66c914bafb9701589ba8cfcfb6162b0a12acf88a8d0879a0471b5f85a919050565b8160ff16600d03612a1857507f14c54148a0940bb820957f5adf3fa1134ef5c4aaa113f4646458f270e0bfbfd0919050565b8160ff16600e03612a4a57507f190d33b12f986f961e10c0ee44d8b9af11be25588cad89d416118e4bf4ebe80c919050565b8160ff16600f03612a7c57507f22f98aa9ce704152ac17354914ad73ed1167ae6596af510aa5b3649325e06c92919050565b8160ff16601003612aae57507f2a7c7c9b6ce5880b9f6f228d72bf6a575a526f29c66ecceef8b753d38bba7323919050565b8160ff16601103612ae057507f2e8186e558698ec1c67af9c14d463ffc470043c9c2988b954d75dd643f36b992919050565b8160ff16601203612b1257507f0f57c5571e9a4eab49e2c8cf050dae948aef6ead647392273546249d1c1ff10f919050565b8160ff16601303612b4457507f1830ee67b5fb554ad5f63d4388800e1cfe78e310697d46e43c9ce36134f72cca919050565b8160ff16601403612b7657507f2134e76ac5d21aab186c2be1dd8f84ee880a1e46eaf712f9d371b6df22191f3e919050565b8160ff16601503612ba857507f19df90ec844ebc4ffeebd866f33859b0c051d8c958ee3aa88f8f8df3db91a5b1919050565b8160ff16601603612bda57507f18cca2a66b5c0787981e69aefd84852d74af0e93ef4912b4648c05f722efe52b919050565b8160ff16601703612c0c57507f2388909415230d1b4d1304d2d54f473a628338f2efad83fadf05644549d2538d919050565b8160ff16601803612c3e57507f27171fb4a97b6cc0e9e8f543b5294de866a2af2c9c8d0b1d96e673e4529ed540919050565b8160ff16601903612c7057507f2ff6650540f629fd5711a0bc74fc0d28dcb230b9392583e5f8d59696dde6ae21919050565b8160ff16601a03612ca257507f120c58f143d491e95902f7f5277778a2e0ad5168f6add75669932630ce611518919050565b8160ff16601b03612cd457507f1f21feb70d3f21b07bf853d5e5db03071ec495a0a565a21da2d665d279483795919050565b8160ff16601c03612d0657507f24be905fa71335e14c638cc0f66a8623a826e768068a9e968bb1a1dde18a72d2919050565b8160ff16601d03612d3857507f0f8666b62ed17491c50ceadead57d4cd597ef3821d65c328744c74e553dac26d919050565b8160ff16601e03612d6a57507f0918d46bf52d98b034413f4a1a1c41594e7a7a3f6ae08cb43d1a2a230e1959ef919050565b8160ff16601f03612d9c57507f1bbeb01b4c479ecde76917645e404dfa2e26f90d0afc5a65128513ad375c5ff2919050565b8160ff16602003612dce57507f2f68a1c58e257e42a17a6c61dff5551ed560b9922ab119d5ac8e184c9734ead9919050565b60405162461bcd60e51b815260206004820152601e60248201527f4c617a79494d543a2064656661756c745a65726f2062616420696e646578000060448201526064016106d1565b602060ff83161115612e3a5760405162461bcd60e51b81526004016106d190613d31565b5f8364ffffffffff1611612e9e5760405162461bcd60e51b815260206004820152602560248201527f4c617a79494d543a206e756d626572206f66206c6561766573206d7573742062604482015264065203e20360dc1b60648201526084016106d1565b5f612eaa600185613cf5565b9050600181165f03612efd57846001015f612ec55f84612651565b64ffffffffff1681526020019081526020015f2054825f81518110612eec57612eec61360f565b602002602001018181525050612f25565b612f065f61277c565b825f81518110612f1857612f1861360f565b6020026020010181815250505b5f5b8360ff168160ff161015611e4e57600182165f0361301d5773__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280868560ff1681518110612f7957612f7961360f565b60200260200101518152602001612f8f8561277c565b8152506040518263ffffffff1660e01b8152600401612fae9190613cc5565b602060405180830381865af4158015612fc9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fed919061364f565b83612ff9836001613c8f565b60ff168151811061300c5761300c61360f565b6020026020010181815250506131ce565b5f613029826001613c8f565b60ff168664ffffffffff16901c64ffffffffff16905060018364ffffffffff16901c64ffffffffff168111156130cb575f876001015f61308085600161306f9190613c8f565b60018864ffffffffff16901c612651565b64ffffffffff1681526020019081526020015f2054905080858460016130a69190613c8f565b60ff16815181106130b9576130b961360f565b602002602001018181525050506131cc565b5f876001015f6130e285600188611cd99190613cf5565b64ffffffffff1681526020019081526020015f2054905073__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280848152602001888760ff16815181106131395761313961360f565b60200260200101518152506040518263ffffffff1660e01b81526004016131609190613cc5565b602060405180830381865af415801561317b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061319f919061364f565b856131ab856001613c8f565b60ff16815181106131be576131be61360f565b602002602001018181525050505b505b647fffffffff600192831c169101612f27565b600183019183908215613272579160200282015f5b8382111561324057833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026131f6565b80156132705782816101000a81549063ffffffff0219169055600401602081600301049283019260010302613240565b505b5061327e929150613282565b5090565b5b8082111561327e575f8155600101613283565b6001600160a01b038116811461105a575f5ffd5b5f602082840312156132ba575f5ffd5b813561255181613296565b5f602082840312156132d5575f5ffd5b5035919050565b5f8151808452602084019350602083015f5b828110156133155781516001600160a01b03168652602095860195909101906001016132ee565b5093949350505050565b5f8151808452602084019350602083015f5b82811015613315578151865260209586019590910190600101613331565b604081525f61336160408301856132dc565b8281036020840152613373818561331f565b95945050505050565b5f5f5f6080848603121561338e575f5ffd5b8335925060208401359150608084018510156133a8575f5ffd5b6040840190509250925092565b5f5f604083850312156133c6575f5ffd5b8235915060208301356133d881613296565b809150509250929050565b5f5f5f606084860312156133f5575f5ffd5b83359250602084013561340781613296565b929592945050506040919091013590565b6001600160a01b0391909116815260200190565b602081525f61255160208301846132dc565b5f5f6040838503121561344f575f5ffd5b823561345a81613296565b946020939093013593505050565b5f5f60408385031215613479575f5ffd5b50508035926020909101359150565b5f5f83601f840112613498575f5ffd5b5081356001600160401b038111156134ae575f5ffd5b6020830191508360208285010111156134c5575f5ffd5b9250929050565b5f5f5f5f5f5f5f5f5f60a08a8c0312156134e4575f5ffd5b8935985060208a01356001600160401b03811115613500575f5ffd5b8a01601f81018c13613510575f5ffd5b80356001600160401b03811115613525575f5ffd5b8c60208260051b8401011115613539575f5ffd5b6020919091019850965060408a01356001600160401b0381111561355b575f5ffd5b6135678c828d01613488565b90975095505060608a01356001600160401b03811115613585575f5ffd5b6135918c828d01613488565b90955093505060808a01356001600160401b038111156135af575f5ffd5b6135bb8c828d01613488565b915080935050809150509295985092959850929598565b634e487b7160e01b5f52601160045260245ffd5b5f816135f4576135f46135d2565b505f190190565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b5f60018201613648576136486135d2565b5060010190565b5f6020828403121561365f575f5ffd5b5051919050565b803563ffffffff81168114611871575f5ffd5b5f60208284031215613689575f5ffd5b61255182613666565b80820180821115610c6657610c666135d2565b84815260a0810160208201855f5b60028110156136e05763ffffffff6136ca83613666565b16835260209283019291909101906001016136b3565b50505060608201939093526080015292915050565b80518015158114611871575f5ffd5b5f60208284031215613714575f5ffd5b612551826136f5565b604080825283549082018190525f8481526020812090916060840190835b818110156137625783546001600160a01b031683526001938401936020909301920161373b565b50508381036020850152613776818661331f565b9695505050505050565b6040516101e081016001600160401b03811182821017156137a3576137a36135fb565b60405290565b604051601f8201601f191681016001600160401b03811182821017156137d1576137d16135fb565b604052919050565b5f6001600160401b038211156137f1576137f16135fb565b50601f01601f191660200190565b5f82601f83011261380e575f5ffd5b81356001600160401b03811115613827576138276135fb565b8060051b613837602082016137a9565b91825260208185018101929081019086841115613852575f5ffd5b6020860192505b83831015613776578235825260209283019290910190613859565b5f5f60408385031215613885575f5ffd5b82356001600160401b0381111561389a575f5ffd5b8301601f810185136138aa575f5ffd5b80356138bd6138b8826137d9565b6137a9565b8181528660208385010111156138d1575f5ffd5b816020840160208301375f6020838301015280945050505060208301356001600160401b03811115613901575f5ffd5b61390d858286016137ff565b9150509250929050565b81810381811115610c6657610c666135d2565b805160048110611871575f5ffd5b5f82601f830112613947575f5ffd5b604080519081016001600160401b0381118282101715613969576139696135fb565b806040525080604084018581111561397f575f5ffd5b845b81811015613999578051835260209283019201613981565b509195945050505050565b805161187181613296565b5f82601f8301126139be575f5ffd5b81516139cc6138b8826137d9565b8181528460208386010111156139e0575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215613a0c575f5ffd5b81516001600160401b03811115613a21575f5ffd5b82016102008185031215613a33575f5ffd5b613a3b613780565b81518152613a4b6020830161392a565b602082015260408281015190820152613a678560608401613938565b606082015260a08201516080820152613a8260c083016139a4565b60a082015260e08201516001600160401b03811115613a9f575f5ffd5b613aab868285016139af565b60c0830152506101008201516001600160401b03811115613aca575f5ffd5b613ad6868285016139af565b60e083015250613ae961012083016139a4565b610100820152613afc61014083016139a4565b61012082015261016082810151610140830152610180830151908201526101a08201516001600160401b03811115613b32575f5ffd5b613b3e868285016139af565b61018083015250613b526101c083016139a4565b6101a0820152613b656101e083016136f5565b6101c0820152949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f613bae604083018688613b73565b8281036020840152613bc1818587613b73565b979650505050505050565b606080825281018690525f8760808301825b89811015613c0e578235613bf181613296565b6001600160a01b0316825260209283019290910190600101613bde565b508381036020850152613c2281888a613b73565b9150508281036040840152613c38818587613b73565b9998505050505050505050565b6020808252602a908201527f4c617a79494d543a206c656166206d757374206265203c20534e41524b5f53436040820152691053105497d19251531160b21b606082015260800190565b60ff8181168382160190811115610c6657610c666135d2565b64ffffffffff8181168382160190811115610c6657610c666135d2565b6040810181835f5b6002811015613cec578151835260209283019290910190600101613ccd565b50505092915050565b64ffffffffff8281168282160390811115610c6657610c666135d2565b5f82613d2c57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526023908201527f4c617a79494d543a206465707468206d757374206265203c3d204d41585f44456040820152620a0a8960eb1b606082015260800190565b6001815b6001841115610f1757808504811115613d9357613d936135d2565b6001841615613da157908102905b60019390931c928002613d78565b5f82613dbd57506001610c66565b81613dc957505f610c66565b8160018114613ddf5760028114613de957613e1b565b6001915050610c66565b60ff841115613dfa57613dfa6135d2565b6001841b915064ffffffffff821115613e1557613e156135d2565b50610c66565b5060208310610133831016604e8410600b8410161715613e53575081810a64ffffffffff811115613e4e57613e4e6135d2565b610c66565b613e6364ffffffffff8484613d74565b8064ffffffffff04821115613e7a57613e7a6135d2565b029392505050565b5f61255164ffffffffff841664ffffffffff8416613daf565b64ffffffffff8181168382160290811690818114613ebb57613ebb6135d2565b509291505056fea164736f6c634300081c000a", + "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613e22806100d65f395ff3fe608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80639f0f874a11610135578063e59e4695116100b4578063f26ef74e11610079578063f26ef74e14610571578063f2fde38b14610584578063f379b0df14610597578063f52fd803146105d1578063f6fc05d514610643575f5ffd5b8063e59e469514610516578063e6745e1314610529578063e82f3b701461053c578063ebf0c7171461054f578063f165053614610557575f5ffd5b8063c3a0ec30116100fa578063c3a0ec30146104ae578063ca2869a0146104bf578063cd6dc687146104de578063da881e5a146104f1578063dbb06c9314610504575f5ffd5b80639f0f874a1461044d578063a016493014610456578063a8a4d69b14610469578063bff232c11461047c578063c2b40ae41461048f575f5ffd5b8063715018a6116101c15780638d1ddfb1116101865780638d1ddfb1146103cd5780638da5cb5b146103e35780638e5ce3ad146103eb5780639015d371146103fe5780639a7a2ffc14610411575f5ffd5b8063715018a6146103465780637c92f5241461034e578063858142431461037b5780638a78bb151461039b5780638cb89ecb146103ae575f5ffd5b80632e7b716d116102075780632e7b716d146102d85780634d6861a6146102eb57806350e6d94c146102fe5780635d5047761461032057806370e36bbe14610333575f5ffd5b8063096b810a146102435780630f3e34121461025857806317d611201461026b5780632800d82914610294578063291a691b146102b5575b5f5ffd5b61025661025136600461323c565b61064c565b005b610256610266366004613257565b610798565b61027e610279366004613257565b6107db565b60405161028b919061326e565b60405180910390f35b6102a76102a2366004613257565b61091d565b60405190815260200161028b565b6102c86102c33660046132b9565b610969565b604051901515815260200161028b565b6102c86102e636600461323c565b610b43565b6102c86102f9366004613257565b610bf6565b6102c861030c36600461323c565b60066020525f908152604090205460ff1681565b6102c861032e3660046132f2565b610c35565b61025661034136600461323c565b610c79565b610256610cef565b61036161035c366004613320565b610d02565b6040805192835263ffffffff90911660208301520161028b565b60015461038e906001600160a01b031681565b60405161028b9190613355565b6102566103a936600461323c565b610ea9565b6102a76103bc366004613257565b60096020525f908152604090205481565b600454600160281b900464ffffffffff166102a7565b61038e610fe7565b600b5461038e906001600160a01b031681565b6102c861040c36600461323c565b611015565b61043761041f36600461323c565b60076020525f908152604090205464ffffffffff1681565b60405164ffffffffff909116815260200161028b565b6102a760035481565b61027e610464366004613257565b611032565b6102c86104773660046132f2565b6110c8565b61025661048a36600461323c565b61110c565b6102a761049d366004613257565b60086020525f908152604090205481565b6001546001600160a01b031661038e565b6102a76104cd366004613257565b5f9081526008602052604090205490565b6102566104ec366004613369565b61115d565b6102c86104ff366004613257565b6112ba565b5f5461038e906001600160a01b031681565b61025661052436600461323c565b611594565b610256610537366004613393565b61160c565b6102a761054a366004613257565b6117cf565b6102a7611800565b61055f601481565b60405160ff909116815260200161028b565b61025661057f3660046133f7565b611812565b61025661059236600461323c565b611b0c565b6004546105b39064ffffffffff80821691600160281b90041682565b6040805164ffffffffff93841681529290911660208301520161028b565b6106146105df366004613257565b5f908152600a6020819052604090912090810154600590910154909163ffffffff80831692600160201b900416908284101590565b60405161028b949392919093845263ffffffff9283166020850152911660408301521515606082015260800190565b6102a760025481565b610654610fe7565b6001600160a01b0316336001600160a01b0316148061067d57506001546001600160a01b031633145b61069a57604051632864c4e160e01b815260040160405180910390fd5b6106a381611015565b81906106cc576040516381e5828960e01b81526004016106c39190613355565b60405180910390fd5b506001600160a01b0381165f9081526007602052604081205464ffffffffff16906106fa9060049083611b46565b6001600160a01b0382165f908152600660205260408120805460ff19169055600280549161072783613511565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f8c008e3835f6c79bfcdb89f0f6ca8705e0b01049ee84a90b0e4da1c7ba9405d5906060015b60405180910390a25050565b6107a0611de8565b60038190556040518181527fbe772dc189863d512fa01e489c8eac204975aef1a8662d8b5a333804b5207ab79060200160405180910390a150565b5f818152600a602081905260408220600681015491810154606093919291816001600160401b0381111561081157610811613526565b60405190808252806020026020018201604052801561083a578160200160208202803683370190505b5090505f805b84811015610911576001866009015f8860060184815481106108645761086461354e565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205460ff16600281111561089c5761089c61353a565b03610909578560060181815481106108b6576108b661354e565b905f5260205f20015f9054906101000a90046001600160a01b03168383815181106108e3576108e361354e565b6001600160a01b03909216602092830291909101909101528161090581613562565b9250505b600101610840565b50909695505050505050565b5f818152600a6020526040812081815460ff1660038111156109415761094161353a565b0361095f57604051630d4c1d9760e41b815260040160405180910390fd5b6003015492915050565b5f80546001600160a01b031633146109945760405163e4c2a7eb60e01b815260040160405180910390fd5b5f848152600a6020526040812090815460ff1660038111156109b8576109b861353a565b146109d6576040516374ff462560e11b815260040160405180910390fd5b60015460408051630cc37d8f60e11b815290515f926001600160a01b031691631986fb1e9160048083019260209291908290030181865afa158015610a1d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a41919061357a565b905080610a5460408601602087016135a4565b63ffffffff161115610a6c60408601602087016135a4565b829091610a9a576040516344ec930f60e01b815263ffffffff909216600483015260248201526044016106c3565b5050815460ff1916600190811783558201859055436002830155600354610ac190426135bd565b6003830155610ad560058301856002613173565b50610ade611800565b5f87815260086020526040908190209190915560028301546003840154915188927f381d281d32f95ef8fe4e5f3b263ea6a32d03d331e1a141ae1da996dc02a7a17092610b2f928a928a92916135d0565b60405180910390a250600195945050505050565b5f610b4d82611015565b610b5857505f919050565b6001546001600160a01b0316610b81576040516350ca893360e01b815260040160405180910390fd5b600154604051639f8a13d760e01b81526001600160a01b0390911690639f8a13d790610bb1908590600401613355565b602060405180830381865afa158015610bcc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf0919061362f565b92915050565b5f818152600a602052604081206001815460ff166003811115610c1b57610c1b61353a565b14610c2857505f92915050565b6003015442111592915050565b5f60015f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff166002811115610c7157610c7161353a565b149392505050565b610c81611de8565b6001600160a01b038116610ca85760405163d92e233d60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b038316908117825560405190917f2c8267accd82e977550ed2349c73311183cd22e306347be4453c8d130995e3c991a250565b610cf7611de8565b610d005f611e1a565b565b600b545f9081906001600160a01b03163314610d315760405163fcef374960e01b815260040160405180910390fd5b5f858152600a602052604090206002815460ff166003811115610d5657610d5661353a565b14610d7457604051634f4b461f60e11b815260040160405180910390fd5b60058101546001600160a01b0386165f90815260098301602052604090205463ffffffff909116925060019060ff166002811115610db457610db461353a565b14610dc457600a01549150610ea1565b6001600160a01b0385165f9081526009820160205260408120805460ff19166002179055600a8201805491610df883613511565b919050555080600a01549250846001600160a01b0316867f6c783b92374361b4d6efaf29673b89437ee969bb3c9d2d5d86b143ad5447b8498686604051610e49929190918252602082015260400190565b60405180910390a36040805184815263ffffffff84166020820181905285101591810182905287907f119cb11dd0a68c257d6dc9b06dcb37dd422ce276eb8bf3cd0b7079a116b8e2989060600160405180910390a250505b935093915050565b610eb1610fe7565b6001600160a01b0316336001600160a01b03161480610eda57506001546001600160a01b031633145b610ef757604051632864c4e160e01b815260040160405180910390fd5b610f0081611015565b610fe45760048054600160281b900464ffffffffff1690610f2a906001600160a01b038416611e8a565b6001600160a01b0382165f908152600660209081526040808320805460ff1916600117905560079091528120805464ffffffffff841664ffffffffff199091161790556002805491610f7b83613562565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f3318d261fe14a5761d2d1e21555652f623d2134c430a9883c9ad6e958bb0db539060600161078c565b50565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b03165f9081526006602052604090205460ff1690565b5f818152600a60205260409020600481015460609190611065576040516322e679e360e11b815260040160405180910390fd5b806006018054806020026020016040519081016040528092919081815260200182805480156110bb57602002820191905f5260205f20905b81546001600160a01b0316815260019091019060200180831161109d575b5050505050915050919050565b5f805f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff1660028111156111035761110361353a565b14159392505050565b611114611de8565b6001600160a01b03811661113b5760405163d92e233d60e01b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b5f611166612060565b805490915060ff600160401b82041615906001600160401b03165f8115801561118c5750825b90505f826001600160401b031660011480156111a75750303b155b9050811580156111b5575080155b156111d35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156111fd57845460ff60401b1916600160401b1785555b6001600160a01b0387166112245760405163d92e233d60e01b815260040160405180910390fd5b61122d33612088565b61123960046014612099565b61124286610798565b61124a610fe7565b6001600160a01b0316876001600160a01b03161461126b5761126b87611b0c565b83156112b157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f818152600a6020526040812081815460ff1660038111156112de576112de61353a565b036112fc57604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156113145761131461353a565b1461133257604051631860f69960e31b815260040160405180910390fd5b8060030154421161135657604051632f021e8d60e11b815260040160405180910390fd5b60058101546006820154600160201b90910463ffffffff1611158061143b578154600360ff199091161782556006820154600583015460408051928352600160201b90910463ffffffff16602083015285917fecc4a9fb7e28d074cba7f5b227e9b5827823c850a385539b9a2f98a08f8c203d910160405180910390a25f54604051635d968dc160e11b815260048101869052600260248201526001600160a01b039091169063bb2d1b82906044015f604051808303815f87803b15801561141c575f5ffd5b505af115801561142e573d5f5f3e3d5ffd5b505f979650505050505050565b815460ff191660021782556006820154600a83018190555f816001600160401b0381111561146b5761146b613526565b604051908082528060200260200182016040528015611494578160200160208202803683370190505b5090505f5b8281101561150657846008015f8660060183815481106114bb576114bb61354e565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205482518390839081106114f3576114f361354e565b6020908102919091010152600101611499565b505f54604051631f3ea75d60e21b8152600481018890526001600160a01b0390911690637cfa9d74906024015f604051808303815f87803b158015611549575f5ffd5b505af115801561155b573d5f5f3e3d5ffd5b50505050857f4f1f5b329c741a8ba15e9645e301061294d0c1fdd455448ffd5e76ff255929d78560060183604051610b2f929190613648565b61159c611de8565b6001600160a01b0381166115c35760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a7905f90a250565b5f828152600a6020526040812090815460ff1660038111156116305761163061353a565b0361164e57604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156116665761166661353a565b1461168457604051631860f69960e31b815260040160405180910390fd5b80600301544211156116a957604051639a19114d60e01b815260040160405180910390fd5b335f90815260078201602052604090205460ff16156116db5760405163257309f160e11b815260040160405180910390fd5b6116e433610b43565b6117015760405163149fbcfd60e11b815260040160405180910390fd5b61170c338385612118565b6001810154604080516bffffffffffffffffffffffff193360601b16602080830191909152603482018690526054820187905260748083019490945282518083039094018452609490910190915281519101205f90335f8181526007850160205260409020805460ff1916600117905590915061178b908390836122e9565b506040805184815260208101839052339186917f52999628fb1cb05707e842278833b22e511f11746202cecdf221968b0b89e8bd910160405180910390a350505050565b5f81815260096020526040902054806117fb576040516322e679e360e11b815260040160405180910390fd5b919050565b5f61180d600460146124ea565b905090565b61181a611de8565b5f898152600a602052604090206002815460ff16600381111561183f5761183f61353a565b1461185d57604051634f4b461f60e11b815260040160405180910390fd5b6004810154156118805760405163632a22bb60e01b815260040160405180910390fd5b600681015488146118c95760405162461bcd60e51b815260206004820152601360248201527209cdec8ca40c6deeadce840dad2e6dac2e8c6d606b1b60448201526064016106c3565b5f6118d6858701876137d2565b9150505f8151116119205760405162461bcd60e51b815260206004820152601460248201527343353a206e6f207075626c696320696e7075747360601b60448201526064016106c3565b5f81600183516119309190613875565b815181106119405761194061354e565b602002602001015190505f5f5f9054906101000a90046001600160a01b03166001600160a01b031663406ed35c8e6040518263ffffffff1660e01b815260040161198c91815260200190565b5f60405180830381865afa1580156119a6573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526119cd9190810190613968565b610120810151604051637bf41d7760e11b81529192506001600160a01b03169063f7e83aee90611a07908b908b908b908b90600401613aee565b602060405180830381865afa158015611a22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a46919061357a565b5060048085018390555f8e815260096020526040808220859055905490516340a3b76160e11b81529182018f9052602482018490526001600160a01b0316906381476ec2906044015f604051808303815f87803b158015611aa5575f5ffd5b505af1158015611ab7573d5f5f3e3d5ffd5b505050508c7f49ac1dd411942113d1c5e6799c6379ce341afe85a4175fb562cf2a5fb886c27d8d8d8d8d8d8d604051611af596959493929190613b1f565b60405180910390a250505050505050505050505050565b611b14611de8565b6001600160a01b038116611b3d575f604051631e4fbdf760e01b81526004016106c39190613355565b610fe481611e1a565b7f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611b855760405162461bcd60e51b81526004016106c390613b98565b825464ffffffffff600160281b90910481169082168111611be35760405162461bcd60e51b815260206004820152601860248201527713185e9e5253550e881b195859881b5d5cdd08195e1a5cdd60421b60448201526064016106c3565b825f5b81866001015f611bf684886125e3565b64ffffffffff1681526020019081526020015f20819055505f816001611c1c9190613be2565b60ff168464ffffffffff16901c64ffffffffff16905060018564ffffffffff16901c64ffffffffff168111611c515750611de0565b600185165f03611d18575f611c7083611c6b886001613bfb565b6125e3565b60408051808201825286815264ffffffffff83165f90815260018c0160209081529083902054908201529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611cd191600401613c18565b602060405180830381865af4158015611cec573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d10919061357a565b935050611dcc565b5f611d2883611c6b600189613c48565b60408051808201825264ffffffffff83165f90815260018c0160209081529083902054825281018790529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611d8991600401613c18565b602060405180830381865af4158015611da4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc8919061357a565b9350505b50647fffffffff600194851c169301611be6565b505050505050565b33611df1610fe7565b6001600160a01b031614610d00573360405163118cdaa760e01b81526004016106c39190613355565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b8154600160281b900464ffffffffff167f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611ed95760405162461bcd60e51b81526004016106c390613b98565b825464ffffffffff90811690821610611f2c5760405162461bcd60e51b815260206004820152601560248201527413185e9e5253550e881d1c9959481a5cc8199d5b1b605a1b60448201526064016106c3565b611f37816001613bfb565b835464ffffffffff91909116600160281b0269ffffffffff000000000019909116178355815f5b81856001015f611f6e84876125e3565b64ffffffffff16815260208101919091526040015f20556001831615612059575f611f9e82611c6b600187613c48565b60408051808201825264ffffffffff83165f90815260018a0160209081529083902054825281018690529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611fff91600401613c18565b602060405180830381865af415801561201a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061203e919061357a565b647fffffffff600195861c1694909350919091019050611f5e565b5050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610bf0565b612090612600565b610fe481612625565b602060ff821611156120e75760405162461bcd60e51b81526020600482015260176024820152764c617a79494d543a205472656520746f6f206c6172676560481b60448201526064016106c3565b6120f8600160ff831681901b613875565b825469ffffffffffffffffffff191664ffffffffff919091161790915550565b5f82116121385760405163aeaddff160e01b815260040160405180910390fd5b6001546001600160a01b0316612161576040516350ca893360e01b815260040160405180910390fd5b5f818152600a602052604081206001805460028301549293926001600160a01b039091169163bb03bd7191889161219791613875565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa1580156121de573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612202919061357a565b90505f60015f9054906101000a90046001600160a01b03166001600160a01b0316631209b1f66040518163ffffffff1660e01b8152600401602060405180830381865afa158015612255573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612279919061357a565b90505f811161229b5760405163aeaddff160e01b815260040160405180910390fd5b5f6122a68284613c65565b90505f81116122c85760405163149fbcfd60e11b815260040160405180910390fd5b808611156112b15760405163aeaddff160e01b815260040160405180910390fd5b60058301546006840180545f92600160201b900463ffffffff169081111561236757508054600180820183555f928352602080842090920180546001600160a01b0319166001600160a01b03881690811790915583526008870182526040808420869055600988019092529120805460ff19168217905590506124e3565b5f5f90505f876008015f855f815481106123835761238361354e565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905060015b845481101561240b575f896008015f8784815481106123cd576123cd61354e565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905082811115612402578092508193505b506001016123ac565b5080861061241f575f9450505050506124e3565b5f886009015f8685815481106124375761243761354e565b5f9182526020808320909101546001600160a01b031683528201929092526040019020805460ff191660018360028111156124745761247461353a565b02179055508684838154811061248c5761248c61354e565b5f91825260208083209190910180546001600160a01b0319166001600160a01b03948516179055918916815260088a018252604080822089905560098b0190925220805460ff191660019081179091559450505050505b9392505050565b5f5f8260ff161161253d5760405162461bcd60e51b815260206004820152601a60248201527f4c617a79494d543a206465707468206d757374206265203e203000000000000060448201526064016106c3565b602060ff831611156125615760405162461bcd60e51b81526004016106c390613c84565b8254600160281b900464ffffffffff168061258060ff85166002613dd5565b64ffffffffff1610156125d05760405162461bcd60e51b8152602060048201526018602482015277098c2f4f2929aa87440c2dac4d2ceeadeeae640c8cae0e8d60431b60448201526064016106c3565b6125db84828561262d565b949350505050565b5f816125f660ff851663ffffffff613dee565b6124e39190613bfb565b6126086126f5565b610d0057604051631afcd79f60e31b815260040160405180910390fd5b611b14612600565b5f602060ff831611156126525760405162461bcd60e51b81526004016106c390613c84565b8264ffffffffff165f03612670576126698261270e565b90506124e3565b5f61267c836001613be2565b60ff166001600160401b0381111561269657612696613526565b6040519080825280602002602001820160405280156126bf578160200160208202803683370190505b5090506126ce85858584612da8565b808360ff16815181106126e3576126e361354e565b60200260200101519150509392505050565b5f6126fe612060565b54600160401b900460ff16919050565b5f8160ff165f0361272057505f919050565b8160ff1660010361275257507f2098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864919050565b8160ff1660020361278457507f1069673dcdb12263df301a6ff584a7ec261a44cb9dc68df067a4774460b1f1e1919050565b8160ff166003036127b657507f18f43331537ee2af2e3d758d50f72106467c6eea50371dd528d57eb2b856d238919050565b8160ff166004036127e857507f07f9d837cb17b0d36320ffe93ba52345f1b728571a568265caac97559dbc952a919050565b8160ff1660050361281a57507f2b94cf5e8746b3f5c9631f4c5df32907a699c58c94b2ad4d7b5cec1639183f55919050565b8160ff1660060361284c57507f2dee93c5a666459646ea7d22cca9e1bcfed71e6951b953611d11dda32ea09d78919050565b8160ff1660070361287e57507f078295e5a22b84e982cf601eb639597b8b0515a88cb5ac7fa8a4aabe3c87349d919050565b8160ff166008036128b057507f2fa5e5f18f6027a6501bec864564472a616b2e274a41211a444cbe3a99f3cc61919050565b8160ff166009036128e257507f0e884376d0d8fd21ecb780389e941f66e45e7acce3e228ab3e2156a614fcd747919050565b8160ff16600a0361291457507f1b7201da72494f1e28717ad1a52eb469f95892f957713533de6175e5da190af2919050565b8160ff16600b0361294657507f1f8d8822725e36385200c0b201249819a6e6e1e4650808b5bebc6bface7d7636919050565b8160ff16600c0361297857507f2c5d82f66c914bafb9701589ba8cfcfb6162b0a12acf88a8d0879a0471b5f85a919050565b8160ff16600d036129aa57507f14c54148a0940bb820957f5adf3fa1134ef5c4aaa113f4646458f270e0bfbfd0919050565b8160ff16600e036129dc57507f190d33b12f986f961e10c0ee44d8b9af11be25588cad89d416118e4bf4ebe80c919050565b8160ff16600f03612a0e57507f22f98aa9ce704152ac17354914ad73ed1167ae6596af510aa5b3649325e06c92919050565b8160ff16601003612a4057507f2a7c7c9b6ce5880b9f6f228d72bf6a575a526f29c66ecceef8b753d38bba7323919050565b8160ff16601103612a7257507f2e8186e558698ec1c67af9c14d463ffc470043c9c2988b954d75dd643f36b992919050565b8160ff16601203612aa457507f0f57c5571e9a4eab49e2c8cf050dae948aef6ead647392273546249d1c1ff10f919050565b8160ff16601303612ad657507f1830ee67b5fb554ad5f63d4388800e1cfe78e310697d46e43c9ce36134f72cca919050565b8160ff16601403612b0857507f2134e76ac5d21aab186c2be1dd8f84ee880a1e46eaf712f9d371b6df22191f3e919050565b8160ff16601503612b3a57507f19df90ec844ebc4ffeebd866f33859b0c051d8c958ee3aa88f8f8df3db91a5b1919050565b8160ff16601603612b6c57507f18cca2a66b5c0787981e69aefd84852d74af0e93ef4912b4648c05f722efe52b919050565b8160ff16601703612b9e57507f2388909415230d1b4d1304d2d54f473a628338f2efad83fadf05644549d2538d919050565b8160ff16601803612bd057507f27171fb4a97b6cc0e9e8f543b5294de866a2af2c9c8d0b1d96e673e4529ed540919050565b8160ff16601903612c0257507f2ff6650540f629fd5711a0bc74fc0d28dcb230b9392583e5f8d59696dde6ae21919050565b8160ff16601a03612c3457507f120c58f143d491e95902f7f5277778a2e0ad5168f6add75669932630ce611518919050565b8160ff16601b03612c6657507f1f21feb70d3f21b07bf853d5e5db03071ec495a0a565a21da2d665d279483795919050565b8160ff16601c03612c9857507f24be905fa71335e14c638cc0f66a8623a826e768068a9e968bb1a1dde18a72d2919050565b8160ff16601d03612cca57507f0f8666b62ed17491c50ceadead57d4cd597ef3821d65c328744c74e553dac26d919050565b8160ff16601e03612cfc57507f0918d46bf52d98b034413f4a1a1c41594e7a7a3f6ae08cb43d1a2a230e1959ef919050565b8160ff16601f03612d2e57507f1bbeb01b4c479ecde76917645e404dfa2e26f90d0afc5a65128513ad375c5ff2919050565b8160ff16602003612d6057507f2f68a1c58e257e42a17a6c61dff5551ed560b9922ab119d5ac8e184c9734ead9919050565b60405162461bcd60e51b815260206004820152601e60248201527f4c617a79494d543a2064656661756c745a65726f2062616420696e646578000060448201526064016106c3565b602060ff83161115612dcc5760405162461bcd60e51b81526004016106c390613c84565b5f8364ffffffffff1611612e305760405162461bcd60e51b815260206004820152602560248201527f4c617a79494d543a206e756d626572206f66206c6561766573206d7573742062604482015264065203e20360dc1b60648201526084016106c3565b5f612e3c600185613c48565b9050600181165f03612e8f57846001015f612e575f846125e3565b64ffffffffff1681526020019081526020015f2054825f81518110612e7e57612e7e61354e565b602002602001018181525050612eb7565b612e985f61270e565b825f81518110612eaa57612eaa61354e565b6020026020010181815250505b5f5b8360ff168160ff161015611de057600182165f03612faf5773__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280868560ff1681518110612f0b57612f0b61354e565b60200260200101518152602001612f218561270e565b8152506040518263ffffffff1660e01b8152600401612f409190613c18565b602060405180830381865af4158015612f5b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f7f919061357a565b83612f8b836001613be2565b60ff1681518110612f9e57612f9e61354e565b602002602001018181525050613160565b5f612fbb826001613be2565b60ff168664ffffffffff16901c64ffffffffff16905060018364ffffffffff16901c64ffffffffff1681111561305d575f876001015f6130128560016130019190613be2565b60018864ffffffffff16901c6125e3565b64ffffffffff1681526020019081526020015f2054905080858460016130389190613be2565b60ff168151811061304b5761304b61354e565b6020026020010181815250505061315e565b5f876001015f61307485600188611c6b9190613c48565b64ffffffffff1681526020019081526020015f2054905073__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280848152602001888760ff16815181106130cb576130cb61354e565b60200260200101518152506040518263ffffffff1660e01b81526004016130f29190613c18565b602060405180830381865af415801561310d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613131919061357a565b8561313d856001613be2565b60ff16815181106131505761315061354e565b602002602001018181525050505b505b647fffffffff600192831c169101612eb9565b600183019183908215613204579160200282015f5b838211156131d257833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff1602179055509260200192600401602081600301049283019260010302613188565b80156132025782816101000a81549063ffffffff02191690556004016020816003010492830192600103026131d2565b505b50613210929150613214565b5090565b5b80821115613210575f8155600101613215565b6001600160a01b0381168114610fe4575f5ffd5b5f6020828403121561324c575f5ffd5b81356124e381613228565b5f60208284031215613267575f5ffd5b5035919050565b602080825282518282018190525f918401906040840190835b818110156132ae5783516001600160a01b0316835260209384019390920191600101613287565b509095945050505050565b5f5f5f608084860312156132cb575f5ffd5b8335925060208401359150608084018510156132e5575f5ffd5b6040840190509250925092565b5f5f60408385031215613303575f5ffd5b82359150602083013561331581613228565b809150509250929050565b5f5f5f60608486031215613332575f5ffd5b83359250602084013561334481613228565b929592945050506040919091013590565b6001600160a01b0391909116815260200190565b5f5f6040838503121561337a575f5ffd5b823561338581613228565b946020939093013593505050565b5f5f604083850312156133a4575f5ffd5b50508035926020909101359150565b5f5f83601f8401126133c3575f5ffd5b5081356001600160401b038111156133d9575f5ffd5b6020830191508360208285010111156133f0575f5ffd5b9250929050565b5f5f5f5f5f5f5f5f5f60a08a8c03121561340f575f5ffd5b8935985060208a01356001600160401b0381111561342b575f5ffd5b8a01601f81018c1361343b575f5ffd5b80356001600160401b03811115613450575f5ffd5b8c60208260051b8401011115613464575f5ffd5b6020919091019850965060408a01356001600160401b03811115613486575f5ffd5b6134928c828d016133b3565b90975095505060608a01356001600160401b038111156134b0575f5ffd5b6134bc8c828d016133b3565b90955093505060808a01356001600160401b038111156134da575f5ffd5b6134e68c828d016133b3565b915080935050809150509295985092959850929598565b634e487b7160e01b5f52601160045260245ffd5b5f8161351f5761351f6134fd565b505f190190565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60018201613573576135736134fd565b5060010190565b5f6020828403121561358a575f5ffd5b5051919050565b803563ffffffff811681146117fb575f5ffd5b5f602082840312156135b4575f5ffd5b6124e382613591565b80820180821115610bf057610bf06134fd565b84815260a0810160208201855f5b600281101561360b5763ffffffff6135f583613591565b16835260209283019291909101906001016135de565b50505060608201939093526080015292915050565b805180151581146117fb575f5ffd5b5f6020828403121561363f575f5ffd5b6124e382613620565b604080825283549082018190525f8481526020812090916060840190835b8181101561368d5783546001600160a01b0316835260019384019360209093019201613666565b5050838103602080860191909152855180835291810192508501905f5b818110156136c85782518452602093840193909201916001016136aa565b50919695505050505050565b6040516101e081016001600160401b03811182821017156136f7576136f7613526565b60405290565b604051601f8201601f191681016001600160401b038111828210171561372557613725613526565b604052919050565b5f6001600160401b0382111561374557613745613526565b50601f01601f191660200190565b5f82601f830112613762575f5ffd5b81356001600160401b0381111561377b5761377b613526565b8060051b61378b602082016136fd565b918252602081850181019290810190868411156137a6575f5ffd5b6020860192505b838310156137c85782358252602092830192909101906137ad565b9695505050505050565b5f5f604083850312156137e3575f5ffd5b82356001600160401b038111156137f8575f5ffd5b8301601f81018513613808575f5ffd5b803561381b6138168261372d565b6136fd565b81815286602083850101111561382f575f5ffd5b816020840160208301375f6020838301015280945050505060208301356001600160401b0381111561385f575f5ffd5b61386b85828601613753565b9150509250929050565b81810381811115610bf057610bf06134fd565b8051600481106117fb575f5ffd5b5f82601f8301126138a5575f5ffd5b604080519081016001600160401b03811182821017156138c7576138c7613526565b80604052508060408401858111156138dd575f5ffd5b845b818110156138f75780518352602092830192016138df565b509195945050505050565b80516117fb81613228565b8051600281106117fb575f5ffd5b5f82601f83011261392a575f5ffd5b81516139386138168261372d565b81815284602083860101111561394c575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215613978575f5ffd5b81516001600160401b0381111561398d575f5ffd5b8201610200818503121561399f575f5ffd5b6139a76136d4565b815181526139b760208301613888565b6020820152604082810151908201526139d38560608401613896565b606082015260a082015160808201526139ee60c08301613902565b60a08201526139ff60e0830161390d565b60c08201526101008201516001600160401b03811115613a1d575f5ffd5b613a298682850161391b565b60e083015250613a3c6101208301613902565b610100820152613a4f6101408301613902565b61012082015261016082810151610140830152610180830151908201526101a08201516001600160401b03811115613a85575f5ffd5b613a918682850161391b565b61018083015250613aa56101c08301613902565b6101a0820152613ab86101e08301613620565b6101c0820152949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f613b01604083018688613ac6565b8281036020840152613b14818587613ac6565b979650505050505050565b606080825281018690525f8760808301825b89811015613b61578235613b4481613228565b6001600160a01b0316825260209283019290910190600101613b31565b508381036020850152613b7581888a613ac6565b9150508281036040840152613b8b818587613ac6565b9998505050505050505050565b6020808252602a908201527f4c617a79494d543a206c656166206d757374206265203c20534e41524b5f53436040820152691053105497d19251531160b21b606082015260800190565b60ff8181168382160190811115610bf057610bf06134fd565b64ffffffffff8181168382160190811115610bf057610bf06134fd565b6040810181835f5b6002811015613c3f578151835260209283019290910190600101613c20565b50505092915050565b64ffffffffff8281168282160390811115610bf057610bf06134fd565b5f82613c7f57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526023908201527f4c617a79494d543a206465707468206d757374206265203c3d204d41585f44456040820152620a0a8960eb1b606082015260800190565b6001815b6001841115610ea157808504811115613ce657613ce66134fd565b6001841615613cf457908102905b60019390931c928002613ccb565b5f82613d1057506001610bf0565b81613d1c57505f610bf0565b8160018114613d325760028114613d3c57613d6e565b6001915050610bf0565b60ff841115613d4d57613d4d6134fd565b6001841b915064ffffffffff821115613d6857613d686134fd565b50610bf0565b5060208310610133831016604e8410600b8410161715613da6575081810a64ffffffffff811115613da157613da16134fd565b610bf0565b613db664ffffffffff8484613cc7565b8064ffffffffff04821115613dcd57613dcd6134fd565b029392505050565b5f6124e364ffffffffff841664ffffffffff8416613d02565b64ffffffffff8181168382160290811690818114613e0e57613e0e6134fd565b509291505056fea164736f6c634300081c000a", + "deployedBytecode": "0x608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80639f0f874a11610135578063e59e4695116100b4578063f26ef74e11610079578063f26ef74e14610571578063f2fde38b14610584578063f379b0df14610597578063f52fd803146105d1578063f6fc05d514610643575f5ffd5b8063e59e469514610516578063e6745e1314610529578063e82f3b701461053c578063ebf0c7171461054f578063f165053614610557575f5ffd5b8063c3a0ec30116100fa578063c3a0ec30146104ae578063ca2869a0146104bf578063cd6dc687146104de578063da881e5a146104f1578063dbb06c9314610504575f5ffd5b80639f0f874a1461044d578063a016493014610456578063a8a4d69b14610469578063bff232c11461047c578063c2b40ae41461048f575f5ffd5b8063715018a6116101c15780638d1ddfb1116101865780638d1ddfb1146103cd5780638da5cb5b146103e35780638e5ce3ad146103eb5780639015d371146103fe5780639a7a2ffc14610411575f5ffd5b8063715018a6146103465780637c92f5241461034e578063858142431461037b5780638a78bb151461039b5780638cb89ecb146103ae575f5ffd5b80632e7b716d116102075780632e7b716d146102d85780634d6861a6146102eb57806350e6d94c146102fe5780635d5047761461032057806370e36bbe14610333575f5ffd5b8063096b810a146102435780630f3e34121461025857806317d611201461026b5780632800d82914610294578063291a691b146102b5575b5f5ffd5b61025661025136600461323c565b61064c565b005b610256610266366004613257565b610798565b61027e610279366004613257565b6107db565b60405161028b919061326e565b60405180910390f35b6102a76102a2366004613257565b61091d565b60405190815260200161028b565b6102c86102c33660046132b9565b610969565b604051901515815260200161028b565b6102c86102e636600461323c565b610b43565b6102c86102f9366004613257565b610bf6565b6102c861030c36600461323c565b60066020525f908152604090205460ff1681565b6102c861032e3660046132f2565b610c35565b61025661034136600461323c565b610c79565b610256610cef565b61036161035c366004613320565b610d02565b6040805192835263ffffffff90911660208301520161028b565b60015461038e906001600160a01b031681565b60405161028b9190613355565b6102566103a936600461323c565b610ea9565b6102a76103bc366004613257565b60096020525f908152604090205481565b600454600160281b900464ffffffffff166102a7565b61038e610fe7565b600b5461038e906001600160a01b031681565b6102c861040c36600461323c565b611015565b61043761041f36600461323c565b60076020525f908152604090205464ffffffffff1681565b60405164ffffffffff909116815260200161028b565b6102a760035481565b61027e610464366004613257565b611032565b6102c86104773660046132f2565b6110c8565b61025661048a36600461323c565b61110c565b6102a761049d366004613257565b60086020525f908152604090205481565b6001546001600160a01b031661038e565b6102a76104cd366004613257565b5f9081526008602052604090205490565b6102566104ec366004613369565b61115d565b6102c86104ff366004613257565b6112ba565b5f5461038e906001600160a01b031681565b61025661052436600461323c565b611594565b610256610537366004613393565b61160c565b6102a761054a366004613257565b6117cf565b6102a7611800565b61055f601481565b60405160ff909116815260200161028b565b61025661057f3660046133f7565b611812565b61025661059236600461323c565b611b0c565b6004546105b39064ffffffffff80821691600160281b90041682565b6040805164ffffffffff93841681529290911660208301520161028b565b6106146105df366004613257565b5f908152600a6020819052604090912090810154600590910154909163ffffffff80831692600160201b900416908284101590565b60405161028b949392919093845263ffffffff9283166020850152911660408301521515606082015260800190565b6102a760025481565b610654610fe7565b6001600160a01b0316336001600160a01b0316148061067d57506001546001600160a01b031633145b61069a57604051632864c4e160e01b815260040160405180910390fd5b6106a381611015565b81906106cc576040516381e5828960e01b81526004016106c39190613355565b60405180910390fd5b506001600160a01b0381165f9081526007602052604081205464ffffffffff16906106fa9060049083611b46565b6001600160a01b0382165f908152600660205260408120805460ff19169055600280549161072783613511565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f8c008e3835f6c79bfcdb89f0f6ca8705e0b01049ee84a90b0e4da1c7ba9405d5906060015b60405180910390a25050565b6107a0611de8565b60038190556040518181527fbe772dc189863d512fa01e489c8eac204975aef1a8662d8b5a333804b5207ab79060200160405180910390a150565b5f818152600a602081905260408220600681015491810154606093919291816001600160401b0381111561081157610811613526565b60405190808252806020026020018201604052801561083a578160200160208202803683370190505b5090505f805b84811015610911576001866009015f8860060184815481106108645761086461354e565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205460ff16600281111561089c5761089c61353a565b03610909578560060181815481106108b6576108b661354e565b905f5260205f20015f9054906101000a90046001600160a01b03168383815181106108e3576108e361354e565b6001600160a01b03909216602092830291909101909101528161090581613562565b9250505b600101610840565b50909695505050505050565b5f818152600a6020526040812081815460ff1660038111156109415761094161353a565b0361095f57604051630d4c1d9760e41b815260040160405180910390fd5b6003015492915050565b5f80546001600160a01b031633146109945760405163e4c2a7eb60e01b815260040160405180910390fd5b5f848152600a6020526040812090815460ff1660038111156109b8576109b861353a565b146109d6576040516374ff462560e11b815260040160405180910390fd5b60015460408051630cc37d8f60e11b815290515f926001600160a01b031691631986fb1e9160048083019260209291908290030181865afa158015610a1d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a41919061357a565b905080610a5460408601602087016135a4565b63ffffffff161115610a6c60408601602087016135a4565b829091610a9a576040516344ec930f60e01b815263ffffffff909216600483015260248201526044016106c3565b5050815460ff1916600190811783558201859055436002830155600354610ac190426135bd565b6003830155610ad560058301856002613173565b50610ade611800565b5f87815260086020526040908190209190915560028301546003840154915188927f381d281d32f95ef8fe4e5f3b263ea6a32d03d331e1a141ae1da996dc02a7a17092610b2f928a928a92916135d0565b60405180910390a250600195945050505050565b5f610b4d82611015565b610b5857505f919050565b6001546001600160a01b0316610b81576040516350ca893360e01b815260040160405180910390fd5b600154604051639f8a13d760e01b81526001600160a01b0390911690639f8a13d790610bb1908590600401613355565b602060405180830381865afa158015610bcc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf0919061362f565b92915050565b5f818152600a602052604081206001815460ff166003811115610c1b57610c1b61353a565b14610c2857505f92915050565b6003015442111592915050565b5f60015f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff166002811115610c7157610c7161353a565b149392505050565b610c81611de8565b6001600160a01b038116610ca85760405163d92e233d60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b038316908117825560405190917f2c8267accd82e977550ed2349c73311183cd22e306347be4453c8d130995e3c991a250565b610cf7611de8565b610d005f611e1a565b565b600b545f9081906001600160a01b03163314610d315760405163fcef374960e01b815260040160405180910390fd5b5f858152600a602052604090206002815460ff166003811115610d5657610d5661353a565b14610d7457604051634f4b461f60e11b815260040160405180910390fd5b60058101546001600160a01b0386165f90815260098301602052604090205463ffffffff909116925060019060ff166002811115610db457610db461353a565b14610dc457600a01549150610ea1565b6001600160a01b0385165f9081526009820160205260408120805460ff19166002179055600a8201805491610df883613511565b919050555080600a01549250846001600160a01b0316867f6c783b92374361b4d6efaf29673b89437ee969bb3c9d2d5d86b143ad5447b8498686604051610e49929190918252602082015260400190565b60405180910390a36040805184815263ffffffff84166020820181905285101591810182905287907f119cb11dd0a68c257d6dc9b06dcb37dd422ce276eb8bf3cd0b7079a116b8e2989060600160405180910390a250505b935093915050565b610eb1610fe7565b6001600160a01b0316336001600160a01b03161480610eda57506001546001600160a01b031633145b610ef757604051632864c4e160e01b815260040160405180910390fd5b610f0081611015565b610fe45760048054600160281b900464ffffffffff1690610f2a906001600160a01b038416611e8a565b6001600160a01b0382165f908152600660209081526040808320805460ff1916600117905560079091528120805464ffffffffff841664ffffffffff199091161790556002805491610f7b83613562565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f3318d261fe14a5761d2d1e21555652f623d2134c430a9883c9ad6e958bb0db539060600161078c565b50565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b03165f9081526006602052604090205460ff1690565b5f818152600a60205260409020600481015460609190611065576040516322e679e360e11b815260040160405180910390fd5b806006018054806020026020016040519081016040528092919081815260200182805480156110bb57602002820191905f5260205f20905b81546001600160a01b0316815260019091019060200180831161109d575b5050505050915050919050565b5f805f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff1660028111156111035761110361353a565b14159392505050565b611114611de8565b6001600160a01b03811661113b5760405163d92e233d60e01b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b5f611166612060565b805490915060ff600160401b82041615906001600160401b03165f8115801561118c5750825b90505f826001600160401b031660011480156111a75750303b155b9050811580156111b5575080155b156111d35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156111fd57845460ff60401b1916600160401b1785555b6001600160a01b0387166112245760405163d92e233d60e01b815260040160405180910390fd5b61122d33612088565b61123960046014612099565b61124286610798565b61124a610fe7565b6001600160a01b0316876001600160a01b03161461126b5761126b87611b0c565b83156112b157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f818152600a6020526040812081815460ff1660038111156112de576112de61353a565b036112fc57604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156113145761131461353a565b1461133257604051631860f69960e31b815260040160405180910390fd5b8060030154421161135657604051632f021e8d60e11b815260040160405180910390fd5b60058101546006820154600160201b90910463ffffffff1611158061143b578154600360ff199091161782556006820154600583015460408051928352600160201b90910463ffffffff16602083015285917fecc4a9fb7e28d074cba7f5b227e9b5827823c850a385539b9a2f98a08f8c203d910160405180910390a25f54604051635d968dc160e11b815260048101869052600260248201526001600160a01b039091169063bb2d1b82906044015f604051808303815f87803b15801561141c575f5ffd5b505af115801561142e573d5f5f3e3d5ffd5b505f979650505050505050565b815460ff191660021782556006820154600a83018190555f816001600160401b0381111561146b5761146b613526565b604051908082528060200260200182016040528015611494578160200160208202803683370190505b5090505f5b8281101561150657846008015f8660060183815481106114bb576114bb61354e565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205482518390839081106114f3576114f361354e565b6020908102919091010152600101611499565b505f54604051631f3ea75d60e21b8152600481018890526001600160a01b0390911690637cfa9d74906024015f604051808303815f87803b158015611549575f5ffd5b505af115801561155b573d5f5f3e3d5ffd5b50505050857f4f1f5b329c741a8ba15e9645e301061294d0c1fdd455448ffd5e76ff255929d78560060183604051610b2f929190613648565b61159c611de8565b6001600160a01b0381166115c35760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a7905f90a250565b5f828152600a6020526040812090815460ff1660038111156116305761163061353a565b0361164e57604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156116665761166661353a565b1461168457604051631860f69960e31b815260040160405180910390fd5b80600301544211156116a957604051639a19114d60e01b815260040160405180910390fd5b335f90815260078201602052604090205460ff16156116db5760405163257309f160e11b815260040160405180910390fd5b6116e433610b43565b6117015760405163149fbcfd60e11b815260040160405180910390fd5b61170c338385612118565b6001810154604080516bffffffffffffffffffffffff193360601b16602080830191909152603482018690526054820187905260748083019490945282518083039094018452609490910190915281519101205f90335f8181526007850160205260409020805460ff1916600117905590915061178b908390836122e9565b506040805184815260208101839052339186917f52999628fb1cb05707e842278833b22e511f11746202cecdf221968b0b89e8bd910160405180910390a350505050565b5f81815260096020526040902054806117fb576040516322e679e360e11b815260040160405180910390fd5b919050565b5f61180d600460146124ea565b905090565b61181a611de8565b5f898152600a602052604090206002815460ff16600381111561183f5761183f61353a565b1461185d57604051634f4b461f60e11b815260040160405180910390fd5b6004810154156118805760405163632a22bb60e01b815260040160405180910390fd5b600681015488146118c95760405162461bcd60e51b815260206004820152601360248201527209cdec8ca40c6deeadce840dad2e6dac2e8c6d606b1b60448201526064016106c3565b5f6118d6858701876137d2565b9150505f8151116119205760405162461bcd60e51b815260206004820152601460248201527343353a206e6f207075626c696320696e7075747360601b60448201526064016106c3565b5f81600183516119309190613875565b815181106119405761194061354e565b602002602001015190505f5f5f9054906101000a90046001600160a01b03166001600160a01b031663406ed35c8e6040518263ffffffff1660e01b815260040161198c91815260200190565b5f60405180830381865afa1580156119a6573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526119cd9190810190613968565b610120810151604051637bf41d7760e11b81529192506001600160a01b03169063f7e83aee90611a07908b908b908b908b90600401613aee565b602060405180830381865afa158015611a22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a46919061357a565b5060048085018390555f8e815260096020526040808220859055905490516340a3b76160e11b81529182018f9052602482018490526001600160a01b0316906381476ec2906044015f604051808303815f87803b158015611aa5575f5ffd5b505af1158015611ab7573d5f5f3e3d5ffd5b505050508c7f49ac1dd411942113d1c5e6799c6379ce341afe85a4175fb562cf2a5fb886c27d8d8d8d8d8d8d604051611af596959493929190613b1f565b60405180910390a250505050505050505050505050565b611b14611de8565b6001600160a01b038116611b3d575f604051631e4fbdf760e01b81526004016106c39190613355565b610fe481611e1a565b7f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611b855760405162461bcd60e51b81526004016106c390613b98565b825464ffffffffff600160281b90910481169082168111611be35760405162461bcd60e51b815260206004820152601860248201527713185e9e5253550e881b195859881b5d5cdd08195e1a5cdd60421b60448201526064016106c3565b825f5b81866001015f611bf684886125e3565b64ffffffffff1681526020019081526020015f20819055505f816001611c1c9190613be2565b60ff168464ffffffffff16901c64ffffffffff16905060018564ffffffffff16901c64ffffffffff168111611c515750611de0565b600185165f03611d18575f611c7083611c6b886001613bfb565b6125e3565b60408051808201825286815264ffffffffff83165f90815260018c0160209081529083902054908201529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611cd191600401613c18565b602060405180830381865af4158015611cec573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d10919061357a565b935050611dcc565b5f611d2883611c6b600189613c48565b60408051808201825264ffffffffff83165f90815260018c0160209081529083902054825281018790529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611d8991600401613c18565b602060405180830381865af4158015611da4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc8919061357a565b9350505b50647fffffffff600194851c169301611be6565b505050505050565b33611df1610fe7565b6001600160a01b031614610d00573360405163118cdaa760e01b81526004016106c39190613355565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b8154600160281b900464ffffffffff167f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611ed95760405162461bcd60e51b81526004016106c390613b98565b825464ffffffffff90811690821610611f2c5760405162461bcd60e51b815260206004820152601560248201527413185e9e5253550e881d1c9959481a5cc8199d5b1b605a1b60448201526064016106c3565b611f37816001613bfb565b835464ffffffffff91909116600160281b0269ffffffffff000000000019909116178355815f5b81856001015f611f6e84876125e3565b64ffffffffff16815260208101919091526040015f20556001831615612059575f611f9e82611c6b600187613c48565b60408051808201825264ffffffffff83165f90815260018a0160209081529083902054825281018690529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611fff91600401613c18565b602060405180830381865af415801561201a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061203e919061357a565b647fffffffff600195861c1694909350919091019050611f5e565b5050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610bf0565b612090612600565b610fe481612625565b602060ff821611156120e75760405162461bcd60e51b81526020600482015260176024820152764c617a79494d543a205472656520746f6f206c6172676560481b60448201526064016106c3565b6120f8600160ff831681901b613875565b825469ffffffffffffffffffff191664ffffffffff919091161790915550565b5f82116121385760405163aeaddff160e01b815260040160405180910390fd5b6001546001600160a01b0316612161576040516350ca893360e01b815260040160405180910390fd5b5f818152600a602052604081206001805460028301549293926001600160a01b039091169163bb03bd7191889161219791613875565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa1580156121de573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612202919061357a565b90505f60015f9054906101000a90046001600160a01b03166001600160a01b0316631209b1f66040518163ffffffff1660e01b8152600401602060405180830381865afa158015612255573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612279919061357a565b90505f811161229b5760405163aeaddff160e01b815260040160405180910390fd5b5f6122a68284613c65565b90505f81116122c85760405163149fbcfd60e11b815260040160405180910390fd5b808611156112b15760405163aeaddff160e01b815260040160405180910390fd5b60058301546006840180545f92600160201b900463ffffffff169081111561236757508054600180820183555f928352602080842090920180546001600160a01b0319166001600160a01b03881690811790915583526008870182526040808420869055600988019092529120805460ff19168217905590506124e3565b5f5f90505f876008015f855f815481106123835761238361354e565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905060015b845481101561240b575f896008015f8784815481106123cd576123cd61354e565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905082811115612402578092508193505b506001016123ac565b5080861061241f575f9450505050506124e3565b5f886009015f8685815481106124375761243761354e565b5f9182526020808320909101546001600160a01b031683528201929092526040019020805460ff191660018360028111156124745761247461353a565b02179055508684838154811061248c5761248c61354e565b5f91825260208083209190910180546001600160a01b0319166001600160a01b03948516179055918916815260088a018252604080822089905560098b0190925220805460ff191660019081179091559450505050505b9392505050565b5f5f8260ff161161253d5760405162461bcd60e51b815260206004820152601a60248201527f4c617a79494d543a206465707468206d757374206265203e203000000000000060448201526064016106c3565b602060ff831611156125615760405162461bcd60e51b81526004016106c390613c84565b8254600160281b900464ffffffffff168061258060ff85166002613dd5565b64ffffffffff1610156125d05760405162461bcd60e51b8152602060048201526018602482015277098c2f4f2929aa87440c2dac4d2ceeadeeae640c8cae0e8d60431b60448201526064016106c3565b6125db84828561262d565b949350505050565b5f816125f660ff851663ffffffff613dee565b6124e39190613bfb565b6126086126f5565b610d0057604051631afcd79f60e31b815260040160405180910390fd5b611b14612600565b5f602060ff831611156126525760405162461bcd60e51b81526004016106c390613c84565b8264ffffffffff165f03612670576126698261270e565b90506124e3565b5f61267c836001613be2565b60ff166001600160401b0381111561269657612696613526565b6040519080825280602002602001820160405280156126bf578160200160208202803683370190505b5090506126ce85858584612da8565b808360ff16815181106126e3576126e361354e565b60200260200101519150509392505050565b5f6126fe612060565b54600160401b900460ff16919050565b5f8160ff165f0361272057505f919050565b8160ff1660010361275257507f2098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864919050565b8160ff1660020361278457507f1069673dcdb12263df301a6ff584a7ec261a44cb9dc68df067a4774460b1f1e1919050565b8160ff166003036127b657507f18f43331537ee2af2e3d758d50f72106467c6eea50371dd528d57eb2b856d238919050565b8160ff166004036127e857507f07f9d837cb17b0d36320ffe93ba52345f1b728571a568265caac97559dbc952a919050565b8160ff1660050361281a57507f2b94cf5e8746b3f5c9631f4c5df32907a699c58c94b2ad4d7b5cec1639183f55919050565b8160ff1660060361284c57507f2dee93c5a666459646ea7d22cca9e1bcfed71e6951b953611d11dda32ea09d78919050565b8160ff1660070361287e57507f078295e5a22b84e982cf601eb639597b8b0515a88cb5ac7fa8a4aabe3c87349d919050565b8160ff166008036128b057507f2fa5e5f18f6027a6501bec864564472a616b2e274a41211a444cbe3a99f3cc61919050565b8160ff166009036128e257507f0e884376d0d8fd21ecb780389e941f66e45e7acce3e228ab3e2156a614fcd747919050565b8160ff16600a0361291457507f1b7201da72494f1e28717ad1a52eb469f95892f957713533de6175e5da190af2919050565b8160ff16600b0361294657507f1f8d8822725e36385200c0b201249819a6e6e1e4650808b5bebc6bface7d7636919050565b8160ff16600c0361297857507f2c5d82f66c914bafb9701589ba8cfcfb6162b0a12acf88a8d0879a0471b5f85a919050565b8160ff16600d036129aa57507f14c54148a0940bb820957f5adf3fa1134ef5c4aaa113f4646458f270e0bfbfd0919050565b8160ff16600e036129dc57507f190d33b12f986f961e10c0ee44d8b9af11be25588cad89d416118e4bf4ebe80c919050565b8160ff16600f03612a0e57507f22f98aa9ce704152ac17354914ad73ed1167ae6596af510aa5b3649325e06c92919050565b8160ff16601003612a4057507f2a7c7c9b6ce5880b9f6f228d72bf6a575a526f29c66ecceef8b753d38bba7323919050565b8160ff16601103612a7257507f2e8186e558698ec1c67af9c14d463ffc470043c9c2988b954d75dd643f36b992919050565b8160ff16601203612aa457507f0f57c5571e9a4eab49e2c8cf050dae948aef6ead647392273546249d1c1ff10f919050565b8160ff16601303612ad657507f1830ee67b5fb554ad5f63d4388800e1cfe78e310697d46e43c9ce36134f72cca919050565b8160ff16601403612b0857507f2134e76ac5d21aab186c2be1dd8f84ee880a1e46eaf712f9d371b6df22191f3e919050565b8160ff16601503612b3a57507f19df90ec844ebc4ffeebd866f33859b0c051d8c958ee3aa88f8f8df3db91a5b1919050565b8160ff16601603612b6c57507f18cca2a66b5c0787981e69aefd84852d74af0e93ef4912b4648c05f722efe52b919050565b8160ff16601703612b9e57507f2388909415230d1b4d1304d2d54f473a628338f2efad83fadf05644549d2538d919050565b8160ff16601803612bd057507f27171fb4a97b6cc0e9e8f543b5294de866a2af2c9c8d0b1d96e673e4529ed540919050565b8160ff16601903612c0257507f2ff6650540f629fd5711a0bc74fc0d28dcb230b9392583e5f8d59696dde6ae21919050565b8160ff16601a03612c3457507f120c58f143d491e95902f7f5277778a2e0ad5168f6add75669932630ce611518919050565b8160ff16601b03612c6657507f1f21feb70d3f21b07bf853d5e5db03071ec495a0a565a21da2d665d279483795919050565b8160ff16601c03612c9857507f24be905fa71335e14c638cc0f66a8623a826e768068a9e968bb1a1dde18a72d2919050565b8160ff16601d03612cca57507f0f8666b62ed17491c50ceadead57d4cd597ef3821d65c328744c74e553dac26d919050565b8160ff16601e03612cfc57507f0918d46bf52d98b034413f4a1a1c41594e7a7a3f6ae08cb43d1a2a230e1959ef919050565b8160ff16601f03612d2e57507f1bbeb01b4c479ecde76917645e404dfa2e26f90d0afc5a65128513ad375c5ff2919050565b8160ff16602003612d6057507f2f68a1c58e257e42a17a6c61dff5551ed560b9922ab119d5ac8e184c9734ead9919050565b60405162461bcd60e51b815260206004820152601e60248201527f4c617a79494d543a2064656661756c745a65726f2062616420696e646578000060448201526064016106c3565b602060ff83161115612dcc5760405162461bcd60e51b81526004016106c390613c84565b5f8364ffffffffff1611612e305760405162461bcd60e51b815260206004820152602560248201527f4c617a79494d543a206e756d626572206f66206c6561766573206d7573742062604482015264065203e20360dc1b60648201526084016106c3565b5f612e3c600185613c48565b9050600181165f03612e8f57846001015f612e575f846125e3565b64ffffffffff1681526020019081526020015f2054825f81518110612e7e57612e7e61354e565b602002602001018181525050612eb7565b612e985f61270e565b825f81518110612eaa57612eaa61354e565b6020026020010181815250505b5f5b8360ff168160ff161015611de057600182165f03612faf5773__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280868560ff1681518110612f0b57612f0b61354e565b60200260200101518152602001612f218561270e565b8152506040518263ffffffff1660e01b8152600401612f409190613c18565b602060405180830381865af4158015612f5b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f7f919061357a565b83612f8b836001613be2565b60ff1681518110612f9e57612f9e61354e565b602002602001018181525050613160565b5f612fbb826001613be2565b60ff168664ffffffffff16901c64ffffffffff16905060018364ffffffffff16901c64ffffffffff1681111561305d575f876001015f6130128560016130019190613be2565b60018864ffffffffff16901c6125e3565b64ffffffffff1681526020019081526020015f2054905080858460016130389190613be2565b60ff168151811061304b5761304b61354e565b6020026020010181815250505061315e565b5f876001015f61307485600188611c6b9190613c48565b64ffffffffff1681526020019081526020015f2054905073__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280848152602001888760ff16815181106130cb576130cb61354e565b60200260200101518152506040518263ffffffff1660e01b81526004016130f29190613c18565b602060405180830381865af415801561310d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613131919061357a565b8561313d856001613be2565b60ff16815181106131505761315061354e565b602002602001018181525050505b505b647fffffffff600192831c169101612eb9565b600183019183908215613204579160200282015f5b838211156131d257833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff1602179055509260200192600401602081600301049283019260010302613188565b80156132025782816101000a81549063ffffffff02191690556004016020816003010492830192600103026131d2565b505b50613210929150613214565b5090565b5b80821115613210575f8155600101613215565b6001600160a01b0381168114610fe4575f5ffd5b5f6020828403121561324c575f5ffd5b81356124e381613228565b5f60208284031215613267575f5ffd5b5035919050565b602080825282518282018190525f918401906040840190835b818110156132ae5783516001600160a01b0316835260209384019390920191600101613287565b509095945050505050565b5f5f5f608084860312156132cb575f5ffd5b8335925060208401359150608084018510156132e5575f5ffd5b6040840190509250925092565b5f5f60408385031215613303575f5ffd5b82359150602083013561331581613228565b809150509250929050565b5f5f5f60608486031215613332575f5ffd5b83359250602084013561334481613228565b929592945050506040919091013590565b6001600160a01b0391909116815260200190565b5f5f6040838503121561337a575f5ffd5b823561338581613228565b946020939093013593505050565b5f5f604083850312156133a4575f5ffd5b50508035926020909101359150565b5f5f83601f8401126133c3575f5ffd5b5081356001600160401b038111156133d9575f5ffd5b6020830191508360208285010111156133f0575f5ffd5b9250929050565b5f5f5f5f5f5f5f5f5f60a08a8c03121561340f575f5ffd5b8935985060208a01356001600160401b0381111561342b575f5ffd5b8a01601f81018c1361343b575f5ffd5b80356001600160401b03811115613450575f5ffd5b8c60208260051b8401011115613464575f5ffd5b6020919091019850965060408a01356001600160401b03811115613486575f5ffd5b6134928c828d016133b3565b90975095505060608a01356001600160401b038111156134b0575f5ffd5b6134bc8c828d016133b3565b90955093505060808a01356001600160401b038111156134da575f5ffd5b6134e68c828d016133b3565b915080935050809150509295985092959850929598565b634e487b7160e01b5f52601160045260245ffd5b5f8161351f5761351f6134fd565b505f190190565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60018201613573576135736134fd565b5060010190565b5f6020828403121561358a575f5ffd5b5051919050565b803563ffffffff811681146117fb575f5ffd5b5f602082840312156135b4575f5ffd5b6124e382613591565b80820180821115610bf057610bf06134fd565b84815260a0810160208201855f5b600281101561360b5763ffffffff6135f583613591565b16835260209283019291909101906001016135de565b50505060608201939093526080015292915050565b805180151581146117fb575f5ffd5b5f6020828403121561363f575f5ffd5b6124e382613620565b604080825283549082018190525f8481526020812090916060840190835b8181101561368d5783546001600160a01b0316835260019384019360209093019201613666565b5050838103602080860191909152855180835291810192508501905f5b818110156136c85782518452602093840193909201916001016136aa565b50919695505050505050565b6040516101e081016001600160401b03811182821017156136f7576136f7613526565b60405290565b604051601f8201601f191681016001600160401b038111828210171561372557613725613526565b604052919050565b5f6001600160401b0382111561374557613745613526565b50601f01601f191660200190565b5f82601f830112613762575f5ffd5b81356001600160401b0381111561377b5761377b613526565b8060051b61378b602082016136fd565b918252602081850181019290810190868411156137a6575f5ffd5b6020860192505b838310156137c85782358252602092830192909101906137ad565b9695505050505050565b5f5f604083850312156137e3575f5ffd5b82356001600160401b038111156137f8575f5ffd5b8301601f81018513613808575f5ffd5b803561381b6138168261372d565b6136fd565b81815286602083850101111561382f575f5ffd5b816020840160208301375f6020838301015280945050505060208301356001600160401b0381111561385f575f5ffd5b61386b85828601613753565b9150509250929050565b81810381811115610bf057610bf06134fd565b8051600481106117fb575f5ffd5b5f82601f8301126138a5575f5ffd5b604080519081016001600160401b03811182821017156138c7576138c7613526565b80604052508060408401858111156138dd575f5ffd5b845b818110156138f75780518352602092830192016138df565b509195945050505050565b80516117fb81613228565b8051600281106117fb575f5ffd5b5f82601f83011261392a575f5ffd5b81516139386138168261372d565b81815284602083860101111561394c575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215613978575f5ffd5b81516001600160401b0381111561398d575f5ffd5b8201610200818503121561399f575f5ffd5b6139a76136d4565b815181526139b760208301613888565b6020820152604082810151908201526139d38560608401613896565b606082015260a082015160808201526139ee60c08301613902565b60a08201526139ff60e0830161390d565b60c08201526101008201516001600160401b03811115613a1d575f5ffd5b613a298682850161391b565b60e083015250613a3c6101208301613902565b610100820152613a4f6101408301613902565b61012082015261016082810151610140830152610180830151908201526101a08201516001600160401b03811115613a85575f5ffd5b613a918682850161391b565b61018083015250613aa56101c08301613902565b6101a0820152613ab86101e08301613620565b6101c0820152949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f613b01604083018688613ac6565b8281036020840152613b14818587613ac6565b979650505050505050565b606080825281018690525f8760808301825b89811015613b61578235613b4481613228565b6001600160a01b0316825260209283019290910190600101613b31565b508381036020850152613b7581888a613ac6565b9150508281036040840152613b8b818587613ac6565b9998505050505050505050565b6020808252602a908201527f4c617a79494d543a206c656166206d757374206265203c20534e41524b5f53436040820152691053105497d19251531160b21b606082015260800190565b60ff8181168382160190811115610bf057610bf06134fd565b64ffffffffff8181168382160190811115610bf057610bf06134fd565b6040810181835f5b6002811015613c3f578151835260209283019290910190600101613c20565b50505092915050565b64ffffffffff8281168282160390811115610bf057610bf06134fd565b5f82613c7f57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526023908201527f4c617a79494d543a206465707468206d757374206265203c3d204d41585f44456040820152620a0a8960eb1b606082015260800190565b6001815b6001841115610ea157808504811115613ce657613ce66134fd565b6001841615613cf457908102905b60019390931c928002613ccb565b5f82613d1057506001610bf0565b81613d1c57505f610bf0565b8160018114613d325760028114613d3c57613d6e565b6001915050610bf0565b60ff841115613d4d57613d4d6134fd565b6001841b915064ffffffffff821115613d6857613d686134fd565b50610bf0565b5060208310610133831016604e8410600b8410161715613da6575081810a64ffffffffff811115613da157613da16134fd565b610bf0565b613db664ffffffffff8484613cc7565b8064ffffffffff04821115613dcd57613dcd6134fd565b029392505050565b5f6124e364ffffffffff841664ffffffffff8416613d02565b64ffffffffff8181168382160290811690818114613e0e57613e0e6134fd565b509291505056fea164736f6c634300081c000a", "linkReferences": { "npm/poseidon-solidity@0.0.5/PoseidonT3.sol": { "PoseidonT3": [ { "length": 20, - "start": 7663 + "start": 7553 }, { "length": 20, - "start": 7847 + "start": 7737 }, { "length": 20, - "start": 8477 + "start": 8367 }, { "length": 20, - "start": 12311 + "start": 12201 }, { "length": 20, - "start": 12753 + "start": 12643 } ] } @@ -1297,28 +1292,28 @@ "PoseidonT3": [ { "length": 20, - "start": 7449 + "start": 7339 }, { "length": 20, - "start": 7633 + "start": 7523 }, { "length": 20, - "start": 8263 + "start": 8153 }, { "length": 20, - "start": 12097 + "start": 11987 }, { "length": 20, - "start": 12539 + "start": 12429 } ] } }, "immutableReferences": {}, "inputSourceName": "project/contracts/registry/CiphernodeRegistryOwnable.sol", - "buildInfoId": "solc-0_8_28-67d7bf420ed8ac25001394841682e83cf4523ea2" + "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" } \ No newline at end of file diff --git a/packages/enclave-contracts/contracts/Enclave.sol b/packages/enclave-contracts/contracts/Enclave.sol index f0edca06fd..7591cdfe24 100644 --- a/packages/enclave-contracts/contracts/Enclave.sol +++ b/packages/enclave-contracts/contracts/Enclave.sol @@ -81,9 +81,10 @@ contract Enclave is IEnclave, OwnableUpgradeable { mapping(bytes32 encryptionSchemeId => IPkVerifier pkVerifier) public pkVerifiers; - /// @notice Mapping storing valid E3 program ABI encoded parameter sets. - /// @dev Stores allowed encryption scheme parameters (e.g., BFV parameters). - mapping(bytes e3ProgramParams => bool allowed) public e3ProgramsParams; + /// @notice Mapping from ParamSet enum to ABI-encoded BFV parameters. + /// @dev Populated during initialize(). Ciphernodes decode the enum directly; + /// the encoded bytes are stored for transparency / on-chain consumers. + mapping(ParamSet => bytes) public paramSetRegistry; /// @notice Mapping tracking fee payments for each E3. /// @dev Stores the amount paid for an E3, distributed to committee upon completion. @@ -174,7 +175,6 @@ contract Enclave is IEnclave, OwnableUpgradeable { /// @param _feeToken The address of the ERC20 token used for E3 fees. /// @param _maxDuration The maximum duration of a computation in seconds. /// @param config Initial timeout configuration for E3 lifecycle stages. - /// @param _e3ProgramsParams Array of ABI encoded E3 encryption scheme parameters sets (e.g., for BFV). function initialize( address _owner, ICiphernodeRegistry _ciphernodeRegistry, @@ -182,8 +182,7 @@ contract Enclave is IEnclave, OwnableUpgradeable { IE3RefundManager _e3RefundManager, IERC20 _feeToken, uint256 _maxDuration, - E3TimeoutConfig calldata config, - bytes[] memory _e3ProgramsParams + E3TimeoutConfig calldata config ) public initializer { __Ownable_init(msg.sender); setMaxDuration(_maxDuration); @@ -192,7 +191,6 @@ contract Enclave is IEnclave, OwnableUpgradeable { setE3RefundManager(_e3RefundManager); setFeeToken(_feeToken); _setTimeoutConfig(config); - setE3ProgramsParams(_e3ProgramsParams); // Set default pricing parameters _pricingConfig = PricingConfig({ @@ -284,7 +282,7 @@ contract Enclave is IEnclave, OwnableUpgradeable { e3.requestBlock = block.number; e3.inputWindow = requestParams.inputWindow; e3.e3Program = requestParams.e3Program; - e3.e3ProgramParams = requestParams.e3ProgramParams; + e3.paramSet = requestParams.paramSet; e3.customParams = requestParams.customParams; e3.proofAggregationEnabled = requestParams.proofAggregationEnabled; e3.committeePublicKey = hex""; @@ -294,10 +292,13 @@ contract Enclave is IEnclave, OwnableUpgradeable { feeToken.safeTransferFrom(msg.sender, address(this), e3Fee); + bytes memory e3ProgramParams = paramSetRegistry[requestParams.paramSet]; + require(e3ProgramParams.length > 0, "BFV param set not registered"); + bytes32 encryptionSchemeId = requestParams.e3Program.validate( e3Id, seed, - requestParams.e3ProgramParams, + e3ProgramParams, requestParams.computeProviderParams, requestParams.customParams ); @@ -651,27 +652,16 @@ contract Enclave is IEnclave, OwnableUpgradeable { emit EncryptionSchemeDisabled(encryptionSchemeId); } - /// @inheritdoc IEnclave - function setE3ProgramsParams( - bytes[] memory _e3ProgramsParams - ) public onlyOwner { - uint256 length = _e3ProgramsParams.length; - for (uint256 i; i < length; ++i) { - e3ProgramsParams[_e3ProgramsParams[i]] = true; - } - emit AllowedE3ProgramsParamsSet(_e3ProgramsParams); - } - - /// @notice Removes previously allowed E3 program parameter sets - /// @param _e3ProgramsParams Array of ABI encoded parameter sets to remove - function removeE3ProgramsParams( - bytes[] memory _e3ProgramsParams + /// @notice Registers ABI-encoded BFV parameters for a param set enum variant. + /// @param paramSet The ParamSet variant to register. + /// @param encodedParams ABI-encoded BFV parameters (degree, plaintext_modulus, moduli[]). + function setParamSet( + ParamSet paramSet, + bytes calldata encodedParams ) public onlyOwner { - uint256 length = _e3ProgramsParams.length; - for (uint256 i; i < length; ++i) { - delete e3ProgramsParams[_e3ProgramsParams[i]]; - } - emit E3ProgramsParamsRemoved(_e3ProgramsParams); + require(encodedParams.length > 0, "Empty params"); + paramSetRegistry[paramSet] = encodedParams; + emit ParamSetRegistered(paramSet, encodedParams); } /// @notice Sets the E3 Refund Manager contract address diff --git a/packages/enclave-contracts/contracts/interfaces/IE3.sol b/packages/enclave-contracts/contracts/interfaces/IE3.sol index 84510ac8ff..77c50dcfca 100644 --- a/packages/enclave-contracts/contracts/interfaces/IE3.sol +++ b/packages/enclave-contracts/contracts/interfaces/IE3.sol @@ -21,7 +21,7 @@ import { IEnclave } from "./IEnclave.sol"; * @param inputWindow When to start and stop accepting inputs from data providers * @param encryptionSchemeId Identifier for the encryption scheme used in this computation * @param e3Program Address of the E3 Program contract that validates and verifies the computation - * @param e3ProgramParams ABI encoded computation parameters specific to the E3 program + * @param paramSet BFV encryption parameter set used for this computation * @param customParams Arbitrary ABI-encoded application-defined parameters. * @param decryptionVerifier Address of the output verifier contract for decryption verification * @param committeePublicKey Hash of the public key of the selected committee for this computation @@ -36,7 +36,7 @@ struct E3 { uint256[2] inputWindow; bytes32 encryptionSchemeId; IE3Program e3Program; - bytes e3ProgramParams; + IEnclave.ParamSet paramSet; bytes customParams; IDecryptionVerifier decryptionVerifier; IPkVerifier pkVerifier; diff --git a/packages/enclave-contracts/contracts/interfaces/IEnclave.sol b/packages/enclave-contracts/contracts/interfaces/IEnclave.sol index 0c64edf242..033a2c9fd6 100644 --- a/packages/enclave-contracts/contracts/interfaces/IEnclave.sol +++ b/packages/enclave-contracts/contracts/interfaces/IEnclave.sol @@ -27,6 +27,15 @@ interface IEnclave { Large } + /// @notice BFV encryption parameter sets. + /// @dev Each variant maps to a threshold BFV preset. The DKG counterpart + /// is derived automatically by the ciphernode software. + /// New variants require a contract upgrade + ciphernode software update. + enum ParamSet { + Insecure512, + Secure8192 + } + /// @notice Lifecycle stages of an E3 computation enum E3Stage { None, @@ -181,13 +190,10 @@ interface IEnclave { /// @param e3Program The address of the E3 Program. event E3ProgramDisabled(IE3Program e3Program); - /// @notice Emitted when the allowed E3 encryption scheme parameters are configured. - /// @param e3ProgramParams Array of encoded encryption scheme parameters (e.g, for BFV) - event AllowedE3ProgramsParamsSet(bytes[] e3ProgramParams); - - /// @notice Emitted when E3 program parameter sets are removed. - /// @param e3ProgramParams Array of removed encryption scheme parameters. - event E3ProgramsParamsRemoved(bytes[] e3ProgramParams); + /// @notice Emitted when a BFV param set is registered or updated. + /// @param paramSet The ParamSet variant. + /// @param encodedParams ABI-encoded BFV parameters. + event ParamSetRegistered(ParamSet paramSet, bytes encodedParams); /// @notice Emitted when E3RefundManager contract is set. /// @param e3RefundManager The address of the E3RefundManager contract. @@ -411,14 +417,14 @@ interface IEnclave { /// @param committeeSize The M/N threshold and honest parties for the committee. /// @param inputWindow When the program will start and stop accepting inputs. /// @param e3Program The address of the E3 Program. - /// @param e3ProgramParams The ABI encoded computation parameters. + /// @param paramSet The BFV encryption parameter set to use. /// @param computeProviderParams The ABI encoded compute provider parameters. /// @param customParams Arbitrary ABI-encoded application-defined parameters. struct E3RequestParams { CommitteeSize committeeSize; uint256[2] inputWindow; IE3Program e3Program; - bytes e3ProgramParams; + ParamSet paramSet; bytes computeProviderParams; bytes customParams; /// @notice When true, ciphernodes generate and fold wrapper proofs @@ -527,15 +533,13 @@ interface IEnclave { /// @param encryptionSchemeId The unique identifier for the encryption scheme to disable. function disableEncryptionScheme(bytes32 encryptionSchemeId) external; - /// @notice Sets the allowed E3 program parameters. - /// @dev This function enables specific parameter sets for E3 programs (e.g., BFV encryption parameters). - /// @param _e3ProgramsParams Array of ABI encoded parameter sets to allow. - function setE3ProgramsParams(bytes[] memory _e3ProgramsParams) external; - - /// @notice Removes previously allowed E3 program parameter sets. - /// @dev This function revokes specific parameter sets that should no longer be allowed. - /// @param _e3ProgramsParams Array of ABI encoded parameter sets to remove. - function removeE3ProgramsParams(bytes[] memory _e3ProgramsParams) external; + /// @notice Registers ABI-encoded BFV parameters for a param set enum variant. + /// @param paramSet The ParamSet variant to register. + /// @param encodedParams ABI-encoded BFV parameters. + function setParamSet( + ParamSet paramSet, + bytes calldata encodedParams + ) external; /// @notice Sets the full pricing configuration. /// @param config The new pricing configuration. diff --git a/packages/enclave-contracts/deployed_contracts.json b/packages/enclave-contracts/deployed_contracts.json index 358966c089..594f486eb9 100644 --- a/packages/enclave-contracts/deployed_contracts.json +++ b/packages/enclave-contracts/deployed_contracts.json @@ -151,21 +151,21 @@ }, "localhost": { "PoseidonT3": { - "blockNumber": 6, + "blockNumber": 1, "address": "0x3333333C0A88F9BE4fd23ed0536F9B6c427e3B93" }, "MockUSDC": { "constructorArgs": { "initialSupply": "1000000" }, - "blockNumber": 7, + "blockNumber": 2, "address": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512" }, "EnclaveToken": { "constructorArgs": { "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 8, + "blockNumber": 3, "address": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0" }, "EnclaveTicketToken": { @@ -174,14 +174,14 @@ "registry": "0x0000000000000000000000000000000000000001", "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 10, + "blockNumber": 5, "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9" }, "SlashingManager": { "constructorArgs": { "admin": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 11, + "blockNumber": 6, "address": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707" }, "CiphernodeRegistryOwnable": { @@ -196,7 +196,7 @@ "proxyAdminAddress": "0x9bd03768a7DCc129555dE410FF8E85528A4F88b5", "implementationAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F" }, - "blockNumber": 12, + "blockNumber": 7, "address": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853" }, "BondingRegistry": { @@ -218,7 +218,7 @@ "proxyAdminAddress": "0x8aCd85898458400f7Db866d53FCFF6f0D49741FF", "implementationAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6" }, - "blockNumber": 13, + "blockNumber": 8, "address": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318" }, "Enclave": { @@ -229,19 +229,16 @@ "e3RefundManager": "0x0000000000000000000000000000000000000001", "feeToken": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", "maxDuration": "2592000", - "timeoutConfig": "{\"committeeFormationWindow\":3600,\"dkgWindow\":7200,\"computeWindow\":86400,\"decryptionWindow\":3600}", - "params": [ - "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000ffffee0010000000000000000000000000000000000000000000000000000000ffffc400100000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000" - ] + "timeoutConfig": "{\"committeeFormationWindow\":3600,\"dkgWindow\":7200,\"computeWindow\":86400,\"decryptionWindow\":3600}" }, "proxyRecords": { - "initData": "0x01d12f1c000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c8530000000000000000000000008a791620dd6260079bf849dc5567adc3f2fdc3180000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f05120000000000000000000000000000000000000000000000000000000000278d000000000000000000000000000000000000000000000000000000000000001c2000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000e100000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000ffffee0010000000000000000000000000000000000000000000000000000000ffffc400100000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000", + "initData": "0x4d600e5d000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c8530000000000000000000000008a791620dd6260079bf849dc5567adc3f2fdc3180000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f05120000000000000000000000000000000000000000000000000000000000278d000000000000000000000000000000000000000000000000000000000000001c2000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000e10", "initialOwner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", "proxyAddress": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", "proxyAdminAddress": "0x8dAF17A20c9DBA35f005b6324F493785D239719d", "implementationAddress": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788" }, - "blockNumber": 16, + "blockNumber": 11, "address": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e" }, "E3RefundManager": { @@ -257,24 +254,24 @@ "proxyAdminAddress": "0x32467b43BFa67273FC7dDda0999Ee9A12F2AaA08", "implementationAddress": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0" }, - "blockNumber": 18, + "blockNumber": 13, "address": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82" }, "MockComputeProvider": { - "blockNumber": 20, - "address": "0xc3e53F4d16Ae77Db1c982e75a937B9f60FE63690" + "blockNumber": 33, + "address": "0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB" }, "MockDecryptionVerifier": { - "blockNumber": 21, - "address": "0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB" + "blockNumber": 34, + "address": "0x9E545E3C0baAB3E08CdfD552C960A1050f373042" }, "MockPkVerifier": { - "blockNumber": 22, - "address": "0x9E545E3C0baAB3E08CdfD552C960A1050f373042" + "blockNumber": 35, + "address": "0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9" }, "MockE3Program": { - "blockNumber": 23, - "address": "0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9" + "blockNumber": 36, + "address": "0x1613beB3B2C4f22Ee086B2b38C1476A3cE7f78E8" } } } \ No newline at end of file diff --git a/packages/enclave-contracts/ignition/modules/enclave.ts b/packages/enclave-contracts/ignition/modules/enclave.ts index e6990e143f..86d362fa03 100644 --- a/packages/enclave-contracts/ignition/modules/enclave.ts +++ b/packages/enclave-contracts/ignition/modules/enclave.ts @@ -6,7 +6,6 @@ import { buildModule } from "@nomicfoundation/hardhat-ignition/modules"; export default buildModule("Enclave", (m) => { - const params = m.getParameter("params"); const owner = m.getParameter("owner"); const maxDuration = m.getParameter("maxDuration"); const registry = m.getParameter("registry"); @@ -30,7 +29,6 @@ export default buildModule("Enclave", (m) => { feeToken, maxDuration, timeoutConfig, - [params], ]); const enclave = m.contract("TransparentUpgradeableProxy", [ diff --git a/packages/enclave-contracts/scripts/deployAndSave/enclave.ts b/packages/enclave-contracts/scripts/deployAndSave/enclave.ts index b8aa4f0dfd..173b9a77f7 100644 --- a/packages/enclave-contracts/scripts/deployAndSave/enclave.ts +++ b/packages/enclave-contracts/scripts/deployAndSave/enclave.ts @@ -7,11 +7,7 @@ import type { HardhatRuntimeEnvironment } from "hardhat/types/hre"; import { Enclave, Enclave__factory as EnclaveFactory } from "../../types"; import { getProxyAdmin, verifyProxyAdminOwner } from "../proxy"; -import { - areArraysEqual, - readDeploymentArgs, - storeDeploymentArgs, -} from "../utils"; +import { readDeploymentArgs, storeDeploymentArgs } from "../utils"; /** * Timeout configuration for E3 stages @@ -27,7 +23,6 @@ export interface E3TimeoutConfig { * The arguments for the deployAndSaveEnclave function */ export interface EnclaveArgs { - params?: string[]; owner?: string; maxDuration?: string; registry?: string; @@ -44,7 +39,6 @@ export interface EnclaveArgs { * @returns The deployed Enclave contract */ export const deployAndSaveEnclave = async ({ - params, owner, maxDuration, registry, @@ -62,7 +56,6 @@ export const deployAndSaveEnclave = async ({ const preDeployedArgs = readDeploymentArgs("Enclave", chain); if ( - !params || !owner || !maxDuration || !registry || @@ -76,10 +69,7 @@ export const deployAndSaveEnclave = async ({ preDeployedArgs?.constructorArgs?.bondingRegistry === bondingRegistry && preDeployedArgs?.constructorArgs?.e3RefundManager === e3RefundManager && preDeployedArgs?.constructorArgs?.feeToken === feeToken && - areArraysEqual( - preDeployedArgs?.constructorArgs?.params as string[], - params, - )) + true) ) { if (!preDeployedArgs?.address) { throw new Error("Enclave address not found, it must be deployed first"); @@ -106,7 +96,6 @@ export const deployAndSaveEnclave = async ({ feeToken, maxDuration, timeoutConfig, - params, ]); const ProxyCF = await ethers.getContractFactory( @@ -128,7 +117,6 @@ export const deployAndSaveEnclave = async ({ feeToken, maxDuration, timeoutConfig: JSON.stringify(timeoutConfig), - params, }, proxyRecords: { initData, diff --git a/packages/enclave-contracts/scripts/deployEnclave.ts b/packages/enclave-contracts/scripts/deployEnclave.ts index c0051a6486..a37768e3ae 100644 --- a/packages/enclave-contracts/scripts/deployEnclave.ts +++ b/packages/enclave-contracts/scripts/deployEnclave.ts @@ -146,7 +146,6 @@ export const deployEnclave = async ( console.log("Deploying Enclave..."); const { enclave } = await deployAndSaveEnclave({ - params: [encoded], owner: ownerAddress, maxDuration: THIRTY_DAYS_IN_SECONDS.toString(), registry: ciphernodeRegistryAddress, @@ -231,6 +230,11 @@ export const deployEnclave = async ( // Medium and Large can be set later as needed console.log("Committee thresholds set (Micro=[1,3], Small=[2,5])"); + // Register BFV param sets + console.log("Registering BFV param sets..."); + await enclave.setParamSet(0, encoded); // ParamSet.Insecure512 + console.log("ParamSet.Insecure512 registered"); + const encryptionSchemeId = ethers.keccak256(ethers.toUtf8Bytes("fhe.rs:BFV")); // Set pricing config with protocol treasury diff --git a/packages/enclave-contracts/tasks/enclave.ts b/packages/enclave-contracts/tasks/enclave.ts index 3e234e5b2a..1ae4d1ec1e 100644 --- a/packages/enclave-contracts/tasks/enclave.ts +++ b/packages/enclave-contracts/tasks/enclave.ts @@ -192,10 +192,8 @@ export const requestCommittee = task( hre.globalOptions.network, ); - let e3ProgramParams = e3Params; - if (e3ProgramParams === ZeroAddress) { - e3ProgramParams = zeroPadValue(e3ProgramParams, 32); - } + // paramSet: 0 = Insecure512, 1 = Secure8192 + const paramSet = 0; let computeProviderParams = computeParams; const mockDecryptionVerifierArgs = readDeploymentArgs( @@ -227,7 +225,7 @@ export const requestCommittee = task( ], e3Program: e3Address === ZeroAddress ? mockE3ProgramArgs!.address : e3Address, - e3ProgramParams, + paramSet, computeProviderParams, customParams, proofAggregationEnabled, diff --git a/packages/enclave-contracts/test/E3Lifecycle/E3Integration.spec.ts b/packages/enclave-contracts/test/E3Lifecycle/E3Integration.spec.ts index d8eac31daa..ebba4c6992 100644 --- a/packages/enclave-contracts/test/E3Lifecycle/E3Integration.spec.ts +++ b/packages/enclave-contracts/test/E3Lifecycle/E3Integration.spec.ts @@ -178,7 +178,6 @@ describe("E3 Integration - Refund/Timeout Mechanism", function () { const { enclave: _enclave } = await ignition.deploy(EnclaveModule, { parameters: { Enclave: { - params: encodedE3ProgramParams, owner: ownerAddress, maxDuration: THIRTY_DAYS, registry: ciphernodeRegistryAddress, @@ -247,6 +246,7 @@ describe("E3 Integration - Refund/Timeout Mechanism", function () { await enclave.setE3RefundManager(e3RefundManagerAddress); await enclave.setSlashingManager(await slashingManager.getAddress()); await enclave.enableE3Program(await e3Program.getAddress()); + await enclave.setParamSet(0, encodedE3ProgramParams); await enclave.setDecryptionVerifier( encryptionSchemeId, await decryptionVerifier.getAddress(), @@ -305,7 +305,7 @@ describe("E3 Integration - Refund/Timeout Mechanism", function () { committeeSize, inputWindow: [startTime + 100, startTime + ONE_DAY] as [number, number], e3Program: await e3Program.getAddress(), - e3ProgramParams: encodedE3ProgramParams, + paramSet: 0, computeProviderParams: abiCoder.encode( ["address"], [await decryptionVerifier.getAddress()], @@ -521,7 +521,6 @@ describe("E3 Integration - Refund/Timeout Mechanism", function () { const newEnclaveContract = await ignition.deploy(EnclaveModule, { parameters: { Enclave: { - params: encodedE3ProgramParams, owner: await owner.getAddress(), maxDuration: THIRTY_DAYS, registry: await enclave.ciphernodeRegistry(), @@ -1268,7 +1267,7 @@ describe("E3 Integration - Refund/Timeout Mechanism", function () { committeeSize: 0, inputWindow: [startTime, startTime + ONE_DAY] as [number, number], e3Program: await e3Program.getAddress(), - e3ProgramParams: encodedE3ProgramParams, + paramSet: 0, computeProviderParams: abiCoder.encode( ["address"], [await decryptionVerifier.getAddress()], @@ -1351,7 +1350,7 @@ describe("E3 Integration - Refund/Timeout Mechanism", function () { committeeSize: 0, inputWindow: [startTime, startTime + ONE_DAY] as [number, number], e3Program: await e3Program.getAddress(), - e3ProgramParams: encodedE3ProgramParams, + paramSet: 0, computeProviderParams: abiCoder.encode( ["address"], [await decryptionVerifier.getAddress()], diff --git a/packages/enclave-contracts/test/Enclave.spec.ts b/packages/enclave-contracts/test/Enclave.spec.ts index ce9d2af7be..6885751758 100644 --- a/packages/enclave-contracts/test/Enclave.spec.ts +++ b/packages/enclave-contracts/test/Enclave.spec.ts @@ -188,7 +188,6 @@ describe("Enclave", function () { const { enclave: _enclave } = await ignition.deploy(EnclaveModule, { parameters: { Enclave: { - params: encodedE3ProgramParams, owner: ownerAddress, maxDuration: THIRTY_DAYS_IN_SECONDS, registry: ciphernodeRegistryAddress, @@ -243,7 +242,7 @@ describe("Enclave", function () { await ignition.deploy(MockE3ProgramModule); await enclave.enableE3Program(await e3Program.getAddress()); - await enclave.setE3ProgramsParams([encodedE3ProgramParams]); + await enclave.setParamSet(0, encodedE3ProgramParams); await enclave.setDecryptionVerifier( encryptionSchemeId, await decryptionVerifier.getAddress(), @@ -285,7 +284,7 @@ describe("Enclave", function () { committeeSize: 0, // Micro inputWindow: [now + 10, now + inputWindowDuration] as [number, number], e3Program: await e3Program.getAddress(), - e3ProgramParams: encodedE3ProgramParams, + paramSet: 0, computeProviderParams: abiCoder.encode( ["address"], [await decryptionVerifier.getAddress()], @@ -406,48 +405,35 @@ describe("Enclave", function () { }); }); - describe("setE3ProgramsParams()", function () { - const encodedE3ProgramsParams = [encodedE3ProgramParams]; - + describe("setParamSet()", function () { it("reverts if not called by owner", async function () { const { enclave, notTheOwner } = await loadFixture(setup); await expect( - enclave - .connect(notTheOwner) - .setE3ProgramsParams(encodedE3ProgramsParams), + enclave.connect(notTheOwner).setParamSet(0, encodedE3ProgramParams), ) .to.be.revertedWithCustomError(enclave, "OwnableUnauthorizedAccount") .withArgs(notTheOwner); }); - it("sets E3 program parameters correctly", async function () { + it("registers param set and emits event", async function () { const { enclave } = await loadFixture(setup); - await enclave.setE3ProgramsParams(encodedE3ProgramsParams); - expect(await enclave.e3ProgramsParams(encodedE3ProgramsParams[0]!)).to.be - .true; - }); - - it("emits AllowedE3ProgramsParamsSet event", async function () { - const { enclave } = await loadFixture(setup); + await expect(enclave.setParamSet(1, encodedE3ProgramParams)) + .to.emit(enclave, "ParamSetRegistered") + .withArgs(1, encodedE3ProgramParams); - await expect(enclave.setE3ProgramsParams(encodedE3ProgramsParams)) - .to.emit(enclave, "AllowedE3ProgramsParamsSet") - .withArgs(encodedE3ProgramsParams); + expect(await enclave.paramSetRegistry(1)).to.equal( + encodedE3ProgramParams, + ); }); - it("handles multiple parameters", async function () { + it("reverts with empty params", async function () { const { enclave } = await loadFixture(setup); - encodedE3ProgramsParams.push( - "0x0000000000000000000000000000000000000000000000000000000000000001", - ); - await enclave.setE3ProgramsParams(encodedE3ProgramsParams); - - for (const param of encodedE3ProgramsParams) { - expect(await enclave.e3ProgramsParams(param)).to.be.true; - } + await expect(enclave.setParamSet(0, "0x")).to.be.revertedWith( + "Empty params", + ); }); }); @@ -467,7 +453,7 @@ describe("Enclave", function () { committeeSize: request.committeeSize, inputWindow: request.inputWindow, e3Program: request.e3Program, - e3ProgramParams: request.e3ProgramParams, + paramSet: request.paramSet, computeProviderParams: request.computeProviderParams, customParams: request.customParams, proofAggregationEnabled: false, @@ -479,7 +465,7 @@ describe("Enclave", function () { expect(e3.inputWindow[0]).to.equal(request.inputWindow[0]); expect(e3.inputWindow[1]).to.equal(request.inputWindow[1]); expect(e3.e3Program).to.equal(request.e3Program); - expect(e3.e3ProgramParams).to.equal(request.e3ProgramParams); + expect(e3.paramSet).to.equal(request.paramSet); expect(e3.decryptionVerifier).to.equal( abiCoder.decode(["address"], request.computeProviderParams)[0], ); @@ -671,7 +657,7 @@ describe("Enclave", function () { committeeSize: request.committeeSize, inputWindow: request.inputWindow, e3Program: request.e3Program, - e3ProgramParams: request.e3ProgramParams, + paramSet: request.paramSet, computeProviderParams: request.computeProviderParams, customParams: request.customParams, proofAggregationEnabled: false, @@ -686,7 +672,7 @@ describe("Enclave", function () { committeeSize: 3, inputWindow: request.inputWindow, e3Program: request.e3Program, - e3ProgramParams: request.e3ProgramParams, + paramSet: request.paramSet, computeProviderParams: request.computeProviderParams, customParams: request.customParams, proofAggregationEnabled: false, @@ -706,7 +692,7 @@ describe("Enclave", function () { request.inputWindow[1] + time.duration.days(31), ], e3Program: request.e3Program, - e3ProgramParams: request.e3ProgramParams, + paramSet: request.paramSet, computeProviderParams: request.computeProviderParams, customParams: request.customParams, proofAggregationEnabled: false, @@ -721,7 +707,7 @@ describe("Enclave", function () { committeeSize: request.committeeSize, inputWindow: request.inputWindow, e3Program: ethers.ZeroAddress, - e3ProgramParams: request.e3ProgramParams, + paramSet: request.paramSet, computeProviderParams: request.computeProviderParams, customParams: request.customParams, proofAggregationEnabled: false, @@ -738,7 +724,7 @@ describe("Enclave", function () { committeeSize: request.committeeSize, inputWindow: request.inputWindow, e3Program: request.e3Program, - e3ProgramParams: request.e3ProgramParams, + paramSet: request.paramSet, computeProviderParams: request.computeProviderParams, customParams: request.customParams, proofAggregationEnabled: false, @@ -754,7 +740,7 @@ describe("Enclave", function () { committeeSize: request.committeeSize, inputWindow: request.inputWindow, e3Program: request.e3Program, - e3ProgramParams: request.e3ProgramParams, + paramSet: request.paramSet, computeProviderParams: request.computeProviderParams, customParams: request.customParams, proofAggregationEnabled: false, @@ -781,7 +767,7 @@ describe("Enclave", function () { committeeSize: request.committeeSize, inputWindow: request.inputWindow, e3Program: request.e3Program, - e3ProgramParams: request.e3ProgramParams, + paramSet: request.paramSet, computeProviderParams: request.computeProviderParams, customParams: request.customParams, proofAggregationEnabled: false, @@ -819,7 +805,7 @@ describe("Enclave", function () { committeeSize: request.committeeSize, inputWindow: request.inputWindow, e3Program: request.e3Program, - e3ProgramParams: request.e3ProgramParams, + paramSet: request.paramSet, computeProviderParams: request.computeProviderParams, customParams: request.customParams, proofAggregationEnabled: false, @@ -894,7 +880,7 @@ describe("Enclave", function () { committeeSize: request.committeeSize, inputWindow: [(await time.latest()) + 20, (await time.latest()) + 100], e3Program: request.e3Program, - e3ProgramParams: request.e3ProgramParams, + paramSet: request.paramSet, computeProviderParams: request.computeProviderParams, customParams: request.customParams, proofAggregationEnabled: false, diff --git a/packages/enclave-contracts/test/Pricing/Pricing.spec.ts b/packages/enclave-contracts/test/Pricing/Pricing.spec.ts index c773286b65..9b4960a5c1 100644 --- a/packages/enclave-contracts/test/Pricing/Pricing.spec.ts +++ b/packages/enclave-contracts/test/Pricing/Pricing.spec.ts @@ -222,7 +222,6 @@ describe("E3 Pricing", function () { const { enclave: _enclave } = await ignition.deploy(EnclaveModule, { parameters: { Enclave: { - params: encodedE3ProgramParams, owner: ownerAddress, maxDuration: THIRTY_DAYS_IN_SECONDS, registry: ciphernodeRegistryAddress, @@ -273,7 +272,7 @@ describe("E3 Pricing", function () { await ignition.deploy(MockPkVerifierModule); await enclave.enableE3Program(await e3Program.getAddress()); - await enclave.setE3ProgramsParams([encodedE3ProgramParams]); + await enclave.setParamSet(0, encodedE3ProgramParams); await enclave.setDecryptionVerifier( encryptionSchemeId, await decryptionVerifier.getAddress(), @@ -312,7 +311,7 @@ describe("E3 Pricing", function () { committeeSize: 0, // Micro inputWindow: [now + 10, now + inputWindowDuration] as [number, number], e3Program: await e3Program.getAddress(), - e3ProgramParams: encodedE3ProgramParams, + paramSet: 0, computeProviderParams: abiCoder.encode( ["address"], [await decryptionVerifier.getAddress()], @@ -595,7 +594,7 @@ describe("E3 Pricing", function () { number, ], e3Program: await e3Program.getAddress(), - e3ProgramParams: encodedE3ProgramParams, + paramSet: 0, computeProviderParams: abiCoder.encode( ["address"], [await decryptionVerifier.getAddress()], @@ -678,7 +677,7 @@ describe("E3 Pricing", function () { number, ], e3Program: await e3Program.getAddress(), - e3ProgramParams: encodedE3ProgramParams, + paramSet: 0, computeProviderParams: abiCoder.encode( ["address"], [await decryptionVerifier.getAddress()], diff --git a/packages/enclave-contracts/test/Registry/CiphernodeRegistryOwnable.spec.ts b/packages/enclave-contracts/test/Registry/CiphernodeRegistryOwnable.spec.ts index 1af2dc7c51..02cc1a9843 100644 --- a/packages/enclave-contracts/test/Registry/CiphernodeRegistryOwnable.spec.ts +++ b/packages/enclave-contracts/test/Registry/CiphernodeRegistryOwnable.spec.ts @@ -141,7 +141,6 @@ describe("CiphernodeRegistryOwnable", function () { const { enclave: _enclave } = await ignition.deploy(EnclaveModule, { parameters: { Enclave: { - params: encodedE3ProgramParams, owner: ownerAddress, maxDuration: 60 * 60 * 24 * 30, // 30 days registry: registryAddress, @@ -194,7 +193,7 @@ describe("CiphernodeRegistryOwnable", function () { const { mockPkVerifier } = await ignition.deploy(MockPkVerifierModule); await enclave.enableE3Program(await mockE3Program.getAddress()); - await enclave.setE3ProgramsParams([encodedE3ProgramParams]); + await enclave.setParamSet(0, encodedE3ProgramParams); await enclave.setDecryptionVerifier( encryptionSchemeId, await mockDecryptionVerifier.getAddress(), @@ -266,7 +265,7 @@ describe("CiphernodeRegistryOwnable", function () { committeeSize: 0, inputWindow: [currentTime + 100, currentTime + 300] as [number, number], e3Program: await mockE3Program.getAddress(), - e3ProgramParams: encodedE3ProgramParams, + paramSet: 0, computeProviderParams: abiCoder.encode( ["address"], [await mockDecryptionVerifier.getAddress()], diff --git a/packages/enclave-contracts/test/Slashing/CommitteeExpulsion.spec.ts b/packages/enclave-contracts/test/Slashing/CommitteeExpulsion.spec.ts index 00357d35bc..f799f6cd36 100644 --- a/packages/enclave-contracts/test/Slashing/CommitteeExpulsion.spec.ts +++ b/packages/enclave-contracts/test/Slashing/CommitteeExpulsion.spec.ts @@ -194,7 +194,6 @@ describe("Committee Expulsion & Fault Tolerance", function () { const { enclave: _enclave } = await ignition.deploy(EnclaveModule, { parameters: { Enclave: { - params: encodedE3ProgramParams, owner: ownerAddress, maxDuration: THIRTY_DAYS, registry: registryAddress, @@ -232,6 +231,7 @@ describe("Committee Expulsion & Fault Tolerance", function () { await registry.setSlashingManager(await slashingManager.getAddress()); await enclave.enableE3Program(await e3Program.getAddress()); + await enclave.setParamSet(0, encodedE3ProgramParams); await enclave.setDecryptionVerifier( encryptionSchemeId, await decryptionVerifier.getAddress(), @@ -315,7 +315,7 @@ describe("Committee Expulsion & Fault Tolerance", function () { committeeSize, inputWindow: [startTime + 100, startTime + ONE_DAY] as [number, number], e3Program: await e3Program.getAddress(), - e3ProgramParams: encodedE3ProgramParams, + paramSet: 0, computeProviderParams: abiCoder.encode( ["address"], [await decryptionVerifier.getAddress()], diff --git a/packages/enclave-sdk/src/contracts/contract-client.ts b/packages/enclave-sdk/src/contracts/contract-client.ts index c8cd8365f3..2665fb28b8 100644 --- a/packages/enclave-sdk/src/contracts/contract-client.ts +++ b/packages/enclave-sdk/src/contracts/contract-client.ts @@ -152,7 +152,7 @@ export class ContractClient { committeeSize: params.committeeSize, inputWindow: params.inputWindow, e3Program: params.e3Program, - e3ProgramParams: params.e3ProgramParams, + paramSet: params.paramSet, computeProviderParams: params.computeProviderParams, customParams: params.customParams || '0x', proofAggregationEnabled: params.proofAggregationEnabled ?? true, @@ -225,7 +225,7 @@ export class ContractClient { committeeSize: requestParams.committeeSize, inputWindow: requestParams.inputWindow, e3Program: requestParams.e3Program, - e3ProgramParams: requestParams.e3ProgramParams, + paramSet: requestParams.paramSet, computeProviderParams: requestParams.computeProviderParams, customParams: requestParams.customParams || '0x', proofAggregationEnabled: requestParams.proofAggregationEnabled ?? true, diff --git a/packages/enclave-sdk/src/contracts/types.ts b/packages/enclave-sdk/src/contracts/types.ts index 286042f3a8..51195b69a2 100644 --- a/packages/enclave-sdk/src/contracts/types.ts +++ b/packages/enclave-sdk/src/contracts/types.ts @@ -17,6 +17,11 @@ export enum CommitteeSize { Large = 3, } +export enum ParamSet { + Insecure512 = 0, + Secure8192 = 1, +} + export interface E3 { seed: bigint committeeSize: number @@ -24,7 +29,7 @@ export interface E3 { inputWindow: readonly [bigint, bigint] encryptionSchemeId: string e3Program: string - e3ProgramParams: string + paramSet: number decryptionVerifier: string committeePublicKey: string ciphertextOutput: string @@ -39,7 +44,7 @@ export interface E3RequestParams extends RequestParams { committeeSize: number inputWindow: readonly [bigint, bigint] e3Program: `0x${string}` - e3ProgramParams: `0x${string}` + paramSet: number computeProviderParams: `0x${string}` customParams?: `0x${string}` /** When true, ciphernodes generate wrapper/fold proofs for DKG proof aggregation. diff --git a/packages/enclave-sdk/src/enclave-sdk.ts b/packages/enclave-sdk/src/enclave-sdk.ts index 08fc78511e..021fc08503 100644 --- a/packages/enclave-sdk/src/enclave-sdk.ts +++ b/packages/enclave-sdk/src/enclave-sdk.ts @@ -137,7 +137,7 @@ export class EnclaveSDK { committeeSize: number inputWindow: [bigint, bigint] e3Program: `0x${string}` - e3ProgramParams: `0x${string}` + paramSet: number computeProviderParams: `0x${string}` customParams?: `0x${string}` proofAggregationEnabled?: boolean diff --git a/packages/enclave-sdk/src/events/types.ts b/packages/enclave-sdk/src/events/types.ts index 4da2c67268..791f3f4091 100644 --- a/packages/enclave-sdk/src/events/types.ts +++ b/packages/enclave-sdk/src/events/types.ts @@ -16,7 +16,7 @@ export enum EnclaveEventType { ENCRYPTION_SCHEME_DISABLED = 'EncryptionSchemeDisabled', CIPHERNODE_REGISTRY_SET = 'CiphernodeRegistrySet', MAX_DURATION_SET = 'MaxDurationSet', - ALLOWED_E3_PROGRAMS_PARAMS_SET = 'AllowedE3ProgramsParamsSet', + PARAM_SET_REGISTERED = 'ParamSetRegistered', OWNERSHIP_TRANSFERRED = 'OwnershipTransferred', INITIALIZED = 'Initialized', } @@ -41,7 +41,7 @@ export interface E3RequestedData { inputWindow: readonly [bigint, bigint] encryptionSchemeId: string e3Program: string - e3ProgramParams: string + paramSet: number decryptionVerifier: string committeePublicKey: string ciphertextOutput: string @@ -113,7 +113,7 @@ export interface EnclaveEventData { [EnclaveEventType.ENCRYPTION_SCHEME_DISABLED]: { encryptionSchemeId: string } [EnclaveEventType.CIPHERNODE_REGISTRY_SET]: { ciphernodeRegistry: string } [EnclaveEventType.MAX_DURATION_SET]: { maxDuration: bigint } - [EnclaveEventType.ALLOWED_E3_PROGRAMS_PARAMS_SET]: { e3ProgramParams: string[] } + [EnclaveEventType.PARAM_SET_REGISTERED]: { paramSet: number; encodedParams: string } [EnclaveEventType.OWNERSHIP_TRANSFERRED]: { previousOwner: string; newOwner: string } [EnclaveEventType.INITIALIZED]: { version: bigint } } diff --git a/templates/default/client/src/pages/steps/RequestComputation.tsx b/templates/default/client/src/pages/steps/RequestComputation.tsx index f506c4601f..b6141c3ba9 100644 --- a/templates/default/client/src/pages/steps/RequestComputation.tsx +++ b/templates/default/client/src/pages/steps/RequestComputation.tsx @@ -107,15 +107,13 @@ const RequestComputation: React.FC = () => { const publicClient = sdk.sdk.getPublicClient() const inputWindow = await calculateInputWindow(publicClient, 600) // 10 min - const thresholdBfvParams = await sdk.getThresholdBfvParamsSet() - const e3ProgramParams = encodeBfvParams(thresholdBfvParams) const computeProviderParams = encodeComputeProviderParams(DEFAULT_COMPUTE_PROVIDER_PARAMS) const requestParams = { committeeSize, inputWindow, e3Program: contracts.e3Program, - e3ProgramParams, + paramSet: 0, // ParamSet.Insecure512 computeProviderParams, proofAggregationEnabled: false, } diff --git a/templates/default/deployed_contracts.json b/templates/default/deployed_contracts.json index 07a0e0e735..8c2873bc99 100644 --- a/templates/default/deployed_contracts.json +++ b/templates/default/deployed_contracts.json @@ -1,21 +1,21 @@ { "localhost": { "PoseidonT3": { - "blockNumber": 4, + "blockNumber": 7, "address": "0x3333333C0A88F9BE4fd23ed0536F9B6c427e3B93" }, "MockUSDC": { "constructorArgs": { "initialSupply": "1000000" }, - "blockNumber": 5, + "blockNumber": 8, "address": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512" }, "EnclaveToken": { "constructorArgs": { "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 6, + "blockNumber": 9, "address": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0" }, "EnclaveTicketToken": { @@ -24,14 +24,14 @@ "registry": "0x0000000000000000000000000000000000000001", "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 8, + "blockNumber": 11, "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9" }, "SlashingManager": { "constructorArgs": { "admin": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 9, + "blockNumber": 12, "address": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707" }, "CiphernodeRegistryOwnable": { @@ -46,7 +46,7 @@ "proxyAdminAddress": "0x9bd03768a7DCc129555dE410FF8E85528A4F88b5", "implementationAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F" }, - "blockNumber": 10, + "blockNumber": 13, "address": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853" }, "BondingRegistry": { @@ -68,7 +68,7 @@ "proxyAdminAddress": "0x8aCd85898458400f7Db866d53FCFF6f0D49741FF", "implementationAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6" }, - "blockNumber": 11, + "blockNumber": 14, "address": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318" }, "Enclave": { @@ -79,19 +79,16 @@ "e3RefundManager": "0x0000000000000000000000000000000000000001", "feeToken": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", "maxDuration": "2592000", - "timeoutConfig": "{\"committeeFormationWindow\":3600,\"dkgWindow\":7200,\"computeWindow\":86400,\"decryptionWindow\":3600}", - "params": [ - "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000ffffee0010000000000000000000000000000000000000000000000000000000ffffc400100000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000" - ] + "timeoutConfig": "{\"committeeFormationWindow\":3600,\"dkgWindow\":7200,\"computeWindow\":86400,\"decryptionWindow\":3600}" }, "proxyRecords": { - "initData": "0x01d12f1c000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c8530000000000000000000000008a791620dd6260079bf849dc5567adc3f2fdc3180000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f05120000000000000000000000000000000000000000000000000000000000278d000000000000000000000000000000000000000000000000000000000000001c2000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000e100000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000ffffee0010000000000000000000000000000000000000000000000000000000ffffc400100000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000", + "initData": "0x4d600e5d000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c8530000000000000000000000008a791620dd6260079bf849dc5567adc3f2fdc3180000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f05120000000000000000000000000000000000000000000000000000000000278d000000000000000000000000000000000000000000000000000000000000001c2000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000e10", "initialOwner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", "proxyAddress": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", "proxyAdminAddress": "0x8dAF17A20c9DBA35f005b6324F493785D239719d", "implementationAddress": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788" }, - "blockNumber": 14, + "blockNumber": 17, "address": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e" }, "E3RefundManager": { @@ -107,56 +104,56 @@ "proxyAdminAddress": "0x32467b43BFa67273FC7dDda0999Ee9A12F2AaA08", "implementationAddress": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0" }, - "blockNumber": 16, + "blockNumber": 19, "address": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82" }, "MockComputeProvider": { - "blockNumber": 18, - "address": "0xE6E340D132b5f46d1e472DebcD681B2aBc16e57E" + "blockNumber": 21, + "address": "0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB" }, "MockDecryptionVerifier": { - "blockNumber": 19, - "address": "0xc3e53F4d16Ae77Db1c982e75a937B9f60FE63690" + "blockNumber": 22, + "address": "0x9E545E3C0baAB3E08CdfD552C960A1050f373042" }, "MockPkVerifier": { - "blockNumber": 20, - "address": "0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB" + "blockNumber": 23, + "address": "0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9" }, "MockE3Program": { - "blockNumber": 21, - "address": "0x9E545E3C0baAB3E08CdfD552C960A1050f373042" + "blockNumber": 24, + "address": "0x1613beB3B2C4f22Ee086B2b38C1476A3cE7f78E8" }, "ZKTranscriptLib": { - "blockNumber": 23, - "address": "0x1613beB3B2C4f22Ee086B2b38C1476A3cE7f78E8" + "blockNumber": 26, + "address": "0xf5059a5D33d5853360D16C683c16e67980206f36" }, "RecursiveAggregationFoldVerifier": { - "blockNumber": 24, - "address": "0x851356ae760d987E095750cCeb3bC6014560891C" + "blockNumber": 27, + "address": "0x95401dc811bb5740090279Ba06cfA8fcF6113778" }, "ThresholdDecryptedSharesAggregationVerifier": { - "blockNumber": 25, - "address": "0xf5059a5D33d5853360D16C683c16e67980206f36" + "blockNumber": 28, + "address": "0x998abeb3E57409262aE5b751f60747921B33613E" }, "ThresholdPkAggregationVerifier": { - "blockNumber": 26, - "address": "0x95401dc811bb5740090279Ba06cfA8fcF6113778" + "blockNumber": 29, + "address": "0x70e0bA845a1A0F2DA3359C97E0285013525FFC49" }, "BfvDecryptionVerifier": { - "blockNumber": 27, - "address": "0x998abeb3E57409262aE5b751f60747921B33613E" + "blockNumber": 30, + "address": "0x4826533B4897376654Bb4d4AD88B7faFD0C98528" }, "BfvPkVerifier": { - "blockNumber": 29, - "address": "0x4826533B4897376654Bb4d4AD88B7faFD0C98528" + "blockNumber": 32, + "address": "0x0E801D84Fa97b50751Dbf25036d067dCf18858bF" }, "ImageID": { - "address": "0x8f86403A4DE0BB5791fa46B8e795C547942fE4Cf", - "blockNumber": 32 + "address": "0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00", + "blockNumber": 35 }, "MyProgram": { - "address": "0x9d4454B023096f34B160D6B654540c56A1F81688", - "blockNumber": 34 + "address": "0x36C02dA8a0983159322a80FFE9F24b1acfF8B570", + "blockNumber": 37 } } } \ No newline at end of file diff --git a/templates/default/enclave.config.yaml b/templates/default/enclave.config.yaml index 6d6ce9fe18..60c85ac8fe 100644 --- a/templates/default/enclave.config.yaml +++ b/templates/default/enclave.config.yaml @@ -4,22 +4,22 @@ chains: contracts: enclave: address: "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e" - deploy_block: 14 + deploy_block: 17 ciphernode_registry: address: "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853" - deploy_block: 10 + deploy_block: 13 bonding_registry: address: "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318" - deploy_block: 11 + deploy_block: 14 slashing_manager: address: "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707" deploy_block: 13 fee_token: address: "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512" - deploy_block: 5 + deploy_block: 8 e3_program: - address: "0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00" - deploy_block: 34 + address: "0x36C02dA8a0983159322a80FFE9F24b1acfF8B570" + deploy_block: 37 program: dev: true nodes: diff --git a/templates/default/logs.txt b/templates/default/logs.txt new file mode 100644 index 0000000000..a90a01b91b --- /dev/null +++ b/templates/default/logs.txt @@ -0,0 +1,2764 @@ + +> enclave-example@0.0.0 test:integration /Users/ctrlc03/Documents/zk/enclave/templates/default +> ./scripts/test_integration.sh + +[SERVER] +[SERVER] > enclave-example@0.0.0 dev:server /Users/ctrlc03/Documents/zk/enclave/templates/default +[SERVER] > ./scripts/dev_server.sh +[SERVER] +[CIPHER] +[CIPHER] > enclave-example@0.0.0 dev:ciphernodes /Users/ctrlc03/Documents/zk/enclave/templates/default +[CIPHER] > ./scripts/dev_ciphernodes.sh +[CIPHER] +[PROGRAM] +[PROGRAM] > enclave-example@0.0.0 dev:program /Users/ctrlc03/Documents/zk/enclave/templates/default +[PROGRAM] > ./scripts/dev_program.sh +[PROGRAM] +[SERVER] Waiting for evm node... +[CIPHER] Waiting for local evm node... +[PROGRAM] enclave rev = f586cfda2 +[PROGRAM] Waiting on ciphernodes to be ready... +[SERVER] Waiting for contracts to be deployed... +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Wallet key has been successfully stored and encrypted. +[CIPHER] Setting up ZK prover... +[CIPHER] Setting up ZK prover... +[CIPHER] +[CIPHER] target bb version: 3.0.0-nightly.20260102 +[CIPHER] target circuits version: 0.1.15 +[CIPHER] +[CIPHER] ZK prover is already set up and up to date. +[CIPHER] bb version: 3.0.0-nightly.20260102 +[CIPHER] circuits version: 0.1.15 +[CIPHER] Use --force to reinstall. +[CIPHER] 2026-04-01T13:41:47.705886Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] 2026-04-01T13:41:47.711685Z  INFO execute:execute: actix_server::builder: starting 1 workers +[CIPHER] 2026-04-01T13:41:47.711732Z  INFO execute:execute: actix_server::server: Actix runtime found; starting in Actix runtime +[CIPHER] 2026-04-01T13:41:47.711750Z  INFO execute:execute: actix_server::server: starting service: "actix-web-service-127.0.0.1:13415", workers: 1, listening on: 127.0.0.1:13415 +[CIPHER] [cn5] 2026-04-01T13:41:47.715865Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [cn3] 2026-04-01T13:41:47.715902Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] ___ ___ ___ ___ ___ +[CIPHER] [cn3] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [cn3] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [cn3] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [cn3] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [cn3] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [cn3] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [cn3] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [cn3] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [cn3] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [cn3] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn3] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn3] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] ___ ___ ___ ___ ___ +[CIPHER] [cn5] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [cn5] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [cn5] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [cn5] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [cn5] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [cn5] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [cn5] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [cn5] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [cn5] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [cn5] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn5] +[CIPHER] [cn1] 2026-04-01T13:41:47.716537Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] ___ ___ ___ ___ ___ +[CIPHER] [cn1] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [cn1] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [cn1] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [cn1] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [cn1] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [cn1] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [cn1] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [cn1] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [cn1] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [cn1] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn1] +[CIPHER] [cn2] 2026-04-01T13:41:47.716756Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] ___ ___ ___ ___ ___ +[CIPHER] [cn2] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [cn2] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [cn2] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [cn2] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [cn2] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [cn2] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [cn2] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [cn2] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [cn2] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [cn2] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [cn2] +[CIPHER] [ag] 2026-04-01T13:41:47.716856Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] ___ ___ ___ ___ ___ +[CIPHER] [ag] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [ag] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [ag] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [ag] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [ag] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [ag] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [ag] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [ag] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [cn4] 2026-04-01T13:41:47.718183Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] /\__\ /\ \ /\__\ /\ \ ___ /\__\ +[CIPHER] [cn4] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ +[CIPHER] [cn4] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ +[CIPHER] [cn4] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / +[CIPHER] [cn4] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / +[CIPHER] [cn4] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / +[CIPHER] [cn4] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [ag] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [ag] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [ag] +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn4] ___ ___ ___ ___ ___ +[CIPHER] [cn4] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ +[CIPHER] [cn4] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ +[CIPHER] [cn4] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ +[CIPHER] [cn4] +[CIPHER] [cn4] +[CIPHER] [cn2] 2026-04-01T13:41:47.764538Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/db" +[CIPHER] [cn2] 2026-04-01T13:41:47.768144Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.0") +[CIPHER] [cn2] 2026-04-01T13:41:47.768198Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn2] 2026-04-01T13:41:47.768215Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.0/00000000000000000000.index" +[CIPHER] [cn1] 2026-04-01T13:41:47.768290Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/db" +[CIPHER] [cn4] 2026-04-01T13:41:47.769968Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/db" +[CIPHER] [cn1] 2026-04-01T13:41:47.772536Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.31337") +[CIPHER] [cn4] 2026-04-01T13:41:47.772632Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.31337") +[CIPHER] [cn4] 2026-04-01T13:41:47.772676Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn4] 2026-04-01T13:41:47.772682Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.31337/00000000000000000000.index" +[CIPHER] [cn1] 2026-04-01T13:41:47.772682Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn1] 2026-04-01T13:41:47.772698Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.31337/00000000000000000000.index" +[CIPHER] [cn5] 2026-04-01T13:41:47.772796Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/db" +[CIPHER] [cn3] 2026-04-01T13:41:47.772858Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/db" +[CIPHER] [cn2] 2026-04-01T13:41:47.775778Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.31337") +[CIPHER] [cn2] 2026-04-01T13:41:47.775885Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn2] 2026-04-01T13:41:47.775892Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.31337/00000000000000000000.index" +[CIPHER] [cn3] 2026-04-01T13:41:47.775782Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.0") +[CIPHER] [cn3] 2026-04-01T13:41:47.775911Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.0/00000000000000000000.index" +[CIPHER] [cn5] 2026-04-01T13:41:47.775888Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [ag] 2026-04-01T13:41:47.775836Z  INFO execute: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/db" +[CIPHER] [cn3] 2026-04-01T13:41:47.775903Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn5] 2026-04-01T13:41:47.775895Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.31337/00000000000000000000.index" +[CIPHER] [cn5] 2026-04-01T13:41:47.775781Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.31337") +[CIPHER] [cn4] 2026-04-01T13:41:47.778778Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.0") +[CIPHER] [ag] 2026-04-01T13:41:47.778789Z  INFO execute: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.31337") +[CIPHER] [cn4] 2026-04-01T13:41:47.778858Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn4] 2026-04-01T13:41:47.778863Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.0/00000000000000000000.index" +[CIPHER] [ag] 2026-04-01T13:41:47.778926Z  INFO execute: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [ag] 2026-04-01T13:41:47.778964Z  INFO execute: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.31337/00000000000000000000.index" +[CIPHER] [cn3] 2026-04-01T13:41:47.781217Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.31337") +[CIPHER] [cn3] 2026-04-01T13:41:47.781264Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn3] 2026-04-01T13:41:47.781267Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.31337/00000000000000000000.index" +[CIPHER] [cn4] 2026-04-01T13:41:47.781266Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [cn4] 2026-04-01T13:41:47.781306Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/db" +[CIPHER] [cn4] from_sled_store_with_buffer... +[CIPHER] [cn2] 2026-04-01T13:41:47.781315Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [cn2] 2026-04-01T13:41:47.781330Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/db" +[CIPHER] [cn2] from_sled_store_with_buffer... +[CIPHER] [cn1] 2026-04-01T13:41:47.781338Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.0") +[CIPHER] [cn1] 2026-04-01T13:41:47.781459Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn1] 2026-04-01T13:41:47.781467Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.0/00000000000000000000.index" +[CIPHER] [cn5] 2026-04-01T13:41:47.781495Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.0") +[CIPHER] [cn5] 2026-04-01T13:41:47.781531Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [cn5] 2026-04-01T13:41:47.781534Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.0/00000000000000000000.index" +[CIPHER] [cn3] 2026-04-01T13:41:47.781743Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [cn3] 2026-04-01T13:41:47.781764Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/db" +[CIPHER] [cn3] from_sled_store_with_buffer... +[CIPHER] [cn4] 2026-04-01T13:41:47.781812Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [cn2] 2026-04-01T13:41:47.781834Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [ag] 2026-04-01T13:41:47.781880Z  INFO execute: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.0") +[CIPHER] [cn5] 2026-04-01T13:41:47.781968Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [ag] 2026-04-01T13:41:47.782000Z  INFO execute: commitlog::file_set: Starting new index and segment at offset 0 +[CIPHER] [ag] 2026-04-01T13:41:47.782005Z  INFO execute: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.0/00000000000000000000.index" +[CIPHER] [cn5] 2026-04-01T13:41:47.782015Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/db" +[CIPHER] [cn3] 2026-04-01T13:41:47.782076Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [cn5] 2026-04-01T13:41:47.782217Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [cn5] from_sled_store_with_buffer... +[CIPHER] [cn2] 2026-04-01T13:41:47.782428Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [cn4] 2026-04-01T13:41:47.782593Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [cn3] 2026-04-01T13:41:47.782730Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [cn5] 2026-04-01T13:41:47.782766Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [cn3] 2026-04-01T13:41:47.787882Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [cn3] 2026-04-01T13:41:47.787892Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [cn4] 2026-04-01T13:41:47.787883Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [cn4] 2026-04-01T13:41:47.787892Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [cn5] 2026-04-01T13:41:47.787882Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [cn5] 2026-04-01T13:41:47.787892Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [cn2] 2026-04-01T13:41:47.787883Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [cn2] 2026-04-01T13:41:47.787893Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [cn5] 2026-04-01T13:41:47.788099Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [cn4] 2026-04-01T13:41:47.788124Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [cn3] 2026-04-01T13:41:47.788140Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [cn2] 2026-04-01T13:41:47.788149Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [cn1] 2026-04-01T13:41:47.788267Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [cn1] 2026-04-01T13:41:47.788286Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/db" +[CIPHER] [cn1] from_sled_store_with_buffer... +[CIPHER] [cn4] 2026-04-01T13:41:47.788366Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [cn5] 2026-04-01T13:41:47.788367Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [cn3] 2026-04-01T13:41:47.788451Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [cn2] 2026-04-01T13:41:47.788451Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [cn1] 2026-04-01T13:41:47.788813Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [cn1] 2026-04-01T13:41:47.788922Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [cn1] 2026-04-01T13:41:47.793099Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [cn1] 2026-04-01T13:41:47.793120Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [cn1] 2026-04-01T13:41:47.793176Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [cn1] 2026-04-01T13:41:47.793354Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [ag] 2026-04-01T13:41:47.798809Z  INFO execute: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... +[CIPHER] [ag] 2026-04-01T13:41:47.798845Z  INFO execute: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/db" +[CIPHER] [ag] from_sled_store_with_buffer... +[CIPHER] [ag] 2026-04-01T13:41:47.799308Z  INFO execute: e3_sortition::ciphernode_selector: CiphernodeSelector listening! +[CIPHER] [ag] 2026-04-01T13:41:47.799507Z  INFO execute:sortition_attach: e3_sortition::sortition: Sortition actor started +[CIPHER] [ag] 2026-04-01T13:41:47.804017Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees +[CIPHER] [ag] 2026-04-01T13:41:47.804030Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Attaching CommitteeFinalizer for score sortition +[CIPHER] [ag] 2026-04-01T13:41:47.804133Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission +[CIPHER] [ag] 2026-04-01T13:41:47.804185Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up FheExtension +[CIPHER] [ag] 2026-04-01T13:41:47.804231Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up PublicKeyAggregationExtension +[CIPHER] [ag] 2026-04-01T13:41:47.804234Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... +[CIPHER] [ag] 2026-04-01T13:41:47.804418Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover +[CIPHER] [ag] 2026-04-01T13:41:47.804474Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors for aggregator +[CIPHER] [ag] 2026-04-01T13:41:47.804656Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdPlaintextAggregatorExtension +[CIPHER] [ag] 2026-04-01T13:41:47.804662Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [ag] 2026-04-01T13:41:47.804666Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [ag] 2026-04-01T13:41:47.804664Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [ag] 2026-04-01T13:41:47.805074Z  INFO execute: e3_net: Found keypair in repository +[CIPHER] [ag] 2026-04-01T13:41:47.808838Z  INFO execute: libp2p_swarm: local_peer_id=12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By +[CIPHER] [ag] 2026-04-01T13:41:47.809026Z  INFO execute: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [ag] 2026-04-01T13:41:47.809961Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [ag] 2026-04-01T13:41:47.809970Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [ag] 2026-04-01T13:41:47.809986Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [ag] 2026-04-01T13:41:47.809987Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [ag] 2026-04-01T13:41:47.809989Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [ag] 2026-04-01T13:41:47.809990Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [ag] 2026-04-01T13:41:47.810637Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [ag] 2026-04-01T13:41:47.810676Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [ag] 2026-04-01T13:41:47.810679Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [ag] 2026-04-01T13:41:47.810680Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [ag] 2026-04-01T13:41:47.810681Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [ag] 2026-04-01T13:41:47.810693Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [ag] 2026-04-01T13:41:47.810746Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [ag] 2026-04-01T13:41:47.810752Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [ag] 2026-04-01T13:41:47.810754Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [ag] 2026-04-01T13:41:47.810759Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [ag] 2026-04-01T13:41:47.811504Z  INFO execute: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [ag] 2026-04-01T13:41:47.811509Z  INFO execute: e3_sync::sync: Loading EventStore events... +[CIPHER] [ag] 2026-04-01T13:41:47.811555Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending +[CIPHER] [ag] 2026-04-01T13:41:47.811569Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending +[CIPHER] [ag] 2026-04-01T13:41:47.811569Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [ag] 2026-04-01T13:41:47.811602Z  INFO execute: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [ag] 2026-04-01T13:41:47.811605Z  INFO execute: e3_sync::sync: Replaying events to actors... +[CIPHER] [ag] 2026-04-01T13:41:47.811606Z  INFO execute: e3_sync::sync: Events replayed. +[CIPHER] [ag] 2026-04-01T13:41:47.811607Z  INFO execute: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [ag] 2026-04-01T13:41:47.814512Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x3ba7d58e39464e2d139fad532821aa70891cc1604263269a6e5773e472af1449), causation_id: EventId(0x3ba7d58e39464e2d139fad532821aa70891cc1604263269a6e5773e472af1449), origin_id: EventId(0x3ba7d58e39464e2d139fad532821aa70891cc1604263269a6e5773e472af1449), seq: 1, ts: 32743909814206613301695672538771805, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:41:47.815899Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [ag] 2026-04-01T13:41:47.815930Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [ag] 2026-04-01T13:41:47.815994Z  INFO execute: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [ag] 2026-04-01T13:41:47.816003Z  INFO execute: e3_sync::sync: Waiting until NetReady... +[CIPHER] [ag] 2026-04-01T13:41:47.816000Z  INFO execute: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [ag] 2026-04-01T13:41:47.819530Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn3] 2026-04-01T13:41:47.821177Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +[CIPHER] [cn3] 2026-04-01T13:41:47.821210Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +[CIPHER] [cn3] 2026-04-01T13:41:47.821268Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [cn3] 2026-04-01T13:41:47.821273Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [cn3] 2026-04-01T13:41:47.821277Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [cn3] 2026-04-01T13:41:47.821366Z  INFO execute:app: e3_net: Found keypair in repository +[CIPHER] [cn2] 2026-04-01T13:41:47.821886Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +[CIPHER] [cn2] 2026-04-01T13:41:47.821896Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +[CIPHER] [cn2] 2026-04-01T13:41:47.821931Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [cn2] 2026-04-01T13:41:47.821934Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [cn2] 2026-04-01T13:41:47.821935Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [cn2] 2026-04-01T13:41:47.821988Z  INFO execute:app: e3_net: Found keypair in repository +[CIPHER] [cn5] 2026-04-01T13:41:47.822404Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +[CIPHER] [cn5] 2026-04-01T13:41:47.822424Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +[CIPHER] [cn3] 2026-04-01T13:41:47.822416Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd +[CIPHER] [cn3] 2026-04-01T13:41:47.822488Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [cn5] 2026-04-01T13:41:47.822494Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [cn5] 2026-04-01T13:41:47.822499Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [cn5] 2026-04-01T13:41:47.822502Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [cn5] 2026-04-01T13:41:47.822643Z  INFO execute:app: e3_net: Found keypair in repository +[CIPHER] [cn4] 2026-04-01T13:41:47.822687Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +[CIPHER] [cn4] 2026-04-01T13:41:47.822718Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +[CIPHER] [cn3] 2026-04-01T13:41:47.822715Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [cn3] 2026-04-01T13:41:47.822717Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn3] 2026-04-01T13:41:47.822719Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn3] 2026-04-01T13:41:47.822720Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn3] 2026-04-01T13:41:47.822721Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn3] 2026-04-01T13:41:47.822721Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.822661Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr +[CIPHER] [cn2] 2026-04-01T13:41:47.822764Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [cn4] 2026-04-01T13:41:47.822751Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [cn4] 2026-04-01T13:41:47.822753Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [cn4] 2026-04-01T13:41:47.822755Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [cn4] 2026-04-01T13:41:47.822798Z  INFO execute:app: e3_net: Found keypair in repository +[CIPHER] [cn3] 2026-04-01T13:41:47.822804Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn3] 2026-04-01T13:41:47.822814Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn3] 2026-04-01T13:41:47.822816Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn3] 2026-04-01T13:41:47.822817Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn3] 2026-04-01T13:41:47.822818Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn3] 2026-04-01T13:41:47.822824Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-04-01T13:41:47.822839Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-04-01T13:41:47.822842Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-04-01T13:41:47.822846Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-04-01T13:41:47.822849Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn2] 2026-04-01T13:41:47.823139Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [cn2] 2026-04-01T13:41:47.823148Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.823152Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.823154Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.823155Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.823157Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.823288Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.823305Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.823309Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.823312Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.823314Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.823330Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn2] 2026-04-01T13:41:47.823367Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-04-01T13:41:47.823328Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH +[CIPHER] [cn4] 2026-04-01T13:41:47.823381Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [cn3] 2026-04-01T13:41:47.823354Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [cn3] 2026-04-01T13:41:47.823358Z  INFO execute:app: e3_sync::sync: Loading EventStore events... +[CIPHER] [cn3] 2026-04-01T13:41:47.823381Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending +[CIPHER] [cn3] 2026-04-01T13:41:47.823385Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending +[CIPHER] [cn3] 2026-04-01T13:41:47.823386Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [cn3] 2026-04-01T13:41:47.823397Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [cn3] 2026-04-01T13:41:47.823399Z  INFO execute:app: e3_sync::sync: Replaying events to actors... +[CIPHER] [cn3] 2026-04-01T13:41:47.823400Z  INFO execute:app: e3_sync::sync: Events replayed. +[CIPHER] [cn3] 2026-04-01T13:41:47.823401Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [cn2] 2026-04-01T13:41:47.823373Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn2] 2026-04-01T13:41:47.823380Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn2] 2026-04-01T13:41:47.823386Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-04-01T13:41:47.823596Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [cn4] 2026-04-01T13:41:47.823599Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn4] 2026-04-01T13:41:47.823601Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn4] 2026-04-01T13:41:47.823602Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn4] 2026-04-01T13:41:47.823603Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn4] 2026-04-01T13:41:47.823604Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn4] 2026-04-01T13:41:47.823689Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn4] 2026-04-01T13:41:47.823698Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn4] 2026-04-01T13:41:47.823701Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn4] 2026-04-01T13:41:47.823702Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn4] 2026-04-01T13:41:47.823703Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn4] 2026-04-01T13:41:47.823708Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-04-01T13:41:47.823721Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-04-01T13:41:47.823725Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-04-01T13:41:47.823728Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-04-01T13:41:47.823732Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn5] 2026-04-01T13:41:47.823740Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 +[CIPHER] [cn5] 2026-04-01T13:41:47.823815Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [cn5] 2026-04-01T13:41:47.824016Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [cn5] 2026-04-01T13:41:47.824018Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn5] 2026-04-01T13:41:47.824020Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn5] 2026-04-01T13:41:47.824021Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn5] 2026-04-01T13:41:47.824022Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn5] 2026-04-01T13:41:47.824023Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn5] 2026-04-01T13:41:47.824077Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 +[CIPHER] [cn5] 2026-04-01T13:41:47.824086Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn5] 2026-04-01T13:41:47.824088Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn5] 2026-04-01T13:41:47.824090Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn5] 2026-04-01T13:41:47.824091Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn5] 2026-04-01T13:41:47.824098Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn5] 2026-04-01T13:41:47.824112Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn5] 2026-04-01T13:41:47.824115Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn5] 2026-04-01T13:41:47.824118Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn5] 2026-04-01T13:41:47.824126Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn4] 2026-04-01T13:41:47.824235Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [cn4] 2026-04-01T13:41:47.824238Z  INFO execute:app: e3_sync::sync: Loading EventStore events... +[CIPHER] [cn4] 2026-04-01T13:41:47.824251Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending +[CIPHER] [cn4] 2026-04-01T13:41:47.824257Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending +[CIPHER] [cn4] 2026-04-01T13:41:47.824258Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [cn4] 2026-04-01T13:41:47.824265Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [cn4] 2026-04-01T13:41:47.824267Z  INFO execute:app: e3_sync::sync: Replaying events to actors... +[CIPHER] [cn4] 2026-04-01T13:41:47.824268Z  INFO execute:app: e3_sync::sync: Events replayed. +[CIPHER] [cn4] 2026-04-01T13:41:47.824269Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [cn2] 2026-04-01T13:41:47.825094Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 1) +[CIPHER] [cn5] 2026-04-01T13:41:47.825150Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 1) +[CIPHER] [cn5] 2026-04-01T13:41:47.825246Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn5] 2026-04-01T13:41:47.825263Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [cn5] 2026-04-01T13:41:47.825266Z  INFO execute:app: e3_sync::sync: Loading EventStore events... +[CIPHER] [cn5] 2026-04-01T13:41:47.825319Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending +[CIPHER] [cn5] 2026-04-01T13:41:47.825326Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending +[CIPHER] [cn5] 2026-04-01T13:41:47.825328Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [cn5] 2026-04-01T13:41:47.825343Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [cn5] 2026-04-01T13:41:47.825347Z  INFO execute:app: e3_sync::sync: Replaying events to actors... +[CIPHER] [cn5] 2026-04-01T13:41:47.825349Z  INFO execute:app: e3_sync::sync: Events replayed. +[CIPHER] [cn5] 2026-04-01T13:41:47.825351Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [cn4] 2026-04-01T13:41:47.825265Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x69b468b97cebf991f73a56716fb577e24476444af4fa6ac880a8954b87db73e3), causation_id: EventId(0x69b468b97cebf991f73a56716fb577e24476444af4fa6ac880a8954b87db73e3), origin_id: EventId(0x69b468b97cebf991f73a56716fb577e24476444af4fa6ac880a8954b87db73e3), seq: 1, ts: 32743909814440149081668839179689729, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:41:47.825277Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x370eed624099920f520bcd739d935bbc3dbbc451f6ea334edcbb2f88b7a3348a), causation_id: EventId(0x370eed624099920f520bcd739d935bbc3dbbc451f6ea334edcbb2f88b7a3348a), origin_id: EventId(0x370eed624099920f520bcd739d935bbc3dbbc451f6ea334edcbb2f88b7a3348a), seq: 1, ts: 32743909814424137307812858345785185, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-04-01T13:41:47.825471Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xd77f27edc2ea57e16f8266f1f11e494cb349fa84442fc47a9427174799398769), causation_id: EventId(0xd77f27edc2ea57e16f8266f1f11e494cb349fa84442fc47a9427174799398769), origin_id: EventId(0xd77f27edc2ea57e16f8266f1f11e494cb349fa84442fc47a9427174799398769), seq: 1, ts: 32743909814460145352244740362534981, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:41:47.825617Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension +[CIPHER] [cn1] 2026-04-01T13:41:47.825631Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors +[CIPHER] [cn1] 2026-04-01T13:41:47.825692Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension +[CIPHER] [cn1] 2026-04-01T13:41:47.825696Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension +[CIPHER] [cn1] 2026-04-01T13:41:47.825699Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... +[CIPHER] [cn5] 2026-04-01T13:41:47.825785Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [cn5] 2026-04-01T13:41:47.825806Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [cn1] 2026-04-01T13:41:47.825800Z  INFO execute:app: e3_net: Found keypair in repository +[CIPHER] [cn5] 2026-04-01T13:41:47.825857Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [cn5] 2026-04-01T13:41:47.825864Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [cn5] 2026-04-01T13:41:47.825868Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... +[CIPHER] [cn5] 2026-04-01T13:41:47.826199Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn1] 2026-04-01T13:41:47.826410Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 +[CIPHER] [cn1] 2026-04-01T13:41:47.826463Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... +[CIPHER] [cn1] 2026-04-01T13:41:47.826649Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: +[CIPHER] [cn1] 2026-04-01T13:41:47.826652Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn1] 2026-04-01T13:41:47.826655Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn1] 2026-04-01T13:41:47.826655Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn1] 2026-04-01T13:41:47.826656Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn2] 2026-04-01T13:41:47.826658Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [cn2] 2026-04-01T13:41:47.826663Z  INFO execute:app: e3_sync::sync: Loading EventStore events... +[CIPHER] [cn2] 2026-04-01T13:41:47.826698Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 2) +[CIPHER] [cn2] 2026-04-01T13:41:47.826725Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 3) +[CIPHER] [cn1] 2026-04-01T13:41:47.826723Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 +[CIPHER] [cn1] 2026-04-01T13:41:47.826732Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn1] 2026-04-01T13:41:47.826734Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 +[CIPHER] [cn1] 2026-04-01T13:41:47.826735Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 +[CIPHER] [cn1] 2026-04-01T13:41:47.826736Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 +[CIPHER] [cn1] 2026-04-01T13:41:47.826742Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn1] 2026-04-01T13:41:47.826654Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 +[CIPHER] [cn3] 2026-04-01T13:41:47.826738Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 1) +[CIPHER] [cn1] 2026-04-01T13:41:47.826757Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn1] 2026-04-01T13:41:47.826760Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn1] 2026-04-01T13:41:47.826762Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn1] 2026-04-01T13:41:47.826764Z  INFO e3_utils::helpers: take has been called! +[CIPHER] [cn3] 2026-04-01T13:41:47.826767Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2) +[CIPHER] [cn2] 2026-04-01T13:41:47.826862Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn2] 2026-04-01T13:41:47.826885Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending +[CIPHER] [cn2] 2026-04-01T13:41:47.826889Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending +[CIPHER] [cn2] 2026-04-01T13:41:47.826890Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [ag] 2026-04-01T13:41:47.826943Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 1) +[CIPHER] [ag] 2026-04-01T13:41:47.826973Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2) +[CIPHER] [ag] 2026-04-01T13:41:47.826995Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 3) +[CIPHER] [ag] 2026-04-01T13:41:47.827015Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 4) +[CIPHER] [cn1] 2026-04-01T13:41:47.827126Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. +[CIPHER] [cn1] 2026-04-01T13:41:47.827144Z  INFO execute:app: e3_sync::sync: Loading EventStore events... +[CIPHER] [cn1] 2026-04-01T13:41:47.827163Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending +[CIPHER] [cn1] 2026-04-01T13:41:47.827164Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response +[CIPHER] [cn1] 2026-04-01T13:41:47.827161Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 1 pending +[CIPHER] [ag] 2026-04-01T13:41:47.827174Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn1] 2026-04-01T13:41:47.827184Z  INFO execute:app: e3_sync::sync: Events replayed. +[CIPHER] [cn1] 2026-04-01T13:41:47.827237Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [cn1] 2026-04-01T13:41:47.827180Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [cn1] 2026-04-01T13:41:47.827182Z  INFO execute:app: e3_sync::sync: Replaying events to actors... +[CIPHER] [cn5] 2026-04-01T13:41:47.827313Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2) +[CIPHER] [cn3] 2026-04-01T13:41:47.827370Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn3] 2026-04-01T13:41:47.827380Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [cn3] 2026-04-01T13:41:47.827392Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [cn1] 2026-04-01T13:41:47.827331Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xea938080cbe155e39ec2a8e279af6f70c50d04b97a70442758066f283d5c283c), causation_id: EventId(0xea938080cbe155e39ec2a8e279af6f70c50d04b97a70442758066f283d5c283c), origin_id: EventId(0xea938080cbe155e39ec2a8e279af6f70c50d04b97a70442758066f283d5c283c), seq: 1, ts: 32743909814495286399705154669672764, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:41:47.827594Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [cn3] 2026-04-01T13:41:47.827610Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [cn3] 2026-04-01T13:41:47.827615Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... +[CIPHER] [cn1] 2026-04-01T13:41:47.827959Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 1) +[CIPHER] [cn1] 2026-04-01T13:41:47.828362Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn1] 2026-04-01T13:41:47.828368Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [cn1] 2026-04-01T13:41:47.828389Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 2) +[CIPHER] [cn1] 2026-04-01T13:41:47.828406Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [cn4] 2026-04-01T13:41:47.828417Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 1) +[CIPHER] [cn1] 2026-04-01T13:41:47.828446Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [cn1] 2026-04-01T13:41:47.828451Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [cn4] 2026-04-01T13:41:47.828445Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 2) +[CIPHER] [cn4] 2026-04-01T13:41:47.828470Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 3) +[CIPHER] [cn1] 2026-04-01T13:41:47.828453Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... +[CIPHER] [cn4] 2026-04-01T13:41:47.828502Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 4) +[CIPHER] [cn3] 2026-04-01T13:41:47.828730Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 3) +[CIPHER] [cn2] 2026-04-01T13:41:47.828780Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. +[CIPHER] [cn2] 2026-04-01T13:41:47.828784Z  INFO execute:app: e3_sync::sync: Replaying events to actors... +[CIPHER] [cn2] 2026-04-01T13:41:47.828785Z  INFO execute:app: e3_sync::sync: Events replayed. +[CIPHER] [cn2] 2026-04-01T13:41:47.828786Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... +[CIPHER] [cn1] 2026-04-01T13:41:47.828783Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn2] 2026-04-01T13:41:47.828859Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 4) +[CIPHER] [cn4] 2026-04-01T13:41:47.828975Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected +[CIPHER] [cn4] 2026-04-01T13:41:47.828986Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [cn4] 2026-04-01T13:41:47.828994Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [cn4] 2026-04-01T13:41:47.829017Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [cn4] 2026-04-01T13:41:47.829022Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [cn4] 2026-04-01T13:41:47.829024Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... +[CIPHER] [cn2] 2026-04-01T13:41:47.829063Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x817090236dc711836b8e6a9400061a66b9e0b0f233c8b70be930bb210be2bb82), causation_id: EventId(0x817090236dc711836b8e6a9400061a66b9e0b0f233c8b70be930bb210be2bb82), origin_id: EventId(0x817090236dc711836b8e6a9400061a66b9e0b0f233c8b70be930bb210be2bb82), seq: 1, ts: 32743909814523491471393858182469861, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-04-01T13:41:47.829544Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn1] 2026-04-01T13:41:47.829570Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 3) +[CIPHER] [cn5] 2026-04-01T13:41:47.829665Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 3) +[CIPHER] [cn5] 2026-04-01T13:41:47.829714Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 4) +[CIPHER] [cn2] 2026-04-01T13:41:47.829858Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 +[CIPHER] [cn2] 2026-04-01T13:41:47.829866Z  INFO e3_evm::evm_router: Sending event(4) to fallback +[CIPHER] [cn2] 2026-04-01T13:41:47.829887Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 +[CIPHER] [cn2] 2026-04-01T13:41:47.829892Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. +[CIPHER] [cn2] 2026-04-01T13:41:47.829893Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... +[CIPHER] [cn1] 2026-04-01T13:41:47.830019Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 4) +[CIPHER] [ag] 2026-04-01T13:41:47.830021Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 5) +[CIPHER] [cn3] 2026-04-01T13:41:47.830197Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 4) +[CIPHER] [cn3] 2026-04-01T13:41:47.830226Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 5) +[CIPHER] [cn2] 2026-04-01T13:41:47.830231Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 5) +[CIPHER] [cn3] 2026-04-01T13:41:47.830411Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn1] 2026-04-01T13:41:47.830423Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 5) +[CIPHER] [cn5] 2026-04-01T13:41:47.831195Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 5) +[CIPHER] [cn1] 2026-04-01T13:41:47.831276Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [cn1] 2026-04-01T13:41:47.831285Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [cn1] 2026-04-01T13:41:47.831445Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909814569552991345909324478780, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-04-01T13:41:47.831608Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 5) +[CIPHER] [cn1] 2026-04-01T13:41:47.831769Z  INFO execute:app: e3_sync::sync: NetReady! +[CIPHER] [cn1] 2026-04-01T13:41:47.831773Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [cn1] 2026-04-01T13:41:47.831855Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909814578591895942027004770620, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:41:47.831870Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [cn1] 2026-04-01T13:41:47.831888Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [cn1] 2026-04-01T13:41:47.831889Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [cn1] 2026-04-01T13:41:47.831890Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [cn1] 2026-04-01T13:41:47.831891Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [cn1] 2026-04-01T13:41:47.831906Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [cn1] 2026-04-01T13:41:47.831952Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909814580989972671609246480700, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:41:47.832149Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [cn1] 2026-04-01T13:41:47.832153Z  INFO execute:app: e3_sync::sync: Historical events sorted. +[CIPHER] [cn1] 2026-04-01T13:41:47.832157Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [cn1] 2026-04-01T13:41:47.832158Z  INFO execute:app: e3_sync::sync: Historical events published. +[CIPHER] [cn1] 2026-04-01T13:41:47.832159Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [cn1] 2026-04-01T13:41:47.832161Z  INFO execute:app: e3_sync::sync: Sync finished. +[CIPHER] [cn1] 2026-04-01T13:41:47.832174Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn1/0x70997970C51812dc3A010C7d01b50e0d17dc79C8/12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3) +[CIPHER] [cn1] 2026-04-01T13:41:47.832155Z  INFO execute:app: e3_sync::sync: Effects enabled +[CIPHER] [cn1] 2026-04-01T13:41:47.832234Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909814585546318457815505729852, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:41:47.832250Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909814585675445666331472591164, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:41:47.832263Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 +[CIPHER] [cn1] 2026-04-01T13:41:47.832281Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [cn1] 2026-04-01T13:41:47.832312Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] [ag] 2026-04-01T13:41:48.816008Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [ag] 2026-04-01T13:41:48.816022Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [ag] 2026-04-01T13:41:48.818580Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909832734762857002504406053213, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:41:48.818947Z  INFO execute: e3_sync::sync: NetReady! +[CIPHER] [ag] 2026-04-01T13:41:48.818954Z  INFO execute: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [ag] 2026-04-01T13:41:48.819051Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909832789033178067357906907485, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:41:48.819083Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [ag] 2026-04-01T13:41:48.819100Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [ag] 2026-04-01T13:41:48.819103Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [ag] 2026-04-01T13:41:48.819105Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [ag] 2026-04-01T13:41:48.819108Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [ag] 2026-04-01T13:41:48.819118Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [ag] 2026-04-01T13:41:48.819149Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909832791873976654709177856349, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:41:48.819209Z  INFO execute: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [ag] 2026-04-01T13:41:48.819222Z  INFO execute: e3_sync::sync: Historical events published. +[CIPHER] [ag] 2026-04-01T13:41:48.819227Z  INFO execute: e3_sync::sync: Sync finished. +[CIPHER] [ag] 2026-04-01T13:41:48.819220Z  INFO execute: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [ag] 2026-04-01T13:41:48.819218Z  INFO execute: e3_sync::sync: Effects enabled +[CIPHER] [ag] 2026-04-01T13:41:48.819224Z  INFO execute: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [ag] 2026-04-01T13:41:48.819214Z  INFO execute: e3_sync::sync: Historical events sorted. +[CIPHER] [ag] 2026-04-01T13:41:48.819251Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (ag/0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266/12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By) +[CIPHER] [ag] 2026-04-01T13:41:48.819297Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909832793626417341711585259869, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:41:48.819319Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909832793829331526522390327645, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:41:48.819401Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [ag] 2026-04-01T13:41:48.819427Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] [cn4] 2026-04-01T13:41:48.825186Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [cn4] 2026-04-01T13:41:48.825193Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [cn4] 2026-04-01T13:41:48.825244Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909832903919500158424711831297, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-04-01T13:41:48.825283Z  INFO execute:app: e3_sync::sync: NetReady! +[CIPHER] [cn4] 2026-04-01T13:41:48.825287Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [cn4] 2026-04-01T13:41:48.825314Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909832905690387589500828786433, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-04-01T13:41:48.825335Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [cn4] 2026-04-01T13:41:48.825345Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [cn4] 2026-04-01T13:41:48.825346Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [cn4] 2026-04-01T13:41:48.825348Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [cn4] 2026-04-01T13:41:48.825352Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [cn4] 2026-04-01T13:41:48.825358Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [cn4] 2026-04-01T13:41:48.825388Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909832907092340139102754709249, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn4] 2026-04-01T13:41:48.825416Z  INFO execute:app: e3_sync::sync: Historical events sorted. +[CIPHER] [cn4] 2026-04-01T13:41:48.825422Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [cn4] 2026-04-01T13:41:48.825424Z  INFO execute:app: e3_sync::sync: Historical events published. +[CIPHER] [cn4] 2026-04-01T13:41:48.825427Z  INFO execute:app: e3_sync::sync: Sync finished. +[CIPHER] [cn4] 2026-04-01T13:41:48.825443Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn4/0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65/12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH) +[CIPHER] [cn4] 2026-04-01T13:41:48.825419Z  INFO execute:app: e3_sync::sync: Effects enabled +[CIPHER] [cn4] 2026-04-01T13:41:48.825413Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [cn4] 2026-04-01T13:41:48.825426Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [cn4] 2026-04-01T13:41:48.825475Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909832908033124086861941841665, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-04-01T13:41:48.825494Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909832908199144783525327806209, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-04-01T13:41:48.825532Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [cn4] 2026-04-01T13:41:48.825547Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] [cn5] 2026-04-01T13:41:48.825737Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [cn5] 2026-04-01T13:41:48.825742Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [cn5] 2026-04-01T13:41:48.825797Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909832914046762654891284561989, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-04-01T13:41:48.825857Z  INFO execute:app: e3_sync::sync: NetReady! +[CIPHER] [cn5] 2026-04-01T13:41:48.825862Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [cn5] 2026-04-01T13:41:48.825886Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909832916278818687810140307525, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-04-01T13:41:48.825914Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [cn5] 2026-04-01T13:41:48.825915Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [cn5] 2026-04-01T13:41:48.825917Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [cn5] 2026-04-01T13:41:48.825918Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [cn5] 2026-04-01T13:41:48.825906Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [cn5] 2026-04-01T13:41:48.825922Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [cn5] 2026-04-01T13:41:48.825943Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909832917348729844085294301253, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn5] 2026-04-01T13:41:48.826030Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [cn5] 2026-04-01T13:41:48.826034Z  INFO execute:app: e3_sync::sync: Historical events sorted. +[CIPHER] [cn5] 2026-04-01T13:41:48.826036Z  INFO execute:app: e3_sync::sync: Effects enabled +[CIPHER] [cn5] 2026-04-01T13:41:48.826038Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [cn5] 2026-04-01T13:41:48.826040Z  INFO execute:app: e3_sync::sync: Historical events published. +[CIPHER] [cn5] 2026-04-01T13:41:48.826041Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [cn5] 2026-04-01T13:41:48.826056Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn5/0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc/12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1) +[CIPHER] [cn5] 2026-04-01T13:41:48.826043Z  INFO execute:app: e3_sync::sync: Sync finished. +[CIPHER] [cn5] 2026-04-01T13:41:48.826090Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909832919414765180340764082245, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-04-01T13:41:48.826108Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909832919562339132930440495173, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn5] 2026-04-01T13:41:48.826138Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [cn5] 2026-04-01T13:41:48.826147Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] [cn3] 2026-04-01T13:41:48.826177Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [cn3] 2026-04-01T13:41:48.826172Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [cn3] 2026-04-01T13:41:48.826215Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909832922052649582880257967969, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:41:48.826414Z  INFO execute:app: e3_sync::sync: NetReady! +[CIPHER] [cn3] 2026-04-01T13:41:48.826418Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [cn3] 2026-04-01T13:41:48.826464Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909832926535208392791679010657, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:41:48.826492Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [cn3] 2026-04-01T13:41:48.826493Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [cn3] 2026-04-01T13:41:48.826482Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [cn3] 2026-04-01T13:41:48.826518Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909832927992501174614733588321, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:41:48.826498Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [cn3] 2026-04-01T13:41:48.826494Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [cn3] 2026-04-01T13:41:48.826490Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [cn3] 2026-04-01T13:41:48.826621Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [cn3] 2026-04-01T13:41:48.826625Z  INFO execute:app: e3_sync::sync: Historical events sorted. +[CIPHER] [cn3] 2026-04-01T13:41:48.826628Z  INFO execute:app: e3_sync::sync: Effects enabled +[CIPHER] [cn3] 2026-04-01T13:41:48.826630Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [cn3] 2026-04-01T13:41:48.826632Z  INFO execute:app: e3_sync::sync: Historical events published. +[CIPHER] [cn3] 2026-04-01T13:41:48.826647Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn3/0x90F79bf6EB2c4f870365E785982E1f101E93b906/12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd) +[CIPHER] [cn3] 2026-04-01T13:41:48.826635Z  INFO execute:app: e3_sync::sync: Sync finished. +[CIPHER] [cn3] 2026-04-01T13:41:48.826691Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909832930335237671975846643553, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:41:48.826633Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [cn3] 2026-04-01T13:41:48.826709Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909832930482811624565523056481, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:41:48.826749Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [cn3] 2026-04-01T13:41:48.826762Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] [cn2] 2026-04-01T13:41:48.827186Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) +[CIPHER] [cn2] 2026-04-01T13:41:48.827192Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady +[CIPHER] [cn2] 2026-04-01T13:41:48.827227Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909832940794541561769354090725, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:41:48.827264Z  INFO execute:app: e3_sync::sync: NetReady! +[CIPHER] [cn2] 2026-04-01T13:41:48.827269Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... +[CIPHER] [cn2] 2026-04-01T13:41:48.827296Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909832942251834343592408668389, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:41:48.827317Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START +[CIPHER] [cn2] 2026-04-01T13:41:48.827330Z  INFO e3_net::net_sync_manager: Sync request event received +[CIPHER] [cn2] 2026-04-01T13:41:48.827332Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... +[CIPHER] [cn2] 2026-04-01T13:41:48.827333Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync +[CIPHER] [cn2] 2026-04-01T13:41:48.827335Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 +[CIPHER] [cn2] 2026-04-01T13:41:48.827339Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED +[CIPHER] [cn2] 2026-04-01T13:41:48.827358Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909832943487766196530948626661, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:41:48.827384Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. +[CIPHER] [cn2] 2026-04-01T13:41:48.827387Z  INFO execute:app: e3_sync::sync: Historical events sorted. +[CIPHER] [cn2] 2026-04-01T13:41:48.827389Z  INFO execute:app: e3_sync::sync: Effects enabled +[CIPHER] [cn2] 2026-04-01T13:41:48.827391Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... +[CIPHER] [cn2] 2026-04-01T13:41:48.827393Z  INFO execute:app: e3_sync::sync: Historical events published. +[CIPHER] [cn2] 2026-04-01T13:41:48.827395Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... +[CIPHER] [cn2] 2026-04-01T13:41:48.827397Z  INFO execute:app: e3_sync::sync: Sync finished. +[CIPHER] [cn2] 2026-04-01T13:41:48.827408Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn2/0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC/12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr) +[CIPHER] [cn2] 2026-04-01T13:41:48.827435Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909832944373209912069007104229, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:41:48.827453Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909832944539230608732393068773, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:41:48.827483Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. +[CIPHER] [cn2] 2026-04-01T13:41:48.827490Z  INFO e3_net::net_event_translator: NetEventTranslator is running +[CIPHER] +[CIPHER] > enclave-example@0.0.0 deploy /Users/ctrlc03/Documents/zk/enclave/templates/default +[CIPHER] > pnpm clean:deployments && hardhat run scripts/deploy-local.ts --network localhost +[CIPHER] +[CIPHER] +[CIPHER] > enclave-example@0.0.0 clean:deployments /Users/ctrlc03/Documents/zk/enclave/templates/default +[CIPHER] > hardhat utils:clean-deployments +[CIPHER] +[CIPHER] Nothing to compile +[CIPHER] Nothing to compile +[CIPHER] +[CIPHER] 🚀 Deploying Enclave protocol locally... +[CIPHER] Deploying with account: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Account balance: 10000.0 +[CIPHER] Detected local network 'localhost', auto-cleaning stale deployment state... +[CIPHER] PoseidonT3 deployed to: 0x3333333C0A88F9BE4fd23ed0536F9B6c427e3B93 +[CIPHER] Deploying mock Fee token... +[CIPHER] MockFeeToken deployed to: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 +[CIPHER] Deploying ENCL token... +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Transfer restrictions disabled for local development +[CIPHER] EnclaveToken deployed to: 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Deploying EnclaveTicketToken... +[CIPHER] EnclaveTicketToken deployed to: 0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9 +[CIPHER] Deploying SlashingManager... +[CIPHER] SlashingManager deployed to: 0x5FC8d32690cc91D4c39d9d3abcBD16989F875707 +[CIPHER] Deploying CiphernodeRegistry... +[CIPHER] CiphernodeRegistry deployed to: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 +[CIPHER] Deploying BondingRegistry... +[CIPHER] [cn1] 2026-04-01T13:42:00.903097Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32743910055697680783854357456255292, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:00.903147Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32743910055698271079664716161907004, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:00.903098Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32743910055697570103389917558742785, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:00.903156Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32743910055698271079664718521704193, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:00.903243Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32743910055698326419896939650359041, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:00.903097Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32743910055697975931759538225776481, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:00.903181Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32743910055698289526408792231255809, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:00.903145Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32743910055698307973152864997705569, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:00.903187Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32743910055698344866641012416808801, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:00.903203Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32743910055698363313385086126360417, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:00.903164Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32743910055698326419896938707257185, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:00.903395Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 +[CIPHER] [cn4] 2026-04-01T13:42:00.903211Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32743910055698307973152865940807425, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:00.903210Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32743910055698326419896937290561852, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:00.903399Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 +[CIPHER] [cn1] 2026-04-01T13:42:00.903304Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 +[CIPHER] BondingRegistry deployed to: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 +[CIPHER] Deploying Enclave... +[CIPHER] Enclave deployed to: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e +[CIPHER] Deploying E3RefundManager... +[CIPHER] E3RefundManager deployed to: 0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82 +[CIPHER] Setting E3RefundManager in Enclave... +[CIPHER] Configuring cross-contract dependencies... +[CIPHER] Setting Enclave address in CiphernodeRegistry... +[CIPHER] Setting BondingRegistry address in CiphernodeRegistry... +[CIPHER] Setting Submission Window in CiphernodeRegistry... +[CIPHER] SORTITION_SUBMISSION_WINDOW: 10 +[CIPHER] Setting BondingRegistry address in EnclaveTicketToken... +[CIPHER] Setting CiphernodeRegistry address in BondingRegistry... +[CIPHER] Setting Enclave address in SlashingManager... +[CIPHER] Setting BondingRegistry address in SlashingManager... +[CIPHER] Setting CiphernodeRegistry address in SlashingManager... +[CIPHER] Setting E3RefundManager address in SlashingManager... +[CIPHER] Setting SlashingManager address in Enclave... +[CIPHER] Setting SlashingManager address in BondingRegistry... +[CIPHER] Setting SlashingManager address in CiphernodeRegistry... +[CIPHER] Setting Enclave as reward distributor in BondingRegistry... +[CIPHER] Setting committee thresholds... +[CIPHER] Committee thresholds set (Micro=[1,3], Small=[2,5]) +[CIPHER] Setting pricing config... +[CIPHER] Pricing config set (treasury: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 ) +[CIPHER] Deploying Compute Provider +[CIPHER] Deploying Mock Decryption Verifier +[CIPHER] Deploying Mock Pk Verifier +[CIPHER] Deploying E3 Program +[CIPHER] +[CIPHER] MockDeployments: +[CIPHER] ---------------------------------------------------------------------- +[CIPHER] MockComputeProvider:0xc3e53F4d16Ae77Db1c982e75a937B9f60FE63690 +[CIPHER] MockDecryptionVerifier:0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB +[CIPHER] MockPkVerifier:0x9E545E3C0baAB3E08CdfD552C960A1050f373042 +[CIPHER] MockE3Program:0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9 +[CIPHER] +[CIPHER] encryptionSchemeId 0x2c2a814a0495f913a3a312fc4771e37552bc14f8a2d4075a08122d356f0849c6 +[CIPHER] Successfully enabled E3 Program in Enclave contract +[CIPHER] Deploying circuit verifiers... +[CIPHER] Deploying to network: localhost +[CIPHER] Found 3 verifier contract(s) +[CIPHER] Deploying ZKTranscriptLib... +[CIPHER] ZKTranscriptLib deployed to: 0x851356ae760d987E095750cCeb3bC6014560891C +[CIPHER] RecursiveAggregationFoldVerifier deployed to: 0xf5059a5D33d5853360D16C683c16e67980206f36 +[CIPHER] ThresholdDecryptedSharesAggregationVerifier deployed to: 0x95401dc811bb5740090279Ba06cfA8fcF6113778 +[CIPHER] ThresholdPkAggregationVerifier deployed to: 0x998abeb3E57409262aE5b751f60747921B33613E +[CIPHER] Deploying BfvDecryptionVerifier and registering for prod... +[CIPHER] BfvDecryptionVerifier deployed to: 0x70e0bA845a1A0F2DA3359C97E0285013525FFC49 +[CIPHER] Successfully set BfvDecryptionVerifier in Enclave contract +[CIPHER] Deploying BfvPkVerifier and registering for prod... +[CIPHER] BfvPkVerifier deployed to: 0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf +[CIPHER] Successfully set BfvPkVerifier in Enclave contract +[CIPHER] +[CIPHER] ============================================ +[CIPHER] Deployment Complete! +[CIPHER] ============================================ +[CIPHER] MockFeeToken: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 +[CIPHER] EnclaveToken (ENCL): 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] EnclaveTicketToken: 0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9 +[CIPHER] SlashingManager: 0x5FC8d32690cc91D4c39d9d3abcBD16989F875707 +[CIPHER] BondingRegistry: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 +[CIPHER] CiphernodeRegistry: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 +[CIPHER] E3RefundManager: 0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82 +[CIPHER] Enclave: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e +[CIPHER] DecryptionVerifier (BFV): 0x70e0bA845a1A0F2DA3359C97E0285013525FFC49 +[CIPHER] PkVerifier (BFV): 0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf +[CIPHER] Circuit Verifiers: +[CIPHER] RecursiveAggregationFoldVerifier: 0xf5059a5D33d5853360D16C683c16e67980206f36 +[CIPHER] ThresholdDecryptedSharesAggregationVerifier: 0x95401dc811bb5740090279Ba06cfA8fcF6113778 +[CIPHER] ThresholdPkAggregationVerifier: 0x998abeb3E57409262aE5b751f60747921B33613E +[CIPHER] ============================================ +[CIPHER] +[CIPHER] E3 Program enabled for Enclave's template +[CIPHER] +[CIPHER] Deployed MyProgram at address: 0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00 +[CIPHER] Deployed MockRISC0Verifier at address: 0x8f86403A4DE0BB5791fa46B8e795C547942fE4Cf +[CIPHER] +[CIPHER] +[CIPHER] Updating contracts for chain: localhost +[CIPHER] ✓ Updated enclave: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e (block 15) +[CIPHER] ✓ Updated ciphernode_registry: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 (block 11) +[CIPHER] ✓ Updated bonding_registry: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 (block 12) +[CIPHER] ✓ Updated fee_token: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 (block 6) +[CIPHER] ✓ Updated e3_program: 0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00 (block 35) +[CIPHER] +[CIPHER] ✓ enclave.config.yaml updated successfully! +[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Registering ciphernode: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... +[CIPHER] 1000 ENCL transferred to ciphernode +[CIPHER] Step 2: Minting USDC to admin... +[CIPHER] 1000 USDC minted to admin +[CIPHER] Step 3: Impersonating ciphernode for license operations... +[CIPHER] License bonded: 1000 ENCL +[CIPHER] [cn4] 2026-04-01T13:42:29.904634Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590663017249046349032857345, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:29.904634Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590662224039051178770716901, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:29.904634Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590662150252074882324134204, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:42:29.904634Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590662260932539323223781725, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:29.905004Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [ag] 2026-04-01T13:42:29.904982Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [cn3] 2026-04-01T13:42:29.904906Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590664031819970402115094369, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:29.905075Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [cn1] 2026-04-01T13:42:29.905084Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [cn4] 2026-04-01T13:42:29.905145Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] [cn5] 2026-04-01T13:42:29.905185Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590673956168282058825859141, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:42:29.905305Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 +[CIPHER] Operator registered (automatically added to CiphernodeRegistry) +[CIPHER] Step 4: Adding ticket balance via admin... +[CIPHER] [cn3] 2026-04-01T13:42:33.902726Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664435531296530766265288545, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:33.902773Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664435605083507061103495009, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:33.902810Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn3] 2026-04-01T13:42:33.902820Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true +[CIPHER] [ag] 2026-04-01T13:42:33.902726Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664435475956298542362276189, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:42:33.902777Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664435605083507058329137501, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:42:33.902810Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-04-01T13:42:33.902820Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true +[CIPHER] [cn5] 2026-04-01T13:42:33.902726Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664435475956298546108629061, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:42:33.902773Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664435605083507062075490373, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:42:33.902810Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn5] 2026-04-01T13:42:33.902820Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true +[CIPHER] [cn4] 2026-04-01T13:42:33.902742Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664436121592341125914042113, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:33.902785Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664436158485829273333145345, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:33.902815Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn4] 2026-04-01T13:42:33.902822Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true +[CIPHER] [cn2] 2026-04-01T13:42:33.903118Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664442909994160250277615845, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:33.903191Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn1] 2026-04-01T13:42:33.903122Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664443647863923197051304252, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:33.903199Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true +[CIPHER] [cn2] 2026-04-01T13:42:33.903158Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664443002227880618825373925, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:33.903158Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664443703204155418179959100, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:33.903191Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn2] 2026-04-01T13:42:33.903199Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true +[CIPHER] Ticket balance added: 1000 USDC worth +[CIPHER] +[CIPHER] === Registration Complete === +[CIPHER] Ciphernode: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 +[CIPHER] Registered: true +[CIPHER] Active: true +[CIPHER] License Bond: 1000.0 ENCL +[CIPHER] Ticket Balance: 1000.0 USDC worth +[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Registering ciphernode: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... +[CIPHER] 1000 ENCL transferred to ciphernode +[CIPHER] Step 2: Minting USDC to admin... +[CIPHER] 1000 USDC minted to admin +[CIPHER] Step 3: Impersonating ciphernode for license operations... +[CIPHER] License bonded: 1000 ENCL +[CIPHER] [ag] 2026-04-01T13:42:39.903145Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775122452099213871529996637, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:42:39.903274Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] [cn3] 2026-04-01T13:42:39.903275Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] [cn4] 2026-04-01T13:42:39.903142Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775121658889218705736736513, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:39.903142Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775121917143635736727357281, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:39.903274Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] [cn2] 2026-04-01T13:42:39.903142Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775122341418749432238725349, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:39.903274Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] [cn5] 2026-04-01T13:42:39.903145Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775123319096185339625275461, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:42:39.903318Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] [cn1] 2026-04-01T13:42:39.903708Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775133501698914024909076796, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:39.903803Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 +[CIPHER] Operator registered (automatically added to CiphernodeRegistry) +[CIPHER] Step 4: Adding ticket balance via admin... +[CIPHER] [ag] 2026-04-01T13:42:43.904506Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848933243140651237025132893, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:42:43.904688Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-04-01T13:42:43.904708Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [cn4] 2026-04-01T13:42:43.904506Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848933464501580125257211649, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:43.904618Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848933556735300493804969729, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:43.904688Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-04-01T13:42:43.904618Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848933353821115679282442589, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:43.904612Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848932247016471259483703137, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:43.904688Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] [cn3] 2026-04-01T13:42:43.904709Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [cn4] 2026-04-01T13:42:43.904709Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [cn1] 2026-04-01T13:42:43.904543Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848933482948324196606966076, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:43.904646Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848933575182044565154724156, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:43.904713Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] [cn3] 2026-04-01T13:42:43.904506Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848931914975077932711774049, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:43.904726Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [cn2] 2026-04-01T13:42:43.904713Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848933538288556419343997157, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:43.904791Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848933630522276787891755237, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:43.904848Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 +[CIPHER] [cn2] 2026-04-01T13:42:43.904861Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true +[CIPHER] [cn5] 2026-04-01T13:42:43.905179Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848947484027076144545333317, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:42:43.905255Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848947594707540586802643013, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } +[CIPHER] Ticket balance added: 1000 USDC worth +[CIPHER] +[CIPHER] === Registration Complete === +[CIPHER] Ciphernode: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC +[CIPHER] Registered: true +[CIPHER] Active: true +[CIPHER] License Bond: 1000.0 ENCL +[CIPHER] Ticket Balance: 1000.0 USDC worth +[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Registering ciphernode: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... +[CIPHER] 1000 ENCL transferred to ciphernode +[CIPHER] Step 2: Minting USDC to admin... +[CIPHER] 1000 USDC minted to admin +[CIPHER] Step 3: Impersonating ciphernode for license operations... +[CIPHER] License bonded: 1000 ENCL +[CIPHER] [ag] 2026-04-01T13:42:49.904122Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959605886163421293871247709, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:42:49.904271Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] [cn5] 2026-04-01T13:42:49.904122Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959605886163421297617600581, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:42:49.904271Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] [cn1] 2026-04-01T13:42:49.904122Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959605886163421295228909884, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:49.904281Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] [cn3] 2026-04-01T13:42:49.904304Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959612010482453768216741729, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:49.904402Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] [cn4] 2026-04-01T13:42:49.904324Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959606310438534992908394241, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:49.904452Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] [cn2] 2026-04-01T13:42:49.904777Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959619536754035841905481957, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:49.904892Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 +[CIPHER] Operator registered (automatically added to CiphernodeRegistry) +[CIPHER] Step 4: Adding ticket balance via admin... +[CIPHER] [cn3] 2026-04-01T13:42:53.904580Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033399337265429375162222433, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:53.904686Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033399632413334554515048289, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:53.904771Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn3] 2026-04-01T13:42:53.904795Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true +[CIPHER] [cn4] 2026-04-01T13:42:53.904580Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033399355712173449814875905, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:53.904692Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033399632413334555458150145, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:53.904771Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn4] 2026-04-01T13:42:53.904795Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true +[CIPHER] [cn1] 2026-04-01T13:42:53.904649Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033399355712173447455078716, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:53.904755Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033399632413334553098352956, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:53.904824Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn1] 2026-04-01T13:42:53.904839Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true +[CIPHER] [ag] 2026-04-01T13:42:53.904839Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033408357723281416358605149, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:42:53.904996Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-04-01T13:42:53.905010Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true +[CIPHER] [cn2] 2026-04-01T13:42:53.905003Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033399632413334554706729189, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:53.905096Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true +[CIPHER] [cn5] 2026-04-01T13:42:53.905034Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033399632413334555487043653, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:42:53.905105Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true +[CIPHER] [ag] 2026-04-01T13:42:53.904926Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033408486850489932325466461, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:53.904924Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033399318818685301644351717, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:53.905081Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn5] 2026-04-01T13:42:53.904951Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033399318818685302424666181, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:42:53.905091Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 +[CIPHER] Ticket balance added: 1000 USDC worth +[CIPHER] +[CIPHER] === Registration Complete === +[CIPHER] Ciphernode: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 +[CIPHER] Registered: true +[CIPHER] Active: true +[CIPHER] License Bond: 1000.0 ENCL +[CIPHER] Ticket Balance: 1000.0 USDC worth +[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Registering ciphernode: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... +[CIPHER] 1000 ENCL transferred to ciphernode +[CIPHER] Step 2: Minting USDC to admin... +[CIPHER] 1000 USDC minted to admin +[CIPHER] Step 3: Impersonating ciphernode for license operations... +[CIPHER] License bonded: 1000 ENCL +[CIPHER] [cn4] 2026-04-01T13:42:59.906072Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144112489338185299126787841, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:42:59.906234Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [cn3] 2026-04-01T13:42:59.906111Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144110331069128674166146913, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:42:59.906234Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [cn1] 2026-04-01T13:42:59.906235Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144113282548180466277710140, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:42:59.906348Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [cn5] 2026-04-01T13:42:59.906240Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144115145669331913331114053, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:42:59.906342Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [cn2] 2026-04-01T13:42:59.906715Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144123317576956565882165477, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:42:59.906842Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [ag] 2026-04-01T13:42:59.906842Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 +[CIPHER] [ag] 2026-04-01T13:42:59.906714Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144123723405326184526262621, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } +[CIPHER] Operator registered (automatically added to CiphernodeRegistry) +[CIPHER] Step 4: Adding ticket balance via admin... +[CIPHER] [cn4] 2026-04-01T13:43:03.905841Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32743911217891902467953284674625281, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:03.905956Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32743911217892234509346611446554369, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:03.906074Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true +[CIPHER] [cn5] 2026-04-01T13:43:03.905961Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32743911217893784035848803077783621, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:03.906074Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true +[CIPHER] [ag] 2026-04-01T13:43:03.906159Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32743911217900277289762745093599581, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:03.905841Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32743911217893673355384360820473925, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:03.906056Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-04-01T13:43:03.906265Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32743911217900406416971261060460893, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:03.906049Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-04-01T13:43:03.906334Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-04-01T13:43:03.906351Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true +[CIPHER] [cn2] 2026-04-01T13:43:03.906186Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32743911217901328754174949504080101, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:03.906267Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32743911217901439434639391761389797, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:03.906342Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 +[CIPHER] [cn2] 2026-04-01T13:43:03.906356Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true +[CIPHER] [cn1] 2026-04-01T13:43:03.906226Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32743911217893304420502884240750908, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:03.906320Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32743911217893415100967326498060604, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } +[CIPHER] Ticket balance added: 1000 USDC worth +[CIPHER] +[CIPHER] === Registration Complete === +[CIPHER] Ciphernode: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 +[CIPHER] Registered: true +[CIPHER] Active: true +[CIPHER] License Bond: 1000.0 ENCL +[CIPHER] Ticket Balance: 1000.0 USDC worth +[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] Registering ciphernode: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc +[CIPHER] Disabling transfer restrictions for chain localhost +[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 +[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... +[CIPHER] 1000 ENCL transferred to ciphernode +[CIPHER] Step 2: Minting USDC to admin... +[CIPHER] 1000 USDC minted to admin +[CIPHER] Step 3: Impersonating ciphernode for license operations... +[CIPHER] License bonded: 1000 ENCL +[CIPHER] [cn5] 2026-04-01T13:43:09.903268Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328525401499798929881104453, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:09.903424Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] [ag] 2026-04-01T13:43:09.903279Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328525253925846336458338653, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:09.903419Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] [cn4] 2026-04-01T13:43:09.903278Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328525180138870045337591553, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:09.903419Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] [cn2] 2026-04-01T13:43:09.903268Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328525475286775223938996453, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:09.903419Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] [cn3] 2026-04-01T13:43:09.903539Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328525678200960034552383329, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:09.903664Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] [cn1] 2026-04-01T13:43:09.903973Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328539255004598283365677372, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:09.904091Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 +[CIPHER] Operator registered (automatically added to CiphernodeRegistry) +[CIPHER] Step 4: Adding ticket balance via admin... +[CIPHER] [cn3] 2026-04-01T13:43:13.903941Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402326821595246849952024417, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:13.904074Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 +[CIPHER] [cn3] 2026-04-01T13:43:13.904089Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true +[CIPHER] [cn3] 2026-04-01T13:43:13.904016Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402326913828967218499782497, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:13.903941Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402326009938507605315057980, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:13.904021Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402326212852692416120125756, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:13.904074Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 +[CIPHER] [cn1] 2026-04-01T13:43:13.904089Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true +[CIPHER] [cn2] 2026-04-01T13:43:13.903941Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402326674021294260467292389, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:13.904021Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402326766255014629015050469, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:13.904074Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 +[CIPHER] [cn2] 2026-04-01T13:43:13.904089Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true +[CIPHER] [cn5] 2026-04-01T13:43:13.903941Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402326305086412787056574533, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:13.904021Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402326378873389081894780997, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:13.904074Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 +[CIPHER] [cn5] 2026-04-01T13:43:13.904089Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true +[CIPHER] [ag] 2026-04-01T13:43:13.904319Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402334292526596699546071389, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:13.904371Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402335749819378526318108417, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:13.904452Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 +[CIPHER] [ag] 2026-04-01T13:43:13.904391Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402334403207061141803381085, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:13.904467Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true +[CIPHER] [cn4] 2026-04-01T13:43:13.904441Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402335823606354821156314881, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:13.904496Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 +[CIPHER] [cn4] 2026-04-01T13:43:13.904509Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true +[CIPHER] Ticket balance added: 1000 USDC worth +[CIPHER] +[CIPHER] === Registration Complete === +[CIPHER] Ciphernode: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc +[CIPHER] Registered: true +[CIPHER] Active: true +[CIPHER] License Bond: 1000.0 ENCL +[CIPHER] Ticket Balance: 1000.0 USDC worth +[CIPHER] [cn5] 2026-04-01T13:43:14.862284Z  INFO enclave::start: CMD: {"name":null,"otel":null,"quiet":false,"config":null,"verbose":0,"command":{"PrintEnv":{"vite":false,"chain":"localhost"}}} +[CIPHER] [cn5] 2026-04-01T13:43:14.862514Z  INFO execute: enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" +[PROGRAM] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.43s +[PROGRAM] Running `target/debug/e3-support-scripts-dev` +[SERVER] 📡 Setting up event listeners... +[SERVER] ✅ Event listeners set up successfully +[SERVER] 🚀 Enclave Server listening on port 8080 +[SERVER] 📡 Event listeners active +[SERVER] 📊 Sessions: http://localhost:8080/sessions +[PROGRAM] 🚀 E3 Program Server listening on http://0.0.0.0:13151 +[TEST] +[TEST] RUN v1.6.1 /Users/ctrlc03/Documents/zk/enclave/templates/default +[TEST] +[TEST] stdout | tests/integration.spec.ts:159:11 +[TEST] Testing... +[TEST] +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] E3 quote: 5193760n +[TEST] Approving fee token... +[TEST] +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] Fee token approved: 0x509176338bb946cbb3adb6b45967ff94acb29d1506315bc8df453cd21781e653 +[TEST] +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] Requested E3... +[TEST] +[CIPHER] [cn4] 2026-04-01T13:43:18.919867Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [cn4] 2026-04-01T13:43:18.920420Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494859619025461661935476481, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:18.920482Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494859803492902399030992641, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:18.920550Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494859840386390546450095873, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] E3 Sucessfully Requested! +[TEST] +[CIPHER] [cn1] 2026-04-01T13:43:18.920856Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [cn4] 2026-04-01T13:43:18.921050Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [cn4] 2026-04-01T13:43:18.921067Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [cn1] 2026-04-01T13:43:18.921285Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494877198772563904778369340, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:18.921344Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494877291006284273326127420, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:18.921419Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494877327899772420745230652, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:18.921516Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] +[CIPHER] [cn4] 2026-04-01T13:43:18.921524Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 index=3 ticket_id=Some(66) +[CIPHER] [cn4] 2026-04-01T13:43:18.921562Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn4] 2026-04-01T13:43:18.921569Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" ticket_id=66 +[CIPHER] [cn1] 2026-04-01T13:43:18.921534Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [cn1] 2026-04-01T13:43:18.921544Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [ag] 2026-04-01T13:43:18.922035Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [cn1] 2026-04-01T13:43:18.922100Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] +[CIPHER] [cn1] 2026-04-01T13:43:18.922110Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 index=1 ticket_id=Some(96) +[CIPHER] [cn1] 2026-04-01T13:43:18.922138Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn1] 2026-04-01T13:43:18.922143Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x70997970C51812dc3A010C7d01b50e0d17dc79C8" ticket_id=96 +[CIPHER] [cn3] 2026-04-01T13:43:18.922822Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [cn5] 2026-04-01T13:43:18.923171Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [cn2] 2026-04-01T13:43:18.927168Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes +[CIPHER] [cn1] 2026-04-01T13:43:18.927459Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(96), node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8" }), ctx: EventContext { id: EventId(0x2f085fda8f06b3637b0d7264d4ad148204fa9ac7663471b640e8fafdf302d9a8), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 4, ts: 32743911494899316418708282530756924, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:18.927575Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract +[CIPHER] [cn1] 2026-04-01T13:43:18.927613Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 96 for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn1] 2026-04-01T13:43:18.927623Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) +[CIPHER] [cn4] 2026-04-01T13:43:18.930657Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(66), node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" }), ctx: EventContext { id: EventId(0x19c0cca9f33c619fbb1d40cf0635b7412f2569fc74019ec2e228815f9cca120c), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 4, ts: 32743911494888727987609975607926529, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } +[CIPHER] [cn4] 2026-04-01T13:43:18.930756Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract +[CIPHER] [cn4] 2026-04-01T13:43:18.930781Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 66 for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn4] 2026-04-01T13:43:18.930786Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) +[CIPHER] [cn3] 2026-04-01T13:43:18.933446Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494914055367223177879193441, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:18.933469Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494901290220324168095117661, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:18.933493Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494914147600943546426951521, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:18.933543Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494914184494431693846054753, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:18.933515Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494901419347532684061978973, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:18.933568Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494901437794276757771530589, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:18.933682Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [cn3] 2026-04-01T13:43:18.933695Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [cn3] 2026-04-01T13:43:18.934097Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] +[CIPHER] [cn3] 2026-04-01T13:43:18.934104Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x90F79bf6EB2c4f870365E785982E1f101E93b906 index=0 ticket_id=Some(47) +[CIPHER] [cn3] 2026-04-01T13:43:18.934128Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn3] 2026-04-01T13:43:18.934133Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x90F79bf6EB2c4f870365E785982E1f101E93b906" ticket_id=47 +[CIPHER] [cn5] 2026-04-01T13:43:18.936429Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494920382600440461227393093, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:18.936388Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494994003556038635267578085, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:18.936489Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494920474834160829775151173, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:18.936501Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494994095789759003815336165, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:18.936592Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494994132683247151234439397, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:18.936603Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494920511727648977194254405, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:18.936665Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [cn2] 2026-04-01T13:43:18.936673Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [cn5] 2026-04-01T13:43:18.936703Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [cn5] 2026-04-01T13:43:18.936712Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [cn2] 2026-04-01T13:43:18.937014Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] +[CIPHER] [cn2] 2026-04-01T13:43:18.937021Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC index=2 ticket_id=Some(40) +[CIPHER] [cn2] 2026-04-01T13:43:18.937037Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn2] 2026-04-01T13:43:18.937042Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" ticket_id=40 +[CIPHER] [cn5] 2026-04-01T13:43:18.937055Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] +[CIPHER] [cn5] 2026-04-01T13:43:18.937062Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc index=4 ticket_id=Some(12) +[CIPHER] [cn5] 2026-04-01T13:43:18.937079Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn5] 2026-04-01T13:43:18.937084Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" ticket_id=12 +[CIPHER] [ag] 2026-04-01T13:43:18.941674Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 +[CIPHER] [ag] 2026-04-01T13:43:18.941686Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 +[CIPHER] [ag] 2026-04-01T13:43:18.942037Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] +[CIPHER] [ag] 2026-04-01T13:43:18.942138Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } +[CIPHER] [ag] 2026-04-01T13:43:18.942145Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" +[CIPHER] [ag] 2026-04-01T13:43:18.942083Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=31337:0 node=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 +[CIPHER] [ag] 2026-04-01T13:43:18.943329Z  INFO e3_aggregator::committee_finalizer: Scheduling committee finalization e3_id=31337:0 committee_deadline=1775051008 current_timestamp=1775050998 seconds_to_wait=11 +[CIPHER] [ag] 2026-04-01T13:43:18.943353Z  INFO alloy_pubsub::service: Pubsub service request channel closed. Shutting down. +[CIPHER] [cn2] 2026-04-01T13:43:18.945450Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(40), node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" }), ctx: EventContext { id: EventId(0x73f25d7aa499f1d07b6e8ddbb2e1060f06ad28f8255708f1da40b7ce1903e13d), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 4, ts: 32743911495174154458662482748659941, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:18.945514Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract +[CIPHER] [cn2] 2026-04-01T13:43:18.945539Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) +[CIPHER] [cn2] 2026-04-01T13:43:18.945534Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 40 for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn3] 2026-04-01T13:43:18.948389Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(47), node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906" }), ctx: EventContext { id: EventId(0xc9834cfbde2e3230ee3db3efe5e4149bd5bdc4ae66a89782053a7cf93bc36a95), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 4, ts: 32743911495120492880152061471328097, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } +[CIPHER] [cn5] 2026-04-01T13:43:18.948418Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(12), node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" }), ctx: EventContext { id: EventId(0x5d59963842e6c236b56919fe6b03b587d5c55a3a78b9c315b37d086f819fa95b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 4, ts: 32743911495174947668657653039693893, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:18.948435Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract +[CIPHER] [cn3] 2026-04-01T13:43:18.948453Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 47 for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [cn3] 2026-04-01T13:43:18.948456Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) +[CIPHER] [cn5] 2026-04-01T13:43:18.948455Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract +[CIPHER] [cn5] 2026-04-01T13:43:18.948467Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) +[CIPHER] [cn5] 2026-04-01T13:43:18.948464Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 12 for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [ag] 2026-04-01T13:43:19.904264Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 4, ts: 32743911513012561806309237805429085, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:19.904351Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 5, ts: 32743911513012672486773680062738781, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:19.904436Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 7, ts: 32743911513012764720494048610496861, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:19.904244Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 5, ts: 32743911513011621022361481392654177, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:19.904344Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 6, ts: 32743911513011750149569997359515489, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:19.904382Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 7, ts: 32743911513011787043058144778618721, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:19.904417Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 8, ts: 32743911513011823936546292197721953, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:19.904451Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 9, ts: 32743911513011860830034439616825185, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:19.904395Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 6, ts: 32743911513012727827005901191393629, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:19.904280Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 5, ts: 32743911513009702560977814182590780, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:19.904351Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 6, ts: 32743911513009960815394846116313404, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:19.904472Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 8, ts: 32743911513012801613982196029600093, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:19.904391Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 7, ts: 32743911513009997708882993535416636, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:19.904429Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 8, ts: 32743911513010034602371140954519868, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:19.904462Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 9, ts: 32743911513010071495859288373623100, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:19.904439Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 5, ts: 32743911513011750149569998302617345, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:19.904508Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 6, ts: 32743911513011860830034440559927041, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:19.904555Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 7, ts: 32743911513011897723522587979030273, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:19.904598Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 8, ts: 32743911513011934617010735398133505, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:19.904640Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 9, ts: 32743911513011971510498882817236737, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:19.918215Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 5, ts: 32743911513030621168757402422499557, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:19.918323Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 7, ts: 32743911513031008550382951103397957, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:19.918348Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 8, ts: 32743911513031045443871098522501189, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:19.918284Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 6, ts: 32743911513030750295965918389360869, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:19.918234Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 5, ts: 32743911513030860976430361426985029, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:19.918295Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 6, ts: 32743911513030971656894803684294725, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:19.918352Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 7, ts: 32743911513030787189454065808464101, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:19.918374Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 9, ts: 32743911513031063890615172232052805, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:19.918378Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 8, ts: 32743911513030824082942213227567333, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:19.918410Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 9, ts: 32743911513030953210150729194428645, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:25.933804Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0xbe18187c0ccb8f09ed50595a3cee536834c75df71b12e9e41e5ae96f126da118 +[CIPHER] [cn4] 2026-04-01T13:43:25.935124Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0xc07b8c7eb28816b85882d0bd0413621f63332cf0ddb726066c5d6445f8f65cb5 +[CIPHER] [cn2] 2026-04-01T13:43:25.949607Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x5163d058227884c10728acc152fc80045b17730121f12bbf6740fa28d67eaa4e +[CIPHER] [cn5] 2026-04-01T13:43:25.952281Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x4b1a81dde4657072115067f4db7d27c0c96ebbccac8220eef810a4c09231c081 +[CIPHER] [cn3] 2026-04-01T13:43:25.952810Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0xcf5899cce39cbcfef74419e27675f24c0a6e917b647daf3f470eb6271b0fcaec +[CIPHER] [ag] 2026-04-01T13:43:29.945396Z  INFO e3_aggregator::committee_finalizer: Dispatching CommitteeFinalizeRequested event e3_id=31337:0 +[CIPHER] [ag] 2026-04-01T13:43:29.945878Z  INFO e3_events::eventbus: >>> CommitteeFinalizeRequested EnclaveEvent { payload: CommitteeFinalizeRequested(CommitteeFinalizeRequested { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x03fa318dc6ec43edd2bbef83cf33e379c8c498207236842c76f050715c9d2dc4), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 9, ts: 32743911698243587067591887145021789, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } +[CIPHER] [ag] 2026-04-01T13:43:29.946167Z  INFO e3_evm::ciphernode_registry_sol: Finalizing committee for E3 E3id { id: "0", chain_id: 31337 } +[CIPHER] [ag] 2026-04-01T13:43:29.946260Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.finalizeCommittee(..) +[CIPHER] [ag] 2026-04-01T13:43:30.902127Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715888801664554685033754973, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:30.902127Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715888820111298762489659461, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:30.902171Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715888930791763204746969157, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:30.902127Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715888930791763204718075649, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:43:30.902175Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715888967685251352137178881, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:30.902174Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715888930791763201000616285, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:43:30.902215Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715890369637800953311680741, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:30.902215Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715890849253146868151646524, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:43:30.902215Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715890185170360216024483681, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:43:30.902270Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn4] 2026-04-01T13:43:30.902277Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn5] 2026-04-01T13:43:30.902278Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn3] 2026-04-01T13:43:30.902278Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715890295850824658281793377, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:30.902395Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn4] 2026-04-01T13:43:30.902333Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn5] 2026-04-01T13:43:30.902340Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:30.902277Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715890443424777248149887205, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:43:30.902283Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715890904593379089280301372, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:43:30.902412Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [cn5] 2026-04-01T13:43:30.902430Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [ag] 2026-04-01T13:43:30.902333Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn5] 2026-04-01T13:43:30.902432Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn5] 2026-04-01T13:43:30.902434Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [cn5] 2026-04-01T13:43:30.902435Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" +[CIPHER] [cn1] 2026-04-01T13:43:30.902413Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:30.902441Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [cn1] 2026-04-01T13:43:30.902451Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [cn1] 2026-04-01T13:43:30.902453Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn1] 2026-04-01T13:43:30.902457Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x70997970C51812dc3A010C7d01b50e0d17dc79C8" party_id=1 +[CIPHER] [cn1] 2026-04-01T13:43:30.902532Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [cn3] 2026-04-01T13:43:30.902400Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn3] 2026-04-01T13:43:30.902420Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:30.902455Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [cn3] 2026-04-01T13:43:30.902449Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [cn3] 2026-04-01T13:43:30.902458Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [cn3] 2026-04-01T13:43:30.902460Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn3] 2026-04-01T13:43:30.902462Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [cn3] 2026-04-01T13:43:30.902463Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x90F79bf6EB2c4f870365E785982E1f101E93b906" party_id=0 +[CIPHER] [cn3] 2026-04-01T13:43:30.902531Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [cn2] 2026-04-01T13:43:30.902403Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 +[CIPHER] [cn2] 2026-04-01T13:43:30.902424Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:30.902461Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [cn2] 2026-04-01T13:43:30.902463Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn2] 2026-04-01T13:43:30.902465Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [cn2] 2026-04-01T13:43:30.902466Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" party_id=2 +[CIPHER] [cn2] 2026-04-01T13:43:30.902530Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [cn4] 2026-04-01T13:43:30.902437Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [cn4] 2026-04-01T13:43:30.902443Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [cn4] 2026-04-01T13:43:30.902446Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" +[CIPHER] [ag] 2026-04-01T13:43:30.902477Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. +[CIPHER] [ag] 2026-04-01T13:43:30.902479Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn2] 2026-04-01T13:43:30.902452Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [ag] 2026-04-01T13:43:30.902482Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... +[CIPHER] [ag] 2026-04-01T13:43:30.902484Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" +[CIPHER] [ag] 2026-04-01T13:43:30.902531Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [cn5] 2026-04-01T13:43:30.902584Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [cn4] 2026-04-01T13:43:30.902440Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... +[CIPHER] [cn4] 2026-04-01T13:43:30.902414Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [cn4] 2026-04-01T13:43:30.902537Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) +[CIPHER] [ag] 2026-04-01T13:43:30.902453Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 +[CIPHER] [cn1] 2026-04-01T13:43:30.904926Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 1 }), ctx: EventContext { id: EventId(0xb8c9d9ae5c125a2ee5bf93fd36ac48c5fec78993104471f17f8835ebf321ec42), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 12, ts: 32743911715897084252643781980092732, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:30.905501Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. +[CIPHER] [cn1] 2026-04-01T13:43:30.905519Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes +[CIPHER] [cn1] 2026-04-01T13:43:30.905538Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes +[CIPHER] [cn2] 2026-04-01T13:43:30.907906Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 2 }), ctx: EventContext { id: EventId(0x2086318ed05c479271c785aece14a0d0916110e6e07dee7f28eb5c477f752671), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 12, ts: 32743911715897250273340446974433509, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:30.907987Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 0 }), ctx: EventContext { id: EventId(0xa0f2f9ed8f9e8b695be806d9b6dd4d7b7a425e4f7a7a27cafe3c5ec05abfdda8), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 12, ts: 32743911715897194933108225654097761, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:30.908097Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. +[CIPHER] [cn2] 2026-04-01T13:43:30.908106Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes +[CIPHER] [cn2] 2026-04-01T13:43:30.908111Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes +[CIPHER] [cn3] 2026-04-01T13:43:30.908130Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. +[CIPHER] [cn3] 2026-04-01T13:43:30.908134Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-04-01T13:43:30.908139Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn1] 2026-04-01T13:43:30.909417Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:30.909423Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:30.909616Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x04be1f1b8b08c205bdb97b42889271d5e5eba1c1f50104661da9edeec4a3c085), causation_id: EventId(0xb8c9d9ae5c125a2ee5bf93fd36ac48c5fec78993104471f17f8835ebf321ec42), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 13, ts: 32743911716024514360704967562656060, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:30.909840Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation +[CIPHER] [cn2] 2026-04-01T13:43:30.911031Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:30.911036Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 +[CIPHER] [cn3] 2026-04-01T13:43:30.911045Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 +[CIPHER] [cn3] 2026-04-01T13:43:30.911052Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:30.913014Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc0c1cc0833c0aeece05bfb4bcd28358cb42f6f47f2e7e93cf9f729ead723869f), causation_id: EventId(0x04be1f1b8b08c205bdb97b42889271d5e5eba1c1f50104661da9edeec4a3c085), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 27, ts: 32743911716033295010884053309225276, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:30.913279Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(55)` +[CIPHER] [cn2] 2026-04-01T13:43:30.916106Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x02980a5e17e0206b64987e96d1eaf733dc2a64def7d1f86048645e0f21560ad1), causation_id: EventId(0x2086318ed05c479271c785aece14a0d0916110e6e07dee7f28eb5c477f752671), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 13, ts: 32743911716054859254706221383440613, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:30.916126Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0xfdfac64c64448ba7a78329e0ffdaef3fec1e41d618f347d5defc0298b66ad054), causation_id: EventId(0xa0f2f9ed8f9e8b695be806d9b6dd4d7b7a425e4f7a7a27cafe3c5ec05abfdda8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 13, ts: 32743911716055099062379179415930721, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:30.916410Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation +[CIPHER] [cn2] 2026-04-01T13:43:30.916385Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation +[CIPHER] [cn3] 2026-04-01T13:43:30.922109Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x812efc85dd386ef41c7a028b21e83cac70d951c3dd1f12d90d1943659896076a), causation_id: EventId(0xfdfac64c64448ba7a78329e0ffdaef3fec1e41d618f347d5defc0298b66ad054), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 27, ts: 32743911716154508566192400189589345, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:30.922355Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(154)` +[CIPHER] [cn2] 2026-04-01T13:43:30.923602Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xcf86b2e277d8fe1098dae124f6cf8886d6d213f42d637769f8e5825b3cb5db02), causation_id: EventId(0x02980a5e17e0206b64987e96d1eaf733dc2a64def7d1f86048645e0f21560ad1), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 27, ts: 32743911716154028950846483932928229, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:30.923825Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(56)` +[CIPHER] [cn2] 2026-04-01T13:43:31.218061Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:31.219597Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:43:31.235518Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 +[CIPHER] [ag] 2026-04-01T13:43:36.954703Z  INFO e3_evm::ciphernode_registry_sol: Committee finalized on registry tx=0x6caed53585f72b9fec4061733e3fa9ee92165041c3149b31bb1e5bd73e360871 +[CIPHER] [cn1] 2026-04-01T13:43:38.570188Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:38.570399Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(55) in 7.65711075s +[CIPHER] [cn1] 2026-04-01T13:43:38.570933Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd63afef23eb5a1348fd73b9b40bcba1ad607e76153fefaa4b917fc6bc861c3f7), causation_id: EventId(0xc0c1cc0833c0aeece05bfb4bcd28358cb42f6f47f2e7e93cf9f729ead723869f), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 14, ts: 32743911857346976064265655705303356, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:38.572133Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 1 (signer: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8) +[CIPHER] [cn1] 2026-04-01T13:43:38.572368Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0xa2bddb65dbc82baecd0508da7380be0b8f060fe4f1f95118079dfa1a0df6ba99), causation_id: EventId(0xd63afef23eb5a1348fd73b9b40bcba1ad607e76153fefaa4b917fc6bc861c3f7), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 15, ts: 32743911857377726786636529527847228, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:38.573507Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C0PkBfv, data_hash: [209, 213, 78, 226, 15, 77, 135, 245, 86, 155, 138, 14, 182, 29, 44, 37, 130, 247, 50, 16, 210, 140, 61, 188, 234, 194, 213, 19, 70, 164, 164, 104], public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), ctx: EventContext { id: EventId(0x3691749795f3cbe4aa26fb9b0325d4804cda09b7819e1f8ba2be676d1d85b3c2), causation_id: EventId(0xd63afef23eb5a1348fd73b9b40bcba1ad607e76153fefaa4b917fc6bc861c3f7), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 16, ts: 32743911857378519996631699038566716, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:38.573612Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 +[CIPHER] [cn1] 2026-04-01T13:43:38.573644Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn1] 2026-04-01T13:43:38.573648Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes +[CIPHER] [cn1] 2026-04-01T13:43:38.573660Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 +[CIPHER] [cn1] 2026-04-01T13:43:38.573658Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn1] 2026-04-01T13:43:38.573661Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 +[CIPHER] [cn1] 2026-04-01T13:43:38.573664Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 5.459µs +[CIPHER] [cn1] 2026-04-01T13:43:38.575627Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38.573578Z }, value: }), ctx: EventContext { id: EventId(0x947b32aa9e23fcd6e2c68e9a4e6477454f3474bc8d2b63f2016ec48495131e51), causation_id: EventId(0xa2bddb65dbc82baecd0508da7380be0b8f060fe4f1f95118079dfa1a0df6ba99), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 28, ts: 32743911857404935734145251116480828, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.584779Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), causation_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 28, ts: 32743911857584496340958741308606305, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:43:38.584807Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), causation_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 28, ts: 32743911857589052686744947759536357, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:43:38.587472Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c } }, signature: }) } }), ctx: EventContext { id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), causation_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 14, ts: 32743911857633749147635545811421025, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:38.587540Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c } }, signature: }) } }), ctx: EventContext { id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), causation_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 14, ts: 32743911857633988955308504227272933, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.588744Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 for key from party 1 +[CIPHER] [cn2] 2026-04-01T13:43:38.588777Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 for key from party 1 +[CIPHER] [cn3] 2026-04-01T13:43:38.625855Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key +[CIPHER] [cn3] 2026-04-01T13:43:38.626284Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x96bc11d51ce58f23f201d60ccd1ffb3b08a1337d121ae6a4f4796d5e40bf48fe), causation_id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 15, ts: 32743911858368815005484724024215393, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.627348Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C0PkBfv, data_hash: [209, 213, 78, 226, 15, 77, 135, 245, 86, 155, 138, 14, 182, 29, 44, 37, 130, 247, 50, 16, 210, 140, 61, 188, 234, 194, 213, 19, 70, 164, 164, 104], public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), ctx: EventContext { id: EventId(0x3691749795f3cbe4aa26fb9b0325d4804cda09b7819e1f8ba2be676d1d85b3c2), causation_id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 16, ts: 32743911858370216958034325950138209, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.627432Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn3] 2026-04-01T13:43:38.627443Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn3] 2026-04-01T13:43:38.627445Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 +[CIPHER] [cn3] 2026-04-01T13:43:38.627436Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-04-01T13:43:38.627446Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 +[CIPHER] [cn3] 2026-04-01T13:43:38.627447Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.125µs +[CIPHER] [cn2] 2026-04-01T13:43:38.636161Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key +[CIPHER] [cn2] 2026-04-01T13:43:38.640579Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x96bc11d51ce58f23f201d60ccd1ffb3b08a1337d121ae6a4f4796d5e40bf48fe), causation_id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 15, ts: 32743911858558945596652448564402405, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:38.641669Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C0PkBfv, data_hash: [209, 213, 78, 226, 15, 77, 135, 245, 86, 155, 138, 14, 182, 29, 44, 37, 130, 247, 50, 16, 210, 140, 61, 188, 234, 194, 213, 19, 70, 164, 164, 104], public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), ctx: EventContext { id: EventId(0x3691749795f3cbe4aa26fb9b0325d4804cda09b7819e1f8ba2be676d1d85b3c2), causation_id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 16, ts: 32743911858560310655713903071221989, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:38.641759Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn2] 2026-04-01T13:43:38.641771Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 +[CIPHER] [cn2] 2026-04-01T13:43:38.641762Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes +[CIPHER] [cn2] 2026-04-01T13:43:38.641770Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn2] 2026-04-01T13:43:38.641772Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 +[CIPHER] [cn2] 2026-04-01T13:43:38.641774Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.417µs +[CIPHER] [cn2] 2026-04-01T13:43:38.909254Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:38.909360Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(56) in 7.985528417s +[CIPHER] [cn2] 2026-04-01T13:43:38.909488Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xef8cf1fec1373c318068e7fca6352e63f8d834495fe5c3015046594e06b5c03a), causation_id: EventId(0xcf86b2e277d8fe1098dae124f6cf8886d6d213f42d637769f8e5825b3cb5db02), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 17, ts: 32743911863598965012471372256925925, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:38.910574Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 2 (signer: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC) +[CIPHER] [cn2] 2026-04-01T13:43:38.910752Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0xdb18b52b231040c8fc5e1d0e032fd2278f8076b8af49817b8a9151c3d29e4a43), causation_id: EventId(0xef8cf1fec1373c318068e7fca6352e63f8d834495fe5c3015046594e06b5c03a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 18, ts: 32743911863620842850942791785142501, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:38.911977Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C0PkBfv, data_hash: [116, 110, 6, 104, 92, 112, 64, 220, 203, 203, 92, 164, 8, 124, 37, 39, 232, 67, 82, 125, 77, 39, 8, 206, 43, 200, 181, 22, 150, 251, 0, 162], public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), ctx: EventContext { id: EventId(0xafa40a69d88307972e48e190077ef859681a1837b4633c4fd0b95683be695dd7), causation_id: EventId(0xef8cf1fec1373c318068e7fca6352e63f8d834495fe5c3015046594e06b5c03a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 19, ts: 32743911863621562273961666457655525, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:38.912100Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 +[CIPHER] [cn2] 2026-04-01T13:43:38.912128Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn2] 2026-04-01T13:43:38.912138Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn2] 2026-04-01T13:43:38.912139Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 +[CIPHER] [cn2] 2026-04-01T13:43:38.912131Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes +[CIPHER] [cn2] 2026-04-01T13:43:38.912141Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 +[CIPHER] [cn2] 2026-04-01T13:43:38.912142Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.417µs +[CIPHER] [cn2] 2026-04-01T13:43:38.914570Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38.912078Z }, value: }), ctx: EventContext { id: EventId(0x8adeec98d7cd91d609e988405c055bbb3efe62d80d0d5e1211f946c8e1c1d91c), causation_id: EventId(0xdb18b52b231040c8fc5e1d0e032fd2278f8076b8af49817b8a9151c3d29e4a43), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 29, ts: 32743911863648918795422977722702053, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.922458Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:43:38.922543Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(154) in 8.000179584s +[CIPHER] [cn1] 2026-04-01T13:43:38.922614Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), causation_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 29, ts: 32743911863820787109957728006732092, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:43:38.922623Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), causation_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 29, ts: 32743911863816968633934471546242913, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:43:38.923808Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 } }, signature: }) } }), ctx: EventContext { id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), causation_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 17, ts: 32743911863863731130161325259589473, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:38.923801Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 } }, signature: }) } }), ctx: EventContext { id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), causation_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 17, ts: 32743911863863343748535775942310204, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.925067Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC for key from party 2 +[CIPHER] [cn1] 2026-04-01T13:43:38.925068Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC for key from party 2 +[CIPHER] [cn1] 2026-04-01T13:43:38.956225Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key +[CIPHER] [cn3] 2026-04-01T13:43:38.956225Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key +[CIPHER] [cn1] 2026-04-01T13:43:38.956743Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x7973a9a8ab6d3fe58c1a1b9b99eadced9a6a20493907b720928f41220dec36e2), causation_id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 18, ts: 32743911864462973611395778627139900, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:38.957948Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C0PkBfv, data_hash: [116, 110, 6, 104, 92, 112, 64, 220, 203, 203, 92, 164, 8, 124, 37, 39, 232, 67, 82, 125, 77, 39, 8, 206, 43, 200, 181, 22, 150, 251, 0, 162], public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), ctx: EventContext { id: EventId(0xafa40a69d88307972e48e190077ef859681a1837b4633c4fd0b95683be695dd7), causation_id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 19, ts: 32743911864463895948599464104720700, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:38.958019Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn1] 2026-04-01T13:43:38.958022Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes +[CIPHER] [cn1] 2026-04-01T13:43:38.958029Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn1] 2026-04-01T13:43:38.958030Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 +[CIPHER] [cn1] 2026-04-01T13:43:38.958032Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 +[CIPHER] [cn1] 2026-04-01T13:43:38.958033Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.375µs +[CIPHER] [cn3] 2026-04-01T13:43:38.959350Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x568a15d8a60abefb6a7135835a9af9b1d7edf3498e19a9c972e6cd2f1fc32bce), causation_id: EventId(0x812efc85dd386ef41c7a028b21e83cac70d951c3dd1f12d90d1943659896076a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 18, ts: 32743911863888375980243801220548449, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.960386Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 0 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) +[CIPHER] [cn3] 2026-04-01T13:43:38.960445Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x7973a9a8ab6d3fe58c1a1b9b99eadced9a6a20493907b720928f41220dec36e2), causation_id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 19, ts: 32743911864462973611395780043835233, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.961598Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C0PkBfv, data_hash: [116, 110, 6, 104, 92, 112, 64, 220, 203, 203, 92, 164, 8, 124, 37, 39, 232, 67, 82, 125, 77, 39, 8, 206, 43, 200, 181, 22, 150, 251, 0, 162], public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), ctx: EventContext { id: EventId(0xafa40a69d88307972e48e190077ef859681a1837b4633c4fd0b95683be695dd7), causation_id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 20, ts: 32743911864463766821390949554554721, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.961911Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn3] 2026-04-01T13:43:38.961914Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-04-01T13:43:38.967893Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn3] 2026-04-01T13:43:38.967896Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 +[CIPHER] [cn3] 2026-04-01T13:43:38.967897Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 +[CIPHER] [cn3] 2026-04-01T13:43:38.967898Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 5.416µs +[CIPHER] [cn3] 2026-04-01T13:43:38.967951Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x7b399f8becb0ae08346ab17cec94977d2266663fdb71cb50bc06cfc9fd3921fe), causation_id: EventId(0x568a15d8a60abefb6a7135835a9af9b1d7edf3498e19a9c972e6cd2f1fc32bce), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 21, ts: 32743911864539675173254264359454561, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.969048Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [23, 242, 163, 134, 170, 194, 244, 36, 102, 93, 235, 162, 162, 24, 89, 241, 45, 15, 158, 239, 121, 208, 180, 192, 225, 186, 84, 103, 61, 196, 245, 132], public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), ctx: EventContext { id: EventId(0x87230adcae208da8bcd0448114130343bc18ba91eac3993281508f0f98dcc8ee), causation_id: EventId(0x568a15d8a60abefb6a7135835a9af9b1d7edf3498e19a9c972e6cd2f1fc32bce), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 22, ts: 32743911864540431489761286451070817, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.969140Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 +[CIPHER] [cn3] 2026-04-01T13:43:38.969163Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn3] 2026-04-01T13:43:38.969165Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-04-01T13:43:38.969170Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn3] 2026-04-01T13:43:38.969171Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 +[CIPHER] [cn3] 2026-04-01T13:43:38.969172Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 +[CIPHER] [cn3] 2026-04-01T13:43:38.969173Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! +[CIPHER] [cn3] 2026-04-01T13:43:38.969175Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 5.333µs +[CIPHER] [cn3] 2026-04-01T13:43:38.969180Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received +[CIPHER] [cn3] 2026-04-01T13:43:38.969270Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare +[CIPHER] [cn3] 2026-04-01T13:43:38.975135Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38.969117Z }, value: }), ctx: EventContext { id: EventId(0x796953d1308eb6623eb7151817feb354f9a2ac204d0ae00bf2f9fbf9fa91866e), causation_id: EventId(0x7b399f8becb0ae08346ab17cec94977d2266663fdb71cb50bc06cfc9fd3921fe), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 30, ts: 32743911864701139524131444064749409, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.979354Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 81, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x60bf23503c31c074bd6964ea0a7e4944accca87c3b3336ce58302c6070133ee4), causation_id: EventId(0x7b399f8becb0ae08346ab17cec94977d2266663fdb71cb50bc06cfc9fd3921fe), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 31, ts: 32743911864770573068824886817032033, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.979598Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(45)` +[CIPHER] [cn3] 2026-04-01T13:43:38.979602Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss +[CIPHER] [cn1] 2026-04-01T13:43:38.982792Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), causation_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 30, ts: 32743911864947864726117307900918076, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:43:38.982795Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), causation_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 30, ts: 32743911864947680258676572413778149, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:43:38.985590Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 } }, signature: }) } }), ctx: EventContext { id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), causation_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 20, ts: 32743911864973395019915323528730853, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:38.985590Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 } }, signature: }) } }), ctx: EventContext { id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), causation_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 20, ts: 32743911864973450360147543049009468, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.986826Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 +[CIPHER] [cn2] 2026-04-01T13:43:38.986862Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x90F79bf6EB2c4f870365E785982E1f101E93b906 for key from party 0 +[CIPHER] [cn1] 2026-04-01T13:43:38.986888Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x90F79bf6EB2c4f870365E785982E1f101E93b906 for key from party 0 +[CIPHER] [cn3] 2026-04-01T13:43:38.987100Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... +[CIPHER] [cn3] 2026-04-01T13:43:38.991438Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(45) in 11.835917ms +[CIPHER] [cn3] 2026-04-01T13:43:38.991551Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 81, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x192139e366fed334b34339c0f135115694526fc471a47e3e0e07aef0f8a2bb2a), causation_id: EventId(0x60bf23503c31c074bd6964ea0a7e4944accca87c3b3336ce58302c6070133ee4), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 23, ts: 32743911865112815511624420128163681, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.992983Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss +[CIPHER] [cn3] 2026-04-01T13:43:38.993073Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare +[CIPHER] [cn3] 2026-04-01T13:43:38.993148Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc2c41b0b9d7fe82d13a9b98005535a1efda47988c8d9fbef061302ddce0adc20), causation_id: EventId(0x192139e366fed334b34339c0f135115694526fc471a47e3e0e07aef0f8a2bb2a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 32, ts: 32743911865142643896791608473126753, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:38.993355Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(165)` +[CIPHER] [cn3] 2026-04-01T13:43:38.993359Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss +[CIPHER] [cn3] 2026-04-01T13:43:38.997006Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... +[CIPHER] [cn3] 2026-04-01T13:43:38.997018Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... +[CIPHER] [cn3] 2026-04-01T13:43:39.000770Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... +[CIPHER] [cn3] 2026-04-01T13:43:39.001045Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(165) in 7.686416ms +[CIPHER] [cn3] 2026-04-01T13:43:39.001152Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xff52b02a9e817aeeefc676af455041e99b249182b47425602980b7e0aab235f5), causation_id: EventId(0xc2c41b0b9d7fe82d13a9b98005535a1efda47988c8d9fbef061302ddce0adc20), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 24, ts: 32743911865289885807987958114125665, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.001968Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss +[CIPHER] [cn3] 2026-04-01T13:43:39.002059Z  INFO e3_keyshare::threshold_keyshare: esi stored +[CIPHER] [cn1] 2026-04-01T13:43:39.017974Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key +[CIPHER] [cn2] 2026-04-01T13:43:39.018170Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key +[CIPHER] [cn1] 2026-04-01T13:43:39.018121Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x500f5dae69940667110e54a5eb23114c5483d67b9c4cd090f0d0467a4e695003), causation_id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 21, ts: 32743911865602023164459196020324668, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.019323Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [23, 242, 163, 134, 170, 194, 244, 36, 102, 93, 235, 162, 162, 24, 89, 241, 45, 15, 158, 239, 121, 208, 180, 192, 225, 186, 84, 103, 61, 196, 245, 132], public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), ctx: EventContext { id: EventId(0x87230adcae208da8bcd0448114130343bc18ba91eac3993281508f0f98dcc8ee), causation_id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 22, ts: 32743911865602797927710291821492540, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.019394Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn1] 2026-04-01T13:43:39.019397Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes +[CIPHER] [cn1] 2026-04-01T13:43:39.019403Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn1] 2026-04-01T13:43:39.019404Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 +[CIPHER] [cn1] 2026-04-01T13:43:39.019405Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 +[CIPHER] [cn1] 2026-04-01T13:43:39.019407Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! +[CIPHER] [cn1] 2026-04-01T13:43:39.019409Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 6.458µs +[CIPHER] [cn1] 2026-04-01T13:43:39.019523Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received +[CIPHER] [cn1] 2026-04-01T13:43:39.019598Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare +[CIPHER] [cn3] 2026-04-01T13:43:39.020549Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) +[CIPHER] [cn2] 2026-04-01T13:43:39.024927Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x500f5dae69940667110e54a5eb23114c5483d67b9c4cd090f0d0467a4e695003), causation_id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 21, ts: 32743911865605601832809497281714405, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.025986Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [23, 242, 163, 134, 170, 194, 244, 36, 102, 93, 235, 162, 162, 24, 89, 241, 45, 15, 158, 239, 121, 208, 180, 192, 225, 186, 84, 103, 61, 196, 245, 132], public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), ctx: EventContext { id: EventId(0x87230adcae208da8bcd0448114130343bc18ba91eac3993281508f0f98dcc8ee), causation_id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 22, ts: 32743911865606376596060593082882277, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.026047Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! +[CIPHER] [cn2] 2026-04-01T13:43:39.026049Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes +[CIPHER] [cn2] 2026-04-01T13:43:39.026054Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received +[CIPHER] [cn2] 2026-04-01T13:43:39.026055Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 +[CIPHER] [cn2] 2026-04-01T13:43:39.026057Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! +[CIPHER] [cn2] 2026-04-01T13:43:39.026058Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 5µs +[CIPHER] [cn2] 2026-04-01T13:43:39.026056Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 +[CIPHER] [cn2] 2026-04-01T13:43:39.026185Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received +[CIPHER] [cn2] 2026-04-01T13:43:39.026242Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare +[CIPHER] [cn1] 2026-04-01T13:43:39.027835Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), causation_id: EventId(0x500f5dae69940667110e54a5eb23114c5483d67b9c4cd090f0d0467a4e695003), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 31, ts: 32743911865699975375490593739405628, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.028055Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(65)` +[CIPHER] [cn1] 2026-04-01T13:43:39.028060Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss +[CIPHER] [cn2] 2026-04-01T13:43:39.032165Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), causation_id: EventId(0x500f5dae69940667110e54a5eb23114c5483d67b9c4cd090f0d0467a4e695003), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 31, ts: 32743911865823052051950385476163813, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.032372Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(137)` +[CIPHER] [cn2] 2026-04-01T13:43:39.032376Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss +[CIPHER] [cn1] 2026-04-01T13:43:39.035215Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 +[CIPHER] [cn1] 2026-04-01T13:43:39.035436Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... +[CIPHER] [cn1] 2026-04-01T13:43:39.037820Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(65) in 9.760125ms +[CIPHER] [cn3] 2026-04-01T13:43:39.027881Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), causation_id: EventId(0xff52b02a9e817aeeefc676af455041e99b249182b47425602980b7e0aab235f5), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 25, ts: 32743911865649505083704925822879585, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.038764Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof +[CIPHER] [cn3] 2026-04-01T13:43:39.038774Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof +[CIPHER] [cn3] 2026-04-01T13:43:39.038786Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof +[CIPHER] [cn3] 2026-04-01T13:43:39.038809Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:43:39.038851Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:43:39.038893Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping +[CIPHER] [cn2] 2026-04-01T13:43:39.039312Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 +[CIPHER] [cn2] 2026-04-01T13:43:39.039527Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... +[CIPHER] [cn1] 2026-04-01T13:43:39.040831Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xcbe45a20878c5925995e2bf341fbd09a452c77d3e71df21bc72c9ed7fdbf7949), causation_id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 23, ts: 32743911865968246374554551748557116, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.042281Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss +[CIPHER] [cn1] 2026-04-01T13:43:39.042369Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare +[CIPHER] [cn2] 2026-04-01T13:43:39.043753Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(137) in 11.376083ms +[CIPHER] [cn1] 2026-04-01T13:43:39.045278Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc16150d54bd6eddd75a1cf03a5c7e6410328fbd898b9df21d1e639132895319c), causation_id: EventId(0xcbe45a20878c5925995e2bf341fbd09a452c77d3e71df21bc72c9ed7fdbf7949), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 32, ts: 32743911866052013039393266822445372, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.045479Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(163)` +[CIPHER] [cn1] 2026-04-01T13:43:39.045484Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss +[CIPHER] [cn1] 2026-04-01T13:43:39.049053Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... +[CIPHER] [cn1] 2026-04-01T13:43:39.049063Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... +[CIPHER] [cn1] 2026-04-01T13:43:39.052363Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... +[CIPHER] [cn1] 2026-04-01T13:43:39.052569Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(163) in 7.08525ms +[CIPHER] [cn2] 2026-04-01T13:43:39.051740Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1488fe06904f179c88b331ea1b399ccbc0711e0c3eaeeea4f2eea4f151ecb24e), causation_id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 23, ts: 32743911866077672460399798417119461, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.053170Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss +[CIPHER] [cn2] 2026-04-01T13:43:39.053260Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare +[CIPHER] [cn2] 2026-04-01T13:43:39.058036Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x219d9d89bb1b47aec10690270f5affff4d23d70f31f6f9acc566871298899c33), causation_id: EventId(0x1488fe06904f179c88b331ea1b399ccbc0711e0c3eaeeea4f2eea4f151ecb24e), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 32, ts: 32743911866252879635611891738368229, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.058232Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(141)` +[CIPHER] [cn2] 2026-04-01T13:43:39.058235Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss +[CIPHER] [cn3] 2026-04-01T13:43:39.058123Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xde5359f28b57b1d31d34affa627d9cda753738ed33388299b05bda21228a0a7a), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 33, ts: 32743911865985457186775324176910177, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.058048Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4865ef0d30ce6cfd8bc3f89d97a06763a629d3df3de68827a11a316bfcc259ac), causation_id: EventId(0xc16150d54bd6eddd75a1cf03a5c7e6410328fbd898b9df21d1e639132895319c), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 24, ts: 32743911866240298956153620215789884, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.058806Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss +[CIPHER] [cn1] 2026-04-01T13:43:39.058900Z  INFO e3_keyshare::threshold_keyshare: esi stored +[CIPHER] [cn3] 2026-04-01T13:43:39.058675Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x648fe9ba2fd6e5f02cb5c3dcb0bb90875e4f4b0bc094dbb030a37c1dae387c57), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 34, ts: 32743911865985641654216061272426337, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.059590Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5a900a98094fa8463c94cdd4853a0a2622160f48077e399886863dcf07edd179), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 35, ts: 32743911865985844568400872077494113, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.060475Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x2258334a4d9b212353a9c2cca1f295581596713f2597188ecced454e584a5819), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 36, ts: 32743911865986287290258641106732897, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.061873Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... +[CIPHER] [cn2] 2026-04-01T13:43:39.061885Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... +[CIPHER] [cn3] 2026-04-01T13:43:39.061258Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc6d1ffae189103b35d2498ccc8e9cbf25d2d8ce20fa96ea6452bd4dbec163210), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 37, ts: 32743911865986416417467157073594209, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.061974Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5cfef5f2025a507e162babc77a8ca90bb2aff3146311488712944df3a0e272d3), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 38, ts: 32743911865986527097931599330903905, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.062693Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x578e959bb7a4a1fa5331dc8c5b81300811a5ac04397cc63da4605d27ec7f7099), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 39, ts: 32743911865986656225140115297765217, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.063399Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x72b8d7366d6eef29b0a23c57eccb993840935878da1aa97b15e9a120ea85f5b2), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 40, ts: 32743911865986785352348631264626529, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.064103Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xabfc7576461d0f3d05f257521b931a5d7c856d3aa2ef34344c3cffedf92b700b), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 41, ts: 32743911865986896032813073521936225, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.064808Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb459ae7cf3d461ed243a9ea613c3e1e11aca585201404a6b311d4d29874fc49c), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 42, ts: 32743911865987043606765663198349153, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.065518Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdfa9d1ca4c8043842ca7211dd2517aa308d376aec6ea566957c38730f41fcb8d), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 43, ts: 32743911865987154287230105455658849, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.066209Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... +[CIPHER] [cn2] 2026-04-01T13:43:39.066441Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(141) in 8.206333ms +[CIPHER] [cn3] 2026-04-01T13:43:39.066225Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb2338ca27aa51d87fe9eee66f99dbd3b7ffffb5021f1111c42dcc1beb2fd5693), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 44, ts: 32743911865987283414438621422520161, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.066533Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x838f707cb7f3e91469423f320027c6b22a074f91b72616658eb17390450cd1b1), causation_id: EventId(0x219d9d89bb1b47aec10690270f5affff4d23d70f31f6f9acc566871298899c33), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 24, ts: 32743911866496302870408562981492965, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.067296Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss +[CIPHER] [cn2] 2026-04-01T13:43:39.067392Z  INFO e3_keyshare::threshold_keyshare: esi stored +[CIPHER] [cn3] 2026-04-01T13:43:39.066930Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa65fd2310c216c007cea2f574c0f8a8fa9ff994bafa8b2381569fb61103e6616), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 45, ts: 32743911865987394094903063679829857, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.067665Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3fbe10bd940d30ac6a84f2cf4cc6a35fbf4c4e399d0ef61629b333147515649c), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 46, ts: 32743911865987504775367505937139553, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.068369Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4023e023780b609f190ca2fe69a9136bc759d3715582c3e1e0fa1714b9b1a3fd), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 47, ts: 32743911865987633902576021904000865, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.069131Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 26, ts: 32743911865987836816760832709068641, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:39.069187Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete +[CIPHER] [cn3] 2026-04-01T13:43:39.069326Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(209)` +[CIPHER] [ag] 2026-04-01T13:43:39.069840Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 12, ts: 32743911866554280987032229136183645, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:43:39.069927Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 0 — buffering until GeneratingC5Proof +[CIPHER] [cn4] 2026-04-01T13:43:39.070162Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 12, ts: 32743911866559021800259176208408321, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-04-01T13:43:39.073078Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 12, ts: 32743911866557287806316247539449925, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:43:39.076679Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) +[CIPHER] [cn2] 2026-04-01T13:43:39.084966Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) +[CIPHER] [cn1] 2026-04-01T13:43:39.078793Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), causation_id: EventId(0x4865ef0d30ce6cfd8bc3f89d97a06763a629d3df3de68827a11a316bfcc259ac), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 25, ts: 32743911866684939275306315247941948, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.089238Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof +[CIPHER] [cn1] 2026-04-01T13:43:39.089261Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof +[CIPHER] [cn1] 2026-04-01T13:43:39.089251Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof +[CIPHER] [cn1] 2026-04-01T13:43:39.089275Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:39.089320Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:39.089369Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping +[CIPHER] [cn2] 2026-04-01T13:43:39.086121Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), causation_id: EventId(0x838f707cb7f3e91469423f320027c6b22a074f91b72616658eb17390450cd1b1), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 25, ts: 32743911866837807443445147910559973, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.096425Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof +[CIPHER] [cn2] 2026-04-01T13:43:39.096435Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof +[CIPHER] [cn2] 2026-04-01T13:43:39.096447Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof +[CIPHER] [cn2] 2026-04-01T13:43:39.096459Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:39.096502Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:39.096543Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping +[CIPHER] [cn1] 2026-04-01T13:43:39.101973Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1ac115ab88a7577fd5cb48545844fc33bcbc5360ba32740cafd95d236f69e305), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 33, ts: 32743911866916556593895812378032444, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.102538Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3da487e215f8f7ea7b61c661bd8e37f25b15d6285daba7205876ff79534ace66), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 34, ts: 32743911866916759508080623183100220, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.103165Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x61cbaaefb5b3a7d910ca85d772de74e82613bed38931eb232ea5e14cb047c9ea), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 33, ts: 32743911867049133343553564533872869, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.103383Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x50379dbe76a5ac736b1322b33af7b6def4ec74109feb7bb3e1e3307f40721ea3), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 35, ts: 32743911866916943975521360278616380, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.103754Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8bd358c8277856492a8536325594432f869e659fb6b6c137bd53c5d4773dfc98), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 34, ts: 32743911867049299364250227919837413, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.104223Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9289e0576a62439e83ebe70d3075de815815b8baa26b033b7f2bc866dc8a507f), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 36, ts: 32743911866917220676682465921890620, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.104617Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9bd0daf6a87e47410c35b63a19161d3aa67558e35bdd9bc57c01d3d4533ee0bf), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 35, ts: 32743911867049520725179112434456805, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.104945Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x60bcee8764567c78cf1b8a32a6e0fa1226360c140de825cb544f1300560ddfe5), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 37, ts: 32743911866917386697379129307855164, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.105481Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd11a80a1c3c1e06d89ede339a047f8ec36098711b2e3a5a37ce421e9816ae940), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 36, ts: 32743911867049760532852070658627813, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.105654Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x59025577ff7020ef697f46b02f00f061a6db2c36b29364687a6bc271e53430b2), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 38, ts: 32743911866917515824587645274716476, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.106188Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x62ce5928c38f5b55429f17c2d695bd1ffcda3c169439ebffb07ce3fb0ffa2daf), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 37, ts: 32743911867049871213316512915937509, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.106366Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfff870d844622c0eac7344c0ca448bd6a74fb78aab9778acaa02b66439548e89), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 39, ts: 32743911866917644951796161241577788, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.106893Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xf720b0fa07cf8938e27ae783d8ec490fef090b5609e1db8c7ef601d1f7dc6e7b), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 38, ts: 32743911867050000340525028882798821, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.107075Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3e6075f95167e3232a5fb7525c073eb0b18aeba6b7703beb2c2e5fba5cc7fa5a), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 40, ts: 32743911866917774079004677208439100, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.107599Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x6f8d207ae43192e67380479c16bd09874bec46a5a987ede57b08fdfd01bdf050), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 39, ts: 32743911867050111020989471140108517, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.107787Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x774d69b3d3399b2805c8d01b28d38d56b1bda3bfaeb5cec2cd74404e4e6470af), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 41, ts: 32743911866917884759469119465748796, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.108304Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x878aafa8a8b3975290ae2e391dc2f9c64690892cd4246916cf90029a65935270), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 40, ts: 32743911867050258594942060816521445, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.108520Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x672ca65f7f222fa893f28e8cfb77747accf6f06da8123cb69c81b980b6034958), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 42, ts: 32743911866918069226909856561264956, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.109024Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xde597a223990ce0d1970be50975be3ce743b4c2529db7a49d0215a51f7a18a0c), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 41, ts: 32743911867050369275406503073831141, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.109247Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe5270875992b7c14e8eb0c08dbb6880a2d56ca358a0325d0162accd37295d595), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 43, ts: 32743911866918216800862446237677884, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.109724Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x26daef1b7eee7f99bf89028c481a09c97a78e9cca5286e3433dec7debaaa082c), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 42, ts: 32743911867050516849359092750244069, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.109971Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc87b6508099ca2da14e863cd3ba71d8b0bf9e4abf22b8bb294e38afd43b30227), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 44, ts: 32743911866918345928070962204539196, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.110432Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x98ec1e1f756791b811993d44e745f4c489f806d951aaeb5930b537ba41f8d389), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 43, ts: 32743911867050645976567608717105381, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.110703Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbf3773bafb973453ce1673cbd8ea0050b3c6f99942655822bfb58f42d50ca0cd), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 45, ts: 32743911866918456608535404461848892, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.111141Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5049e528a391315bf4aba588dcb19c51657430d62e4c181f38744a42d73513ea), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 44, ts: 32743911867050756657032050974415077, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.111429Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa435eac8e4c240e6f5c2f28235736ac58638db7cc40056d1397d40ec5068073a), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 46, ts: 32743911866918567288999846719158588, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.111857Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9ae4667dcc5e3a571b69cb40ecbb5f4bb203fda6d7a584a0339dcea0bf40d977), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 45, ts: 32743911867050867337496493231724773, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.112155Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x192777e19edb77b3bfade6c3a715cc005afdcbebcc664d72a5e9765cd4e22a5e), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 47, ts: 32743911866918751756440583814674748, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.112885Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 26, ts: 32743911866918973117369468329294140, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.112947Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete +[CIPHER] [cn1] 2026-04-01T13:43:39.113068Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(68)` +[CIPHER] [cn2] 2026-04-01T13:43:39.112570Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7d01556f246976c989c3677204ed16d9b0198fde170ef4aab7f6db37f0ee9e80), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 46, ts: 32743911867050996464705009198586085, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:39.113523Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 27, ts: 32743911867362414398157372240591164, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-04-01T13:43:39.113529Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 13, ts: 32743911867362580418854037986352897, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:43:39.113538Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 13, ts: 32743911867359628939802240740634973, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:43:39.113602Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 1 — buffering until GeneratingC5Proof +[CIPHER] [cn2] 2026-04-01T13:43:39.113305Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa4d48fd3bec779d893f6f2dbb7309b4a454c86e2e00cac790ab3af5e57220921), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 47, ts: 32743911867051125591913525165447397, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.114171Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 26, ts: 32743911867051291612610188551411941, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:39.114219Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete +[CIPHER] [cn2] 2026-04-01T13:43:39.114345Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(192)` +[CIPHER] [cn5] 2026-04-01T13:43:39.114956Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 13, ts: 32743911867366140640460263958708293, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:43:39.116462Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 27, ts: 32743911867365771705578788795680609, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:43:39.119911Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 28, ts: 32743911867383296112448811453020476, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:43:39.119954Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 14, ts: 32743911867386579632893930395545949, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:43:39.120012Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 2 — buffering until GeneratingC5Proof +[CIPHER] [cn4] 2026-04-01T13:43:39.120011Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 14, ts: 32743911867386800993822818627624705, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:43:39.122947Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 28, ts: 32743911867427642085202010631800673, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-04-01T13:43:39.123148Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 14, ts: 32743911867400543818157732272472133, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:43:39.126088Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 27, ts: 32743911867390232088220527852804325, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:43:39.126129Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 28, ts: 32743911867390453449149412367423717, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:43:40.076585Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:40.171750Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:40.180460Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:47.237900Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:47.238064Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(68) in 8.124991708s +[CIPHER] [cn1] 2026-04-01T13:43:47.238466Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x09dc09daa2ca06b5db87fbb4b3a6dae7a9a66d73c4547651c3b0fabc29f9f2d7), causation_id: EventId(0x1ac115ab88a7577fd5cb48545844fc33bcbc5360ba32740cafd95d236f69e305), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 29, ts: 32743912017236417719408334321383740, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:47.239479Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) +[CIPHER] [cn1] 2026-04-01T13:43:47.248105Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(22)` +[CIPHER] [cn3] 2026-04-01T13:43:47.303327Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:43:47.303514Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(209) in 8.234183208s +[CIPHER] [cn3] 2026-04-01T13:43:47.303804Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(169)` +[CIPHER] [cn3] 2026-04-01T13:43:47.303987Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x49b5196ac58cbe7330a3f59d729b05237cf3bab8b0e31bb563650e130bbb39a3), causation_id: EventId(0xde5359f28b57b1d31d34affa627d9cda753738ed33388299b05bda21228a0a7a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 29, ts: 32743912018444015373449657825068897, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:47.304955Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) +[CIPHER] [cn2] 2026-04-01T13:43:47.350387Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:47.350496Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(192) in 8.236145375s +[CIPHER] [cn2] 2026-04-01T13:43:47.350585Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(130)` +[CIPHER] [cn2] 2026-04-01T13:43:47.350840Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3a8ffca56faba4422cc6ceb600ccec61bd3e375d480fac6b2820ce97f07db988), causation_id: EventId(0x61cbaaefb5b3a7d910ca85d772de74e82613bed38931eb232ea5e14cb047c9ea), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 29, ts: 32743912019310551176312164203911397, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:47.351804Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) +[CIPHER] [cn1] 2026-04-01T13:43:49.098269Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:43:49.137144Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:49.199511Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:43:57.020917Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:43:57.021124Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(169) in 9.71731125s +[CIPHER] [cn3] 2026-04-01T13:43:57.021412Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(234)` +[CIPHER] [cn3] 2026-04-01T13:43:57.021574Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7ffa704dd7abc8c505457a817d5fc46ed03124c3ff54366d8b9774ad176b90d3), causation_id: EventId(0x4023e023780b609f190ca2fe69a9136bc759d3715582c3e1e0fa1714b9b1a3fd), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 30, ts: 32743912197702077137385522899158881, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:43:57.023553Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) +[CIPHER] [cn1] 2026-04-01T13:43:57.068769Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:57.068888Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(22) in 9.820766583s +[CIPHER] [cn1] 2026-04-01T13:43:57.068978Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(249)` +[CIPHER] [cn1] 2026-04-01T13:43:57.069283Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfad9ec73a13bc681878fdf04c28440c7f61ab396fb362a9af70545056e5cb0cf), causation_id: EventId(0x192777e19edb77b3bfade6c3a715cc005afdcbebcc664d72a5e9765cd4e22a5e), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 30, ts: 32743912198583130527834037086746940, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:43:57.071210Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) +[CIPHER] [cn2] 2026-04-01T13:43:57.130783Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:57.130885Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(130) in 9.780294917s +[CIPHER] [cn2] 2026-04-01T13:43:57.130993Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(148)` +[CIPHER] [cn2] 2026-04-01T13:43:57.131268Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xba984caa1b986f8e6571febfd4fc62bb46b8dbca0a8c1b0ea264fec0f667f75c), causation_id: EventId(0xa4d48fd3bec779d893f6f2dbb7309b4a454c86e2e00cac790ab3af5e57220921), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 30, ts: 32743912199726976234356620571728101, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:43:57.133220Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) +[CIPHER] [cn3] 2026-04-01T13:43:58.893800Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:43:59.048481Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:43:59.075017Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:06.399643Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:06.399809Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(234) in 9.378389792s +[CIPHER] [cn3] 2026-04-01T13:44:06.400180Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(38)` +[CIPHER] [cn3] 2026-04-01T13:44:06.400233Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa99c52d12b799e2c80d1d2a5fb3adc299e9aa761c0cf0879056d2502922149e0), causation_id: EventId(0x3fbe10bd940d30ac6a84f2cf4cc6a35fbf4c4e399d0ef61629b333147515649c), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 31, ts: 32743912370708149953115673030002529, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:44:06.402188Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) +[CIPHER] [cn1] 2026-04-01T13:44:06.986762Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:06.986908Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(249) in 9.917923958s +[CIPHER] [cn1] 2026-04-01T13:44:06.986992Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(243)` +[CIPHER] [cn1] 2026-04-01T13:44:06.987401Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9c354c8dd99d3021c8d0ff685bd4c264a1a792eead561a6ea6d9d914d0d2673c), causation_id: EventId(0xa435eac8e4c240e6f5c2f28235736ac58638db7cc40056d1397d40ec5068073a), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 31, ts: 32743912381538251845534623076612412, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:44:06.989408Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) +[CIPHER] [cn2] 2026-04-01T13:44:07.025861Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:44:07.026019Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(148) in 9.89501475s +[CIPHER] [cn2] 2026-04-01T13:44:07.026342Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(87)` +[CIPHER] [cn2] 2026-04-01T13:44:07.026499Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x069f0f11c5417fba19ddd1d93e68577746a2bc5146a710f14de93a2ded3e1fc8), causation_id: EventId(0x7d01556f246976c989c3677204ed16d9b0198fde170ef4aab7f6db37f0ee9e80), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 31, ts: 32743912382259722453001478958242021, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:44:07.028404Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) +[CIPHER] [cn3] 2026-04-01T13:44:08.143705Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:08.694293Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:44:08.708975Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:15.317259Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:15.317422Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(38) in 8.917235292s +[CIPHER] [cn3] 2026-04-01T13:44:15.318622Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(192)` +[CIPHER] [cn3] 2026-04-01T13:44:15.317930Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9d5480f926324a1821db4e9eb9a165d4696dbcd55648e710497a7ad8b8aaa8e7), causation_id: EventId(0xa65fd2310c216c007cea2f574c0f8a8fa9ff994bafa8b2381569fb61103e6616), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 32, ts: 32743912535209111605989076164118369, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:44:15.319824Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) +[CIPHER] [cn2] 2026-04-01T13:44:16.907181Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:44:16.907662Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(87) in 9.881313583s +[CIPHER] [cn2] 2026-04-01T13:44:16.907751Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(21)` +[CIPHER] [cn2] 2026-04-01T13:44:16.909285Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7f8de9fcdcf08f442eec505a67cdaa4251c25174eff7ec5298512b7a491c9ca3), causation_id: EventId(0x9ae4667dcc5e3a571b69cb40ecbb5f4bb203fda6d7a584a0339dcea0bf40d977), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 32, ts: 32743912564544138602926059360901349, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:44:16.911176Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) +[CIPHER] [cn1] 2026-04-01T13:44:16.944209Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:16.945231Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(243) in 9.958230625s +[CIPHER] [cn1] 2026-04-01T13:44:16.947106Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(133)` +[CIPHER] [cn1] 2026-04-01T13:44:16.945565Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x80ec4d08e5c8650a42c19b91a0003ed01c967c4a8e7e5281b9435193dc3c1689), causation_id: EventId(0xbf3773bafb973453ce1673cbd8ea0050b3c6f99942655822bfb58f42d50ca0cd), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 32, ts: 32743912565236795396149777706154300, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:44:16.947433Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) +[CIPHER] [cn3] 2026-04-01T13:44:17.148288Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:44:18.492907Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:18.665944Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:25.654634Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:25.654713Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(192) in 10.336082875s +[CIPHER] [cn3] 2026-04-01T13:44:25.656851Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(108)` +[CIPHER] [cn3] 2026-04-01T13:44:25.655207Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7fe99a7a1e2fb0aa1e2920c4887eb0ca78566b5a7e77c3efed4b50fa4685b797), causation_id: EventId(0xb2338ca27aa51d87fe9eee66f99dbd3b7ffffb5021f1111c42dcc1beb2fd5693), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 33, ts: 32743912725898878926819782308366177, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:44:25.657150Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) +[CIPHER] [cn2] 2026-04-01T13:44:27.317977Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:44:27.318902Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(21) in 10.411137917s +[CIPHER] [cn2] 2026-04-01T13:44:27.319251Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(241)` +[CIPHER] [cn2] 2026-04-01T13:44:27.319372Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xed43ad3fc50175f071fe0317c3443bb5ea1a7a3b1a819b95a5f23b12dd8f2c55), causation_id: EventId(0x5049e528a391315bf4aba588dcb19c51657430d62e4c181f38744a42d73513ea), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 33, ts: 32743912756597397011965007012845797, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:44:27.321279Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) +[CIPHER] [cn3] 2026-04-01T13:44:27.768896Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:27.817542Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:27.818511Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(133) in 10.871389291s +[CIPHER] [cn1] 2026-04-01T13:44:27.818910Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(160)` +[CIPHER] [cn1] 2026-04-01T13:44:27.819106Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8a0cf85e68e387160a8e029ff884ee7590aead3a35a41092c16d5e6b410184a2), causation_id: EventId(0xc87b6508099ca2da14e863cd3ba71d8b0bf9e4abf22b8bb294e38afd43b30227), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 33, ts: 32743912765813593265375108196890940, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:44:27.821022Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) +[CIPHER] [cn2] 2026-04-01T13:44:28.821965Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:29.297041Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:36.150664Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:36.150833Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(108) in 10.493964208s +[CIPHER] [cn3] 2026-04-01T13:44:36.151168Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(225)` +[CIPHER] [cn3] 2026-04-01T13:44:36.151249Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7a4fb24ba3b6e91408a93f78947a1600fdd1e9969924e2cbc220c96eaec133ac), causation_id: EventId(0xdfa9d1ca4c8043842ca7211dd2517aa308d376aec6ea566957c38730f41fcb8d), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 34, ts: 32743912919517749398882607025063777, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:44:36.153293Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) +[CIPHER] [cn2] 2026-04-01T13:44:37.650123Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:44:37.651520Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(241) in 10.332258125s +[CIPHER] [cn2] 2026-04-01T13:44:37.651621Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(134)` +[CIPHER] [cn2] 2026-04-01T13:44:37.651950Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x34d2bfdb5ae7c4eca685f934e9047cc22f1a752ce080a4902931001e6f2be9f8), causation_id: EventId(0x98ec1e1f756791b811993d44e745f4c489f806d951aaeb5930b537ba41f8d389), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 34, ts: 32743912947200815123786678745979109, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:44:37.653820Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) +[CIPHER] [cn3] 2026-04-01T13:44:38.327096Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:38.430948Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:38.432491Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(160) in 10.613568s +[CIPHER] [cn1] 2026-04-01T13:44:38.432598Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(164)` +[CIPHER] [cn1] 2026-04-01T13:44:38.433016Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbad1cf2eda75b0b11f05447f0103733120c277549313fd4c251a9e11cbff78cf), causation_id: EventId(0xe5270875992b7c14e8eb0c08dbb6880a2d56ca358a0325d0162accd37295d595), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 34, ts: 32743912961607168843031625663150396, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:44:38.436885Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) +[CIPHER] [cn2] 2026-04-01T13:44:39.336826Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:39.811668Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:46.000963Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:46.001143Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(225) in 9.849968042s +[CIPHER] [cn3] 2026-04-01T13:44:46.001609Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(189)` +[CIPHER] [cn3] 2026-04-01T13:44:46.001907Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xf60676cf5a82423e791a2a777f40a2a76416eb9518c7372aa91d18cb108ba13a), causation_id: EventId(0xb459ae7cf3d461ed243a9ea613c3e1e11aca585201404a6b311d4d29874fc49c), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 35, ts: 32743913101224081483025277499180897, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:44:46.003970Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) +[CIPHER] [cn2] 2026-04-01T13:44:47.530798Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:44:47.530961Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(134) in 9.879333292s +[CIPHER] [cn2] 2026-04-01T13:44:47.531534Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(236)` +[CIPHER] [cn2] 2026-04-01T13:44:47.531571Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x91b927a6521c62743e6c36f75f2444cd6ba2b4a21cf4a9e0ecc666e0a648b3f4), causation_id: EventId(0x26daef1b7eee7f99bf89028c481a09c97a78e9cca5286e3433dec7debaaa082c), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 35, ts: 32743913129444095034426886848534757, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:44:47.533520Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) +[CIPHER] [cn3] 2026-04-01T13:44:48.019363Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:48.354278Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:48.354495Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(164) in 9.92188875s +[CIPHER] [cn1] 2026-04-01T13:44:48.354705Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(137)` +[CIPHER] [cn1] 2026-04-01T13:44:48.355222Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x687e75b0302ee0501c9ec79d4160e4b9310324704e258b6dfb4b4e2cb1c779c1), causation_id: EventId(0x672ca65f7f222fa893f28e8cfb77747accf6f06da8123cb69c81b980b6034958), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 35, ts: 32743913144636851900278145660647740, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:44:48.357246Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) +[CIPHER] [cn2] 2026-04-01T13:44:49.113985Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:49.834411Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:55.860488Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:44:55.860724Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(189) in 9.859101125s +[CIPHER] [cn3] 2026-04-01T13:44:55.861091Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(29)` +[CIPHER] [cn3] 2026-04-01T13:44:55.861288Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5832eddc70b77cff1c8c5f9d61c4040cfd83254b83fcb18aef525f0169747784), causation_id: EventId(0xabfc7576461d0f3d05f257521b931a5d7c856d3aa2ef34344c3cffedf92b700b), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 36, ts: 32743913283101304204266793259468641, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:44:55.863375Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) +[CIPHER] [cn2] 2026-04-01T13:44:58.483409Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:44:58.484851Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(236) in 10.953304958s +[CIPHER] [cn2] 2026-04-01T13:44:58.484944Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(152)` +[CIPHER] [cn2] 2026-04-01T13:44:58.485523Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x907a2ea149b09cfa116e067945195bdfd460705d569627bebcd1663ef129653a), causation_id: EventId(0xde597a223990ce0d1970be50975be3ce743b4c2529db7a49d0215a51f7a18a0c), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 36, ts: 32743913331507866496689870585485541, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:44:58.488914Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) +[CIPHER] [cn3] 2026-04-01T13:44:58.816899Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:59.635865Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:44:59.636515Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(137) in 11.281802791s +[CIPHER] [cn1] 2026-04-01T13:44:59.636571Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(227)` +[CIPHER] [cn1] 2026-04-01T13:44:59.636890Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0e469fced2a9ae4a30bdf477bf0ca9bf55c226ed3500e1063ed04e5bea5aa115), causation_id: EventId(0x774d69b3d3399b2805c8d01b28d38d56b1bda3bfaeb5cec2cd74404e4e6470af), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 36, ts: 32743913352751948628713031838366012, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:44:59.638846Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) +[CIPHER] [cn2] 2026-04-01T13:45:00.176588Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:01.172468Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:45:06.885839Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:45:06.886001Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(29) in 11.024900625s +[CIPHER] [cn3] 2026-04-01T13:45:06.886136Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(129)` +[CIPHER] [cn3] 2026-04-01T13:45:06.886406Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5e7443df6b11ff9a3ac8aea60e1e9f0cf4966e7014730b137f27da144ba9db83), causation_id: EventId(0x72b8d7366d6eef29b0a23c57eccb993840935878da1aa97b15e9a120ea85f5b2), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 37, ts: 32743913486481878045487459628975969, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:45:06.888986Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) +[CIPHER] [cn2] 2026-04-01T13:45:08.751331Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:45:08.752312Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(152) in 10.267359084s +[CIPHER] [cn2] 2026-04-01T13:45:08.752649Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(117)` +[CIPHER] [cn2] 2026-04-01T13:45:08.752824Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe227f48cded04319df38103bbe8dd40a5da7a5d9d7dee286805cba98860b253a), causation_id: EventId(0x878aafa8a8b3975290ae2e391dc2f9c64690892cd4246916cf90029a65935270), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 37, ts: 32743913520909313211412701644871909, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:45:08.754694Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) +[CIPHER] [cn3] 2026-04-01T13:45:09.106686Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:10.155924Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:10.156766Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(227) in 10.520187542s +[CIPHER] [cn1] 2026-04-01T13:45:10.157269Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(189)` +[CIPHER] [cn1] 2026-04-01T13:45:10.157319Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5af80d7043a205676cd785eb7e5a18c17fb31eef3c9c715ad6b0719e42a56935), causation_id: EventId(0x3e6075f95167e3232a5fb7525c073eb0b18aeba6b7703beb2c2e5fba5cc7fa5a), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 37, ts: 32743913546817267200847775123274044, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:45:10.159255Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) +[CIPHER] [cn2] 2026-04-01T13:45:10.328146Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:11.740600Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:45:17.164843Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:45:17.165498Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(129) in 10.279357042s +[CIPHER] [cn3] 2026-04-01T13:45:17.165613Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(141)` +[CIPHER] [cn3] 2026-04-01T13:45:17.165953Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4804ccefbd4f51b39f5892956966071cef3d98cb5f64533e7cc083c65d10bdf6), causation_id: EventId(0x578e959bb7a4a1fa5331dc8c5b81300811a5ac04397cc63da4605d27ec7f7099), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 38, ts: 32743913676104870156535542403270497, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:45:17.167834Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) +[CIPHER] [cn2] 2026-04-01T13:45:19.026827Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:45:19.028259Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(117) in 10.275601292s +[CIPHER] [cn2] 2026-04-01T13:45:19.028532Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(115)` +[CIPHER] [cn2] 2026-04-01T13:45:19.028718Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x39b743fc63126fa6f89dbfaeffc5beebfc17397f000d5b63f0601e6a75e04312), causation_id: EventId(0x6f8d207ae43192e67380479c16bd09874bec46a5a987ede57b08fdfd01bdf050), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 38, ts: 32743913710466764040766894382274789, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:45:19.030602Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) +[CIPHER] [cn3] 2026-04-01T13:45:19.337146Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:20.776598Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:20.777218Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(189) in 10.619936459s +[CIPHER] [cn1] 2026-04-01T13:45:20.777348Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(248)` +[CIPHER] [cn1] 2026-04-01T13:45:20.777672Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa08cb290f6e99795516155a21483ad4aa39faaf0f85bb512d7e99f7760d49969), causation_id: EventId(0xfff870d844622c0eac7344c0ca448bd6a74fb78aab9778acaa02b66439548e89), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 38, ts: 32743913742729252428713434201356604, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:45:20.779817Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) +[CIPHER] [cn2] 2026-04-01T13:45:20.784008Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:22.516964Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:45:27.305398Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:45:27.306655Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(141) in 10.141029875s +[CIPHER] [cn3] 2026-04-01T13:45:27.306750Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(207)` +[CIPHER] [cn3] 2026-04-01T13:45:27.306936Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xff646c1605c3c808d192f8030f32baefad60e5f2e26fbfc93b2b473b0e2f6655), causation_id: EventId(0x5cfef5f2025a507e162babc77a8ca90bb2aff3146311488712944df3a0e272d3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 39, ts: 32743913863176197946843677740730209, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:45:27.311117Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) +[CIPHER] [cn2] 2026-04-01T13:45:29.433431Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:45:29.434565Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(115) in 10.406023875s +[CIPHER] [cn2] 2026-04-01T13:45:29.434712Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(226)` +[CIPHER] [cn2] 2026-04-01T13:45:29.434821Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x78caddd9d2049a1025a2ecb09323820305bece713b3db14001198f33c33929bb), causation_id: EventId(0xf720b0fa07cf8938e27ae783d8ec490fef090b5609e1db8c7ef601d1f7dc6e7b), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 39, ts: 32743913902429227575475043621165285, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:45:29.438967Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) +[CIPHER] [cn3] 2026-04-01T13:45:29.461071Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:45:31.078998Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:31.312811Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:31.313414Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(248) in 10.536060292s +[CIPHER] [cn1] 2026-04-01T13:45:31.313503Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(45)` +[CIPHER] [cn1] 2026-04-01T13:45:31.313581Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x826da0010d76cf5786bbf9604855041a658567a66f01b4c9d12b9c4fc5507523), causation_id: EventId(0x59025577ff7020ef697f46b02f00f061a6db2c36b29364687a6bc271e53430b2), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 39, ts: 32743913937087948018596454195165500, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:45:31.315497Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) +[CIPHER] [cn1] 2026-04-01T13:45:33.139776Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:45:37.429771Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:45:37.430848Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(207) in 10.1240895s +[CIPHER] [cn3] 2026-04-01T13:45:37.431235Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(20)` +[CIPHER] [cn3] 2026-04-01T13:45:37.431278Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xae5e060d88924038937a892a2113ab0f7daaa466ed284a80b8071fc47029938a), causation_id: EventId(0xc6d1ffae189103b35d2498ccc8e9cbf25d2d8ce20fa96ea6452bd4dbec163210), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 40, ts: 32743914049934466043476888277714785, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:45:37.433222Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) +[CIPHER] [cn2] 2026-04-01T13:45:39.370599Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:45:39.370683Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(226) in 9.935963s +[CIPHER] [cn2] 2026-04-01T13:45:39.370746Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(231)` +[CIPHER] [cn2] 2026-04-01T13:45:39.371067Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x18d9f4454fecfec0a52448c8605c9ca54408641deded9c7dfa39a10c2c8c48d1), causation_id: EventId(0x62ce5928c38f5b55429f17c2d695bd1ffcda3c169439ebffb07ce3fb0ffa2daf), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 40, ts: 32743914085717958259748666852006117, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:45:39.373065Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) +[CIPHER] [cn3] 2026-04-01T13:45:39.504078Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:45:41.075526Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:41.389823Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:41.389907Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(45) in 10.076364s +[CIPHER] [cn1] 2026-04-01T13:45:41.389997Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(93)` +[CIPHER] [cn1] 2026-04-01T13:45:41.390329Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb37d55e369edd2f9c7dcb207c53c56ec681893e9cc8723eb07a4b3aac25d6430), causation_id: EventId(0x60bcee8764567c78cf1b8a32a6e0fa1226360c140de825cb544f1300560ddfe5), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 40, ts: 32743914122966601570818898472892732, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:45:41.392228Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) +[CIPHER] [cn1] 2026-04-01T13:45:43.007369Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:45:47.071603Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:45:47.071771Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(20) in 9.640529667s +[CIPHER] [cn3] 2026-04-01T13:45:47.072850Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(128)` +[CIPHER] [cn3] 2026-04-01T13:45:47.072243Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb33c2fd166d95f8d3e409580b34e4557c8276835275774568546bdad8c87fefe), causation_id: EventId(0x2258334a4d9b212353a9c2cca1f295581596713f2597188ecced454e584a5819), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 41, ts: 32743914227778289726257736867612513, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:45:47.075269Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) +[CIPHER] [cn3] 2026-04-01T13:45:48.837368Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base +[CIPHER] [cn2] 2026-04-01T13:45:49.618735Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:45:49.619647Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(231) in 10.248887166s +[CIPHER] [cn2] 2026-04-01T13:45:49.619748Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(107)` +[CIPHER] [cn2] 2026-04-01T13:45:49.619907Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa78567cf7ea445b267123cf3c2b49fa30bf9b6ca1171278d19b0f4323e8ec65c), causation_id: EventId(0xd11a80a1c3c1e06d89ede339a047f8ec36098711b2e3a5a37ce421e9816ae940), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 41, ts: 32743914274778250889572313463806181, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:45:49.623985Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) +[CIPHER] [cn3] 2026-04-01T13:45:50.664353Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn2] 2026-04-01T13:45:51.360452Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base +[CIPHER] [cn1] 2026-04-01T13:45:51.615919Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:45:51.616777Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(93) in 10.226772792s +[CIPHER] [cn1] 2026-04-01T13:45:51.616866Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(243)` +[CIPHER] [cn1] 2026-04-01T13:45:51.617254Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xda84e0bf3cb84fee4f9b6d2e92224954ab3e8e3e8d2fc94e849118f28d891328), causation_id: EventId(0x9289e0576a62439e83ebe70d3075de815815b8baa26b033b7f2bc866dc8a507f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 41, ts: 32743914311618870668476163512498492, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:45:51.619412Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) +[CIPHER] [cn2] 2026-04-01T13:45:52.706923Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn1] 2026-04-01T13:45:52.961897Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base +[CIPHER] [cn1] 2026-04-01T13:45:54.000467Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn3] 2026-04-01T13:46:11.912337Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn2] 2026-04-01T13:46:14.235614Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn3] 2026-04-01T13:46:17.077657Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn1] 2026-04-01T13:46:18.422942Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn2] 2026-04-01T13:46:19.625942Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn1] 2026-04-01T13:46:21.621157Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn3] 2026-04-01T13:46:23.112350Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn2] 2026-04-01T13:46:25.118300Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn1] 2026-04-01T13:46:28.427913Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn3] 2026-04-01T13:46:30.267003Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:46:30.267872Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(128) in 43.195009833s +[CIPHER] [cn3] 2026-04-01T13:46:30.268371Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(139)` +[CIPHER] [cn3] 2026-04-01T13:46:30.268452Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x09b6dadabba1329aec49a9bd0a8af90043e340cc3ce67abf68c358209832415c), causation_id: EventId(0x5a900a98094fa8463c94cdd4853a0a2622160f48077e399886863dcf07edd179), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 42, ts: 32743915024606244810945110714058593, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:46:30.269453Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) +[CIPHER] [cn3] 2026-04-01T13:46:32.115565Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base +[CIPHER] [cn2] 2026-04-01T13:46:32.868389Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:46:32.869302Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(107) in 43.249542125s +[CIPHER] [cn2] 2026-04-01T13:46:32.869819Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(117)` +[CIPHER] [cn2] 2026-04-01T13:46:32.869996Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe938991f5b886b33a2dc775a2cce2ca8357f42a4d9cd4f3a34db9940a0f4cf4b), causation_id: EventId(0x9bd0daf6a87e47410c35b63a19161d3aa67558e35bdd9bc57c01d3d4533ee0bf), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 42, ts: 32743915072594010672662760089737445, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:46:32.870989Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) +[CIPHER] [cn3] 2026-04-01T13:46:33.918492Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn2] 2026-04-01T13:46:34.620573Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base +[CIPHER] [cn1] 2026-04-01T13:46:35.932797Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:46:35.933994Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(243) in 44.317118584s +[CIPHER] [cn1] 2026-04-01T13:46:35.934126Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(53)` +[CIPHER] [cn1] 2026-04-01T13:46:35.934526Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x60c90491d496f886f976d28a8994231410866839c3313e20b8b8cff2ea27f5b6), causation_id: EventId(0x50379dbe76a5ac736b1322b33af7b6def4ec74109feb7bb3e1e3307f40721ea3), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 42, ts: 32743915129127544321175610513848636, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:46:35.935557Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) +[CIPHER] [cn2] 2026-04-01T13:46:36.044286Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn1] 2026-04-01T13:46:36.882866Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base +[CIPHER] [cn1] 2026-04-01T13:46:37.887182Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 +[CIPHER] [cn3] 2026-04-01T13:46:52.068762Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn2] 2026-04-01T13:46:54.653321Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn1] 2026-04-01T13:46:59.023663Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 +[CIPHER] [cn3] 2026-04-01T13:47:00.271931Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn3] 2026-04-01T13:47:01.833870Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn2] 2026-04-01T13:47:02.883202Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn2] 2026-04-01T13:47:03.759514Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn1] 2026-04-01T13:47:05.936405Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" +[CIPHER] [cn1] 2026-04-01T13:47:08.395712Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 +[CIPHER] [cn3] 2026-04-01T13:47:09.171464Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.172210Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(139) in 38.903830917s +[CIPHER] [cn3] 2026-04-01T13:47:09.174868Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8bd580b0ff621cc53052b7c7d0303a997f43523eb9d9723e683a88b088f01213), causation_id: EventId(0x648fe9ba2fd6e5f02cb5c3dcb0bb90875e4f4b0bc094dbb030a37c1dae387c57), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 43, ts: 32743915742303017375199883897833313, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.175857Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) +[CIPHER] [cn3] 2026-04-01T13:47:09.175860Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.177350Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 0 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) +[CIPHER] [cn3] 2026-04-01T13:47:09.177521Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties +[CIPHER] [cn3] 2026-04-01T13:47:09.178767Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd0fcc05f7fae71a4dd2746ac8ab346bf34725e2924a585c23ea5d1c71238cdfb), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 44, ts: 32743915742358173139980275457165153, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.179285Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x8249cd88eb3ea3ebd22868f6f985c9e0616a762b29a82e5d3cdda5fccf9a6db0), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 45, ts: 32743915742358283820444717714474849, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.179790Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xda23c7747295f71955c7672efc7872b08cc06f589222a4741ec1f34cdacf6a98), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 46, ts: 32743915742358376054165086262232929, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.180293Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xc0a4b3cc3ac0ea74e28a6f91e7a36757f95996874af30dff70a3c0e189d59ad7), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 47, ts: 32743915742358468287885454809991009, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.181730Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x53e00fced5e08d863172fcb6d9be82c5f0218e8af3a65068bf3e36a835fced84), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 48, ts: 32743915742358708095558413034162017, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.183155Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x42d067edc502ecaffb5a3ef6cbadc9640677727147e6d6bed0c58030e26d4f32), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 49, ts: 32743915742358929456487297548781409, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.184573Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9f3658aa931d2c6f84f59eeb133d9a551fbbdd2f824af922b0a135280ab0033a), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 50, ts: 32743915742359169264160255772952417, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.194241Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb4f24cee009199af2f93b459ef748ab6551bb39cf809582aefa2c4fd9be31556), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 55, ts: 32743915742360331409036899474704225, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.186623Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xf47cd453c89c6918cf8228cd44559f3f3d05c8373c83531b0a527ee27da81655), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 51, ts: 32743915742359390625089140287571809, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.188031Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4c2efb2fc4e81e1376a18dcf1cdcd340f55faaec67287a54ff2851d3f3732770), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 52, ts: 32743915742359630432762098511742817, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.195667Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x49fde9e4b9bea0ec82ddba02898a4a9b4eb0f6107d282c53ea0456658e056097), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 56, ts: 32743915742360571216709857698875233, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.197094Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6c63402b757390ea6c19b5bfda3fa00017a2933bcf7e8ab0c3cfa5a0639c29ca), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 57, ts: 32743915742360792577638742213494625, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.198513Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x072ceda5a33adfec042fa5e9fd57125ea42e937e3e5c3c7abdc89a288212e3d7), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 58, ts: 32743915742361032385311700437665633, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.190566Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x712e1ae452c9d0b755db302f4d8e77542c81338a9ae43a2683c68ab3cb689c45), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 53, ts: 32743915742359870240435056735913825, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.192818Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x01c48091cffafe421a547225af2dff9176d617511065e8d8764191fe728a37e7), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 54, ts: 32743915742360091601363941250533217, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.199937Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xee05cf156588c2727455d0a2cceba18d33d402c8b0be1bd0741e56320cea34c4), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 59, ts: 32743915742361382873449100919146337, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.209991Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xc44c1140a4d1b33dff494353b895ce39b0b5989c5beb2ed8bdffe5d44bb4036a), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 60, ts: 32743915742362858612974997683275617, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.217576Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x6592b64bc1b0759e8e2de6c04dffe94745cd5ac5bcf6fea9363c3f909a5282fc), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 61, ts: 32743915742364205225292378480543585, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.224479Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 0 (E3 31337:0) +[CIPHER] [cn3] 2026-04-01T13:47:09.224611Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn3] 2026-04-01T13:47:09.224685Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 1 (E3 31337:0) +[CIPHER] [cn3] 2026-04-01T13:47:09.224817Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn3] 2026-04-01T13:47:09.224886Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 2 (E3 31337:0) +[CIPHER] [cn3] 2026-04-01T13:47:09.225019Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn3] 2026-04-01T13:47:09.225133Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.225175Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.225200Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.225227Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.225276Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.225354Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.225455Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.225577Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.225766Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.226006Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.226262Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.226553Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.226874Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.227230Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.227615Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:09.228031Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 0), forwarding to collector! +[CIPHER] [cn3] 2026-04-01T13:47:09.228034Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-04-01T13:47:09.228035Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn3] 2026-04-01T13:47:09.228057Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn3] 2026-04-01T13:47:09.228058Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 +[CIPHER] [cn3] 2026-04-01T13:47:09.228060Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 +[CIPHER] [cn3] 2026-04-01T13:47:09.228063Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 6.084µs +[CIPHER] [cn3] 2026-04-01T13:47:09.252629Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-05-01T13:47:09.224609Z }, value: }), ctx: EventContext { id: EventId(0x10734e27a97d70bfb672658808f4f878d1340503fba976d992d750be59072869), causation_id: EventId(0xee05cf156588c2727455d0a2cceba18d33d402c8b0be1bd0741e56320cea34c4), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 48, ts: 32743915743230021605136009995192161, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.260083Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-05-01T13:47:09.224817Z }, value: }), ctx: EventContext { id: EventId(0x11c466d6ac7a8b17e93d8bf09783ab57d41bd51a2d75d2ebafffe139b0313ac7), causation_id: EventId(0xc44c1140a4d1b33dff494353b895ce39b0b5989c5beb2ed8bdffe5d44bb4036a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 49, ts: 32743915743233766294182973034170209, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:09.270945Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-05-01T13:47:09.225019Z }, value: }), ctx: EventContext { id: EventId(0x271e858e8f03938506f72a5fcbb11a469d07b0fddc97e27bb48242aaa069f008), causation_id: EventId(0x6592b64bc1b0759e8e2de6c04dffe94745cd5ac5bcf6fea9363c3f909a5282fc), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 50, ts: 32743915743237492536485862363596641, aggregate_id: AggregateId(0), block: Some(104), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:09.347922Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-05-01T13:47:09Z }, value: }), ctx: EventContext { id: EventId(0x96f7da0f38f8753a0eb80e49058beceb98314b328aede7225bb2fab361954509), causation_id: EventId(0x96f7da0f38f8753a0eb80e49058beceb98314b328aede7225bb2fab361954509), origin_id: EventId(0x96f7da0f38f8753a0eb80e49058beceb98314b328aede7225bb2fab361954509), seq: 48, ts: 32743915745492717679961297497643237, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:47:09.348657Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-05-01T13:47:09Z }, value: }), ctx: EventContext { id: EventId(0x5b74d1ba36d2fdee1b8457179dca62fbab52ecdd0263eeedd1c3e899d2e8163b), causation_id: EventId(0x5b74d1ba36d2fdee1b8457179dca62fbab52ecdd0263eeedd1c3e899d2e8163b), origin_id: EventId(0x5b74d1ba36d2fdee1b8457179dca62fbab52ecdd0263eeedd1c3e899d2e8163b), seq: 48, ts: 32743915745508803240793570618276156, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:47:09.355972Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x4fd103a81a20f00042c3af53cf7329ae3afcd62199b4a25e5e71951e482243f6), causation_id: EventId(0x96f7da0f38f8753a0eb80e49058beceb98314b328aede7225bb2fab361954509), origin_id: EventId(0x96f7da0f38f8753a0eb80e49058beceb98314b328aede7225bb2fab361954509), seq: 43, ts: 32743915745645272253450875489507557, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:09.362879Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 2), forwarding to collector! +[CIPHER] [cn2] 2026-04-01T13:47:09.362887Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn2] 2026-04-01T13:47:09.362884Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes +[CIPHER] [cn2] 2026-04-01T13:47:09.362898Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn2] 2026-04-01T13:47:09.362899Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 +[CIPHER] [cn2] 2026-04-01T13:47:09.362900Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 +[CIPHER] [cn2] 2026-04-01T13:47:09.362903Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 5.083µs +[CIPHER] [cn1] 2026-04-01T13:47:09.356778Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xf12d096e1e51664e45053aa64a3c086b1476b4bddc7c411c97eb4b27e3c0654b), causation_id: EventId(0x5b74d1ba36d2fdee1b8457179dca62fbab52ecdd0263eeedd1c3e899d2e8163b), origin_id: EventId(0x5b74d1ba36d2fdee1b8457179dca62fbab52ecdd0263eeedd1c3e899d2e8163b), seq: 43, ts: 32743915745660066542197988941527356, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:09.363570Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 1), forwarding to collector! +[CIPHER] [cn1] 2026-04-01T13:47:09.363574Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes +[CIPHER] [cn1] 2026-04-01T13:47:09.363575Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn1] 2026-04-01T13:47:09.363581Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn1] 2026-04-01T13:47:09.363582Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 +[CIPHER] [cn1] 2026-04-01T13:47:09.363583Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 +[CIPHER] [cn1] 2026-04-01T13:47:09.363585Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 3.584µs +[CIPHER] [cn2] 2026-04-01T13:47:10.449862Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.450725Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(117) in 37.580892875s +[CIPHER] [cn2] 2026-04-01T13:47:10.450986Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x99ef829b6303c05a88d03dff79ff615e2d5b48e3d2ebb71af9ed1166c7c27399), causation_id: EventId(0x8bd358c8277856492a8536325594432f869e659fb6b6c137bd53c5d4773dfc98), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 44, ts: 32743915765848718212043861415450853, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.453098Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) +[CIPHER] [cn2] 2026-04-01T13:47:10.453109Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.456134Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 2 (signer: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC) +[CIPHER] [cn2] 2026-04-01T13:47:10.456399Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties +[CIPHER] [cn2] 2026-04-01T13:47:10.463624Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6b20978dcd4825ab7de1206f38175350665a3e4d1c003a67811f3cff8636d370), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 45, ts: 32743915765947740334231534288525541, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.464147Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd78dc9d9ba26986a4622fc5771339d707528b662e8fc01058fa486cd7f939c4f), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 46, ts: 32743915765947943248416345093593317, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.464642Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe14d6cfc2a7e587a384c094b6f8289083f0b9594d39cce08a4e390b1bdc8f56b), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 47, ts: 32743915765948072375624861060454629, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.465136Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x17a7f149c2c2eb55fa69dbe24fa1231485a7954301f1d2c4e22ac60e4dbc280b), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 48, ts: 32743915765948219949577450736867557, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.466557Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa5c0265006a36e1df07fa9388f28aab72d1f7986684f8d54f9a010e8820b4c5c), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 49, ts: 32743915765948551990970777508796645, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.467986Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6cd9e7f8b20d89e1f7afb54581203e37e5f0d9ff6cb2e74275a4746be986e42e), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 50, ts: 32743915765948920925852251699828965, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.469405Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x3dbf57d3492dec7446994da2d5e2dd6eaaf7821a71c3430405c7628adc002201), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 51, ts: 32743915765949271413989652181309669, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.470807Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x14804250f5e648c443f199f819e5e0b37523a98d757b01e007ddf74c56c28605), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 52, ts: 32743915765949621902127052662790373, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.472218Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa42089b3617474c7b4910e60e02c617a8631b6cc9845574e288356149dc28d28), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 53, ts: 32743915765949972390264453144271077, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.473632Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xbbe5bdf35800651032ce180f6b13165f7b3aeec77724742d20fd184f4c70caa9), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 54, ts: 32743915765950322878401853625751781, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.475028Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4f4948c88f20bce35a4a90f4270a48055005edbc586bdd08f6e3cd09225c0f7f), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 55, ts: 32743915765950673366539254107232485, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.476427Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x1e545484ba299f7632b0d54ce7c24a89225b962e7f9d60e60e94565203261db6), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 56, ts: 32743915765951023854676654588713189, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.477829Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe5bb945cb018815a03be39cf9e9fb0b0454bd806bfdb21e7b5124933356220f4), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 57, ts: 32743915765951374342814055070193893, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.479232Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa551e235a3397b7a1c8ab1bbb53a03892f6b899b8e0cf3b4f8989d11993364ff), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 58, ts: 32743915765951724830951455551674597, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.481484Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa652f6364c0db07ea5697be5f40390c351979f5bf166245ddaa4d6daf58e6890), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 59, ts: 32743915765952075319088856033155301, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.484630Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x195c3e49614c2fa5632632a7e0e9ec9c65e852a7273d06b31b58aa121c531c44), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 60, ts: 32743915765952554934434772481497317, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.494386Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x7fd23b38479a2bb5d14eeb26d6fae0144c210b27be205ba08b3a5d9c1a3543c7), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 61, ts: 32743915765954879224188059885000933, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.501205Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xa07eabfd9b59ebc6f8301718a474e525ab1462c3a644727f9fec91ed77abb9e3), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 62, ts: 32743915765956816132315799387920613, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.508571Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 0 (E3 31337:0) +[CIPHER] [cn2] 2026-04-01T13:47:10.508700Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn2] 2026-04-01T13:47:10.508770Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 1 (E3 31337:0) +[CIPHER] [cn2] 2026-04-01T13:47:10.508888Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn2] 2026-04-01T13:47:10.508956Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 2 (E3 31337:0) +[CIPHER] [cn2] 2026-04-01T13:47:10.509084Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn2] 2026-04-01T13:47:10.509177Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.509198Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.509223Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.509250Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.509298Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.509385Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.509498Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.509651Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.509866Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.510102Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.510366Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.510664Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.510950Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.511262Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.511601Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:10.511971Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 2), forwarding to collector! +[CIPHER] [cn2] 2026-04-01T13:47:10.511974Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes +[CIPHER] [cn2] 2026-04-01T13:47:10.511975Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn2] 2026-04-01T13:47:10.512002Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn2] 2026-04-01T13:47:10.512003Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 +[CIPHER] [cn2] 2026-04-01T13:47:10.512004Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 +[CIPHER] [cn2] 2026-04-01T13:47:10.512005Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 3.959µs +[CIPHER] [cn2] 2026-04-01T13:47:10.521778Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-05-01T13:47:10.508699Z }, value: }), ctx: EventContext { id: EventId(0x91a4a180523cd130027fea59f0dedae9da05d82108124c1b698e761cb6ea38b3), causation_id: EventId(0x195c3e49614c2fa5632632a7e0e9ec9c65e852a7273d06b31b58aa121c531c44), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 49, ts: 32743915766917227415769413483256037, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.531535Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-05-01T13:47:10.508888Z }, value: }), ctx: EventContext { id: EventId(0x4ca27290ced4010f2765a36c10719178a21736824a219f773ae4989f2308ebae), causation_id: EventId(0x7fd23b38479a2bb5d14eeb26d6fae0144c210b27be205ba08b3a5d9c1a3543c7), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 50, ts: 32743915766920713850399344588511461, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:10.539796Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-05-01T13:47:10.509084Z }, value: }), ctx: EventContext { id: EventId(0x8f0604cb16b8930fb8895bd85d58a4d25a0a3081bee8e322b0752de8462632f7), causation_id: EventId(0xa07eabfd9b59ebc6f8301718a474e525ab1462c3a644727f9fec91ed77abb9e3), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 51, ts: 32743915766924310965493717951076581, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:10.601643Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-05-01T13:47:10Z }, value: }), ctx: EventContext { id: EventId(0xe90ecc41ba28f4bebaee0ce302bda608f7305e2cd8f55d87a47fbbc91678a148), causation_id: EventId(0xe90ecc41ba28f4bebaee0ce302bda608f7305e2cd8f55d87a47fbbc91678a148), origin_id: EventId(0xe90ecc41ba28f4bebaee0ce302bda608f7305e2cd8f55d87a47fbbc91678a148), seq: 49, ts: 32743915768626705635824149732686140, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:47:10.600578Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-05-01T13:47:10Z }, value: }), ctx: EventContext { id: EventId(0xc6128994cc779773e1bbf757dba7569b12a9d3d4c0720357349b7233ee13c157), causation_id: EventId(0xc6128994cc779773e1bbf757dba7569b12a9d3d4c0720357349b7233ee13c157), origin_id: EventId(0xc6128994cc779773e1bbf757dba7569b12a9d3d4c0720357349b7233ee13c157), seq: 51, ts: 32743915768607225874082313862874977, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:47:10.609720Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x716659aa3257a72086df984135dd4f8d590bbe9ace1e8cfc3b4556ac54cebfec), causation_id: EventId(0xe90ecc41ba28f4bebaee0ce302bda608f7305e2cd8f55d87a47fbbc91678a148), origin_id: EventId(0xe90ecc41ba28f4bebaee0ce302bda608f7305e2cd8f55d87a47fbbc91678a148), seq: 44, ts: 32743915768775552413754912104675644, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:10.616396Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 1), forwarding to collector! +[CIPHER] [cn1] 2026-04-01T13:47:10.616415Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 +[CIPHER] [cn1] 2026-04-01T13:47:10.616417Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 5.417µs +[CIPHER] [cn1] 2026-04-01T13:47:10.616400Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes +[CIPHER] [cn1] 2026-04-01T13:47:10.616402Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn1] 2026-04-01T13:47:10.616412Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn1] 2026-04-01T13:47:10.616414Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 +[CIPHER] [cn3] 2026-04-01T13:47:10.610062Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xb132cbbc2ec5f7407c50b468cbb1bb9aa6e5922f6e5a64b370c0069c26a65f6e), causation_id: EventId(0xc6128994cc779773e1bbf757dba7569b12a9d3d4c0720357349b7233ee13c157), origin_id: EventId(0xc6128994cc779773e1bbf757dba7569b12a9d3d4c0720357349b7233ee13c157), seq: 62, ts: 32743915768782433049294407184123745, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:10.616807Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 0), forwarding to collector! +[CIPHER] [cn3] 2026-04-01T13:47:10.616812Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-04-01T13:47:10.616813Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn3] 2026-04-01T13:47:10.616823Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn3] 2026-04-01T13:47:10.616824Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 +[CIPHER] [cn3] 2026-04-01T13:47:10.616825Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 +[CIPHER] [cn3] 2026-04-01T13:47:10.616826Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 3.167µs +[CIPHER] [cn1] 2026-04-01T13:47:12.768591Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.769141Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(53) in 36.835006041s +[CIPHER] [cn1] 2026-04-01T13:47:12.769302Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x72ec4baee92da8242fb2fb6b874ca1df1ff2f9e3a2c39ebeb3e13426e66077d7), causation_id: EventId(0x3da487e215f8f7ea7b61c661bd8e37f25b15d6285daba7205876ff79534ace66), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 45, ts: 32743915808615668119276157983160636, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.770277Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) +[CIPHER] [cn1] 2026-04-01T13:47:12.770281Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.771786Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 1 (signer: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8) +[CIPHER] [cn1] 2026-04-01T13:47:12.771959Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties +[CIPHER] [cn1] 2026-04-01T13:47:12.780244Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x8c0de814555ea380ed668d6698e79dec1c7626e4645edd912a474c05f1fc0231), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 46, ts: 32743915808663814121308539912878396, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.780748Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb791b568406f6eec546162a8675f09acea8f60e603eccda9adfc409ebcacee7a), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 47, ts: 32743915808663943248517055879739708, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.781265Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xf49de7179b409dba6c7ca741fe422c5b66642f5a567ebbd0da71d1740d2d1ea7), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 48, ts: 32743915808664053928981498137049404, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.781777Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd6f47e95aa77788d4aa0f8e12e6d0ce78de7396cac3be1b4b2d319b78bde1df2), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 49, ts: 32743915808664146162701866684807484, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.783221Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x2526a81a2ba4b58ead9d3ac4cd711afa9c28df11667392b2c749de30d530131e), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 50, ts: 32743915808664441310607046037633340, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.784692Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6023c9c1ee73fc353ef3fd955dceb0bc45edbfa0c02615517aa6332ef8751f74), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 51, ts: 32743915808664681118280004261804348, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.786091Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xde843aa2923041ee57a565e825b82b4c74d114b387efb742b4ae8ad9b843f94b), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 52, ts: 32743915808664920925952962485975356, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.787562Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x886b51b30099077817f00c1bb466d003740a3ed1afbc5440ba5395edd709d50f), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 53, ts: 32743915808665142286881847000594748, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.788995Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xf9e1536d32e4beee49a29da8f7780324e1d38b9963f02fc49d29b8a6d776d338), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 54, ts: 32743915808665363647810731515214140, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.790425Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xee1850f861c85c3f2f2d04e3e6de720a32d0193755bb2a2beb1aaf9cdbf6deaf), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 55, ts: 32743915808665640348971837158488380, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.791864Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x03c40f2e6ee0432f13b97001cd24f569c2eeb228886a1d00da74970e8f9178b6), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 56, ts: 32743915808665861709900721673107772, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.793352Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd87171060cea9d9fc25512f1ffe135790796452972e1d37bfe4596380d045795), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 57, ts: 32743915808666083070829606187727164, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.794802Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x0069eff3d4ad91981b3a6668a072e62a3cb895729f67e7ff81f991e6cad039bd), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 58, ts: 32743915808666304431758490702346556, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.796243Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x702c0fe8894c920b87aa20e39359dfe4b2fd7aa5a7f80400c65405384f57ba3c), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 59, ts: 32743915808666525792687375216965948, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.797712Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x5613cfdb21b9979dae044195dfab8af753ac9ca1c5f7b019b305b27e87179c54), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 60, ts: 32743915808666747153616259731585340, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.799181Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x7641cb089d25de1fa6a94017f034abbfc8d0059f6cf0b9d6d3d667652cbe34a1), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 61, ts: 32743915808667023854777365374859580, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.806060Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x0254047e492a660190b489cfdec2ceb2f6e95ea81521cd9f9cd48e75412b1f53), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 62, ts: 32743915808668628721511778105850172, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.812758Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x4c40e89046a6f332d2e5625275850c82c4dfca986a78c9c6246f50d6e2739115), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 63, ts: 32743915808669919993596937774463292, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.819508Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 0 (E3 31337:0) +[CIPHER] [cn1] 2026-04-01T13:47:12.819641Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn1] 2026-04-01T13:47:12.819718Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 1 (E3 31337:0) +[CIPHER] [cn1] 2026-04-01T13:47:12.819843Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn1] 2026-04-01T13:47:12.819916Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 2 (E3 31337:0) +[CIPHER] [cn1] 2026-04-01T13:47:12.820041Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 +[CIPHER] [cn1] 2026-04-01T13:47:12.820146Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.820173Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.820205Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.820237Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.820296Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.820399Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.820499Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.820628Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.820782Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.820970Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.821167Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.821392Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.821801Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.822173Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.822577Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:12.823021Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 1), forwarding to collector! +[CIPHER] [cn1] 2026-04-01T13:47:12.823025Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes +[CIPHER] [cn1] 2026-04-01T13:47:12.823027Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn1] 2026-04-01T13:47:12.823066Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn1] 2026-04-01T13:47:12.823068Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 +[CIPHER] [cn1] 2026-04-01T13:47:12.823070Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 +[CIPHER] [cn1] 2026-04-01T13:47:12.823079Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares +[CIPHER] [cn1] 2026-04-01T13:47:12.823090Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 23.417µs +[CIPHER] [cn1] 2026-04-01T13:47:12.823121Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected +[CIPHER] [cn1] 2026-04-01T13:47:12.823148Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn1] 2026-04-01T13:47:12.830476Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-05-01T13:47:12.819640Z }, value: }), ctx: EventContext { id: EventId(0xea273492928ccf41981110a157ad3f7397aca6e230361efde4bd99f5a3e98dfc), causation_id: EventId(0x7641cb089d25de1fa6a94017f034abbfc8d0059f6cf0b9d6d3d667652cbe34a1), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 50, ts: 32743915809546583058955910505462076, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.837897Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-05-01T13:47:12.819843Z }, value: }), ctx: EventContext { id: EventId(0xec0031b852cb7d490def9daa685e3d96ad9444af6f5515b27c9eca4b9fbefa2d), causation_id: EventId(0x0254047e492a660190b489cfdec2ceb2f6e95ea81521cd9f9cd48e75412b1f53), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 51, ts: 32743915809550290854514726125336892, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.845449Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-05-01T13:47:12.820041Z }, value: }), ctx: EventContext { id: EventId(0x0846408e842c67b037d60883d1700c3f9e23ab7c7fddbc9ca81a1400dfe474d8), causation_id: EventId(0x4c40e89046a6f332d2e5625275850c82c4dfca986a78c9c6246f50d6e2739115), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 52, ts: 32743915809553943309841320616556860, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.879543Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), causation_id: EventId(0x0254047e492a660190b489cfdec2ceb2f6e95ea81521cd9f9cd48e75412b1f53), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 64, ts: 32743915809611294237166483612531004, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:12.988272Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs +[CIPHER] [cn1] 2026-04-01T13:47:12.995675Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 106, party_proofs: [PartyProofData { party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C2aSkShareComputation, , [187, 168, 91, 125, 116, 251, 65, 110, 194, 99, 89, 78, 7, 49, 187, 237, 104, 17, 74, 239, 126, 52, 176, 236, 100, 177, 246, 41, 113, 135, 112, 42]), (C2bESmShareComputation, , [48, 225, 210, 246, 52, 160, 89, 252, 189, 190, 202, 30, 247, 107, 198, 244, 42, 209, 145, 111, 231, 172, 163, 192, 32, 68, 68, 56, 15, 235, 29, 51]), (C3aSkShareEncryption, , [10, 21, 92, 215, 185, 194, 120, 43, 132, 111, 125, 13, 138, 194, 34, 90, 75, 219, 198, 129, 253, 30, 255, 64, 6, 114, 26, 23, 191, 62, 215, 212]), (C3aSkShareEncryption, , [67, 31, 233, 4, 17, 180, 120, 0, 7, 168, 223, 77, 239, 215, 135, 199, 138, 22, 196, 210, 105, 189, 239, 10, 97, 56, 171, 145, 197, 93, 142, 70]), (C3bESmShareEncryption, , [193, 185, 47, 253, 76, 198, 59, 221, 120, 164, 129, 75, 161, 158, 124, 9, 115, 86, 56, 198, 70, 215, 57, 25, 121, 64, 221, 227, 72, 191, 175, 234]), (C3bESmShareEncryption, , [39, 243, 127, 155, 53, 189, 87, 201, 112, 46, 180, 221, 112, 61, 36, 32, 123, 226, 247, 92, 239, 22, 227, 53, 12, 20, 47, 103, 190, 191, 218, 93])] }, PartyProofData { party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C2aSkShareComputation, , [76, 20, 255, 19, 114, 115, 83, 133, 96, 65, 232, 109, 84, 213, 169, 86, 134, 105, 86, 187, 188, 80, 220, 12, 189, 70, 18, 150, 177, 75, 120, 10]), (C2bESmShareComputation, , [122, 6, 66, 77, 87, 68, 118, 91, 121, 151, 122, 113, 188, 140, 87, 9, 204, 61, 38, 157, 0, 28, 125, 21, 194, 116, 27, 211, 188, 72, 170, 192]), (C3aSkShareEncryption, , [55, 39, 54, 208, 85, 251, 82, 85, 48, 113, 201, 91, 192, 64, 79, 211, 190, 139, 28, 146, 218, 51, 63, 11, 75, 172, 203, 241, 96, 99, 90, 193]), (C3aSkShareEncryption, , [109, 216, 144, 114, 189, 20, 106, 243, 54, 82, 155, 13, 165, 13, 229, 59, 130, 236, 22, 127, 130, 180, 150, 117, 112, 184, 178, 162, 60, 150, 140, 179]), (C3bESmShareEncryption, , [238, 208, 153, 21, 254, 190, 137, 238, 23, 242, 31, 118, 41, 14, 247, 166, 88, 237, 135, 91, 146, 17, 128, 177, 226, 91, 115, 1, 145, 212, 156, 225]), (C3bESmShareEncryption, , [246, 173, 200, 190, 186, 245, 198, 117, 214, 12, 10, 78, 144, 88, 239, 88, 211, 167, 130, 214, 32, 213, 210, 27, 213, 84, 67, 196, 237, 101, 152, 173])] }] }), ctx: EventContext { id: EventId(0x4dcb4bb778286ffd1e9d898db5af3ed213f22991095e0f0c8ba698a3e6a5ae2c), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 65, ts: 32743915812727779414699343810296124, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.005273Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 106, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x15e8f287acd7aaa4332bbb781d4297a70bdf8be8bb873df01cdb76967623a2b1), causation_id: EventId(0x4dcb4bb778286ffd1e9d898db5af3ed213f22991095e0f0c8ba698a3e6a5ae2c), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 66, ts: 32743915812969653122993823451085116, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.009159Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 107, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdcc243257d6ba77922c57e1774674e4f6767879e4fd50be00fede820b66774d8), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 53, ts: 32743915812971940519258963435485500, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.024092Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(53)` +[CIPHER] [cn3] 2026-04-01T13:47:13.038941Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-05-01T13:47:12Z }, value: }), ctx: EventContext { id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), causation_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 52, ts: 32743915813586844286211999045748577, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:47:13.047503Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xcc424bf389c3ef77ffbe962d39f7404bd16f0f4d9da9089131458347f65b0382), causation_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 63, ts: 32743915813743420249909645719865185, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.054526Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 0), forwarding to collector! +[CIPHER] [cn3] 2026-04-01T13:47:13.054539Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes +[CIPHER] [cn3] 2026-04-01T13:47:13.054639Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn3] 2026-04-01T13:47:13.054641Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 +[CIPHER] [cn3] 2026-04-01T13:47:13.054642Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 +[CIPHER] [cn3] 2026-04-01T13:47:13.054644Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares +[CIPHER] [cn3] 2026-04-01T13:47:13.054668Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 36.333µs +[CIPHER] [cn3] 2026-04-01T13:47:13.054742Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected +[CIPHER] [cn3] 2026-04-01T13:47:13.054753Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn3] 2026-04-01T13:47:13.054554Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn2] 2026-04-01T13:47:13.049893Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-05-01T13:47:12Z }, value: }), ctx: EventContext { id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), causation_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 52, ts: 32743915813789112834980224470898917, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:47:13.061722Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xcb09854f586e3596f77cade9cdfdd37b6995974f38b921319ce49da4c3dcac6b), causation_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 63, ts: 32743915813963157865315674090395877, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.068587Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 2), forwarding to collector! +[CIPHER] [cn2] 2026-04-01T13:47:13.068592Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes +[CIPHER] [cn2] 2026-04-01T13:47:13.068595Z  INFO e3_keyshare::threshold_keyshare: got collector address! +[CIPHER] [cn2] 2026-04-01T13:47:13.068615Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 +[CIPHER] [cn2] 2026-04-01T13:47:13.068628Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 23.666µs +[CIPHER] [cn2] 2026-04-01T13:47:13.068605Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector +[CIPHER] [cn2] 2026-04-01T13:47:13.068616Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 +[CIPHER] [cn2] 2026-04-01T13:47:13.068635Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected +[CIPHER] [cn2] 2026-04-01T13:47:13.068642Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn2] 2026-04-01T13:47:13.068624Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares +[CIPHER] [cn3] 2026-04-01T13:47:13.055744Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), causation_id: EventId(0xcc424bf389c3ef77ffbe962d39f7404bd16f0f4d9da9089131458347f65b0382), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 64, ts: 32743915813883615504869838312146785, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.069249Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs +[CIPHER] [cn3] 2026-04-01T13:47:13.074570Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, party_proofs: [PartyProofData { party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C2aSkShareComputation, , [208, 148, 13, 111, 197, 116, 2, 238, 38, 75, 31, 201, 237, 103, 173, 184, 118, 66, 118, 134, 119, 133, 176, 138, 100, 166, 78, 222, 75, 112, 12, 153]), (C2bESmShareComputation, , [168, 239, 149, 198, 25, 115, 247, 228, 138, 166, 248, 230, 242, 6, 58, 90, 95, 94, 119, 15, 66, 198, 218, 223, 57, 76, 146, 189, 247, 123, 56, 53]), (C3aSkShareEncryption, , [193, 158, 47, 174, 228, 176, 79, 85, 182, 214, 114, 167, 75, 176, 114, 98, 134, 9, 2, 3, 60, 47, 32, 35, 117, 47, 231, 44, 170, 77, 152, 66]), (C3aSkShareEncryption, , [168, 176, 127, 215, 164, 125, 124, 232, 203, 37, 170, 166, 216, 232, 145, 35, 5, 60, 50, 228, 176, 32, 25, 75, 24, 23, 73, 173, 50, 71, 254, 160]), (C3bESmShareEncryption, , [48, 44, 176, 167, 207, 148, 10, 140, 119, 9, 239, 72, 235, 157, 103, 125, 20, 30, 179, 219, 2, 13, 218, 159, 111, 213, 47, 116, 92, 174, 50, 205]), (C3bESmShareEncryption, , [112, 50, 125, 159, 253, 72, 215, 249, 82, 224, 160, 138, 103, 255, 202, 201, 95, 234, 179, 1, 93, 109, 215, 198, 63, 4, 116, 226, 209, 11, 212, 168])] }, PartyProofData { party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C2aSkShareComputation, , [76, 20, 255, 19, 114, 115, 83, 133, 96, 65, 232, 109, 84, 213, 169, 86, 134, 105, 86, 187, 188, 80, 220, 12, 189, 70, 18, 150, 177, 75, 120, 10]), (C2bESmShareComputation, , [122, 6, 66, 77, 87, 68, 118, 91, 121, 151, 122, 113, 188, 140, 87, 9, 204, 61, 38, 157, 0, 28, 125, 21, 194, 116, 27, 211, 188, 72, 170, 192]), (C3aSkShareEncryption, , [80, 56, 79, 204, 130, 27, 57, 225, 19, 157, 244, 47, 86, 112, 179, 138, 255, 7, 128, 110, 141, 87, 59, 75, 91, 75, 98, 42, 100, 114, 86, 241]), (C3aSkShareEncryption, , [26, 240, 231, 43, 225, 189, 84, 83, 209, 74, 239, 44, 232, 97, 133, 192, 33, 241, 55, 163, 216, 38, 147, 64, 54, 47, 128, 196, 153, 80, 92, 105]), (C3bESmShareEncryption, , [253, 133, 211, 129, 216, 234, 253, 149, 48, 128, 69, 217, 254, 215, 33, 197, 37, 54, 122, 32, 17, 247, 23, 115, 66, 1, 79, 31, 35, 136, 170, 175]), (C3bESmShareEncryption, , [115, 111, 235, 253, 15, 194, 12, 227, 94, 255, 79, 71, 176, 19, 159, 16, 10, 71, 189, 224, 4, 227, 70, 177, 94, 51, 63, 151, 20, 74, 231, 82])] }] }), ctx: EventContext { id: EventId(0x9e78b26e55a560df0ed97bb22e016298fc60979c499822a5bee0cb99c5f46042), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 65, ts: 32743915814206433526159755465426785, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.082533Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xd8ed120dea44fad426acb40e2f8232759d7aa0029b40588dfc8d346f600347b1), causation_id: EventId(0x9e78b26e55a560df0ed97bb22e016298fc60979c499822a5bee0cb99c5f46042), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 66, ts: 32743915814391233008290177753515873, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.071550Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), causation_id: EventId(0xcb09854f586e3596f77cade9cdfdd37b6995974f38b921319ce49da4c3dcac6b), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 64, ts: 32743915814139840780053664175773925, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.085038Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs +[CIPHER] [cn3] 2026-04-01T13:47:13.083965Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x67330d9d69ab935c16e96cb055130851a009d2e7519fd8be8e0f7d04553b37b1), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 53, ts: 32743915814397265093602280776894305, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.097408Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(66)` +[CIPHER] [cn2] 2026-04-01T13:47:13.089824Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, party_proofs: [PartyProofData { party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C2aSkShareComputation, , [187, 168, 91, 125, 116, 251, 65, 110, 194, 99, 89, 78, 7, 49, 187, 237, 104, 17, 74, 239, 126, 52, 176, 236, 100, 177, 246, 41, 113, 135, 112, 42]), (C2bESmShareComputation, , [48, 225, 210, 246, 52, 160, 89, 252, 189, 190, 202, 30, 247, 107, 198, 244, 42, 209, 145, 111, 231, 172, 163, 192, 32, 68, 68, 56, 15, 235, 29, 51]), (C3aSkShareEncryption, , [229, 18, 57, 73, 222, 66, 154, 237, 34, 193, 47, 96, 19, 160, 136, 175, 107, 174, 120, 169, 5, 228, 217, 126, 115, 65, 163, 129, 212, 115, 157, 15]), (C3aSkShareEncryption, , [131, 143, 129, 66, 46, 145, 68, 218, 54, 73, 42, 33, 121, 62, 209, 253, 41, 224, 189, 157, 159, 129, 12, 113, 38, 16, 98, 208, 202, 118, 158, 174]), (C3bESmShareEncryption, , [124, 178, 131, 231, 81, 3, 240, 120, 206, 168, 177, 143, 201, 216, 23, 139, 16, 56, 192, 69, 92, 122, 51, 202, 85, 12, 92, 97, 92, 155, 12, 128]), (C3bESmShareEncryption, , [64, 13, 216, 210, 252, 209, 125, 231, 19, 213, 144, 86, 38, 190, 208, 98, 161, 200, 116, 34, 107, 181, 243, 192, 22, 92, 94, 137, 177, 148, 162, 191])] }, PartyProofData { party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C2aSkShareComputation, , [208, 148, 13, 111, 197, 116, 2, 238, 38, 75, 31, 201, 237, 103, 173, 184, 118, 66, 118, 134, 119, 133, 176, 138, 100, 166, 78, 222, 75, 112, 12, 153]), (C2bESmShareComputation, , [168, 239, 149, 198, 25, 115, 247, 228, 138, 166, 248, 230, 242, 6, 58, 90, 95, 94, 119, 15, 66, 198, 218, 223, 57, 76, 146, 189, 247, 123, 56, 53]), (C3aSkShareEncryption, , [205, 130, 213, 224, 87, 126, 196, 124, 135, 243, 227, 170, 45, 211, 253, 86, 128, 143, 241, 177, 23, 223, 69, 255, 81, 112, 186, 35, 245, 207, 28, 34]), (C3aSkShareEncryption, , [11, 134, 203, 164, 191, 209, 215, 78, 90, 138, 63, 133, 81, 50, 188, 144, 61, 119, 18, 144, 18, 106, 127, 115, 23, 4, 155, 94, 72, 63, 65, 192]), (C3bESmShareEncryption, , [210, 213, 89, 233, 81, 159, 62, 174, 36, 20, 92, 44, 212, 25, 22, 169, 73, 230, 51, 155, 169, 160, 182, 118, 176, 21, 2, 197, 11, 89, 106, 251]), (C3bESmShareEncryption, , [15, 228, 96, 246, 10, 52, 68, 182, 179, 191, 197, 94, 113, 45, 159, 236, 2, 17, 149, 97, 14, 195, 73, 200, 43, 119, 80, 237, 97, 147, 29, 177])] }] }), ctx: EventContext { id: EventId(0x91cd28cb8bf17a326c07c5a02756b32f50643c76868ecaefd30d903fc21868c3), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 65, ts: 32743915814496803724624017709095141, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.098496Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xd8ed120dea44fad426acb40e2f8232759d7aa0029b40588dfc8d346f600347b1), causation_id: EventId(0x91cd28cb8bf17a326c07c5a02756b32f50643c76868ecaefd30d903fc21868c3), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 66, ts: 32743915814680053680252248394848485, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.099215Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x654e58cda33ca1f71a379f0cfdf5a77504fcbf70d31656f6eef346c824538236), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 53, ts: 32743915814691638235530537993263333, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.113075Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(150)` +[CIPHER] [cn1] 2026-04-01T13:47:13.420877Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(53) in 396.776ms +[CIPHER] [cn1] 2026-04-01T13:47:13.420962Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 107, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x76fbfa175192e66056048d065a0ee19ebcc60c23e1f17c7f8a7b0b05ff2faa08), causation_id: EventId(0xdcc243257d6ba77922c57e1774674e4f6767879e4fd50be00fede820b66774d8), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 68, ts: 32743915820637946187690810348304700, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.426452Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2aSkShareComputation, data_hash: [187, 168, 91, 125, 116, 251, 65, 110, 194, 99, 89, 78, 7, 49, 187, 237, 104, 17, 74, 239, 126, 52, 176, 236, 100, 177, 246, 41, 113, 135, 112, 42], public_signals: }), ctx: EventContext { id: EventId(0x5e15c4843ffca7d0214ba90e3f7dddc96c2df925636f0bd0d3f98c79a929a840), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 69, ts: 32743915820640528731861129685530940, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.426503Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2bESmShareComputation, data_hash: [48, 225, 210, 246, 52, 160, 89, 252, 189, 190, 202, 30, 247, 107, 198, 244, 42, 209, 145, 111, 231, 172, 163, 192, 32, 68, 68, 56, 15, 235, 29, 51], public_signals: }), ctx: EventContext { id: EventId(0x635c8b238fd29e63146bbfe17f4f8eb4e8518409fb57e327ed476160f4e7d8d9), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 70, ts: 32743915820640565625349277104634172, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.426536Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [10, 21, 92, 215, 185, 194, 120, 43, 132, 111, 125, 13, 138, 194, 34, 90, 75, 219, 198, 129, 253, 30, 255, 64, 6, 114, 26, 23, 191, 62, 215, 212], public_signals: }), ctx: EventContext { id: EventId(0x2b6b2787d3bda8c7f06078143c77f2dca4b005efab3c857cb332e746bd9ab317), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 71, ts: 32743915820640565625349281399601468, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.427600Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [67, 31, 233, 4, 17, 180, 120, 0, 7, 168, 223, 77, 239, 215, 135, 199, 138, 22, 196, 210, 105, 189, 239, 10, 97, 56, 171, 145, 197, 93, 142, 70], public_signals: }), ctx: EventContext { id: EventId(0xa6231ec3035c460938d4d81be8c917baecd6dfe65cceb164e7938722f82595f0), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 72, ts: 32743915820640731646045940490598716, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.428673Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [193, 185, 47, 253, 76, 198, 59, 221, 120, 164, 129, 75, 161, 158, 124, 9, 115, 86, 56, 198, 70, 215, 57, 25, 121, 64, 221, 227, 72, 191, 175, 234], public_signals: }), ctx: EventContext { id: EventId(0xa875b0b31aaf065f911caa3d344bc788d22ce2ae0cd1d646287a93604de8cd47), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 73, ts: 32743915820640897666742603876563260, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.429745Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [39, 243, 127, 155, 53, 189, 87, 201, 112, 46, 180, 221, 112, 61, 36, 32, 123, 226, 247, 92, 239, 22, 227, 53, 12, 20, 47, 103, 190, 191, 218, 93], public_signals: }), ctx: EventContext { id: EventId(0x5c2cfd107e3607e3a1965640022c58bd326bc1e0542d37c8f9c5cf94d576c44e), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 74, ts: 32743915820641045240695193552976188, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.430758Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C2aSkShareComputation, data_hash: [76, 20, 255, 19, 114, 115, 83, 133, 96, 65, 232, 109, 84, 213, 169, 86, 134, 105, 86, 187, 188, 80, 220, 12, 189, 70, 18, 150, 177, 75, 120, 10], public_signals: }), ctx: EventContext { id: EventId(0xe2dffad7a346eca22519c647f9ef25f3738acb6339ba967674726bda8e8b5c64), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 75, ts: 32743915820641211261391856938940732, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.430791Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C2bESmShareComputation, data_hash: [122, 6, 66, 77, 87, 68, 118, 91, 121, 151, 122, 113, 188, 140, 87, 9, 204, 61, 38, 157, 0, 28, 125, 21, 194, 116, 27, 211, 188, 72, 170, 192], public_signals: }), ctx: EventContext { id: EventId(0x1253e4429ff7773865e8e532ee9f52fa3cd99541de86ed65ef8e3b59578005b9), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 76, ts: 32743915820641229708135930648492348, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.430827Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3aSkShareEncryption, data_hash: [55, 39, 54, 208, 85, 251, 82, 85, 48, 113, 201, 91, 192, 64, 79, 211, 190, 139, 28, 146, 218, 51, 63, 11, 75, 172, 203, 241, 96, 99, 90, 193], public_signals: }), ctx: EventContext { id: EventId(0x7ed4bc2240e828707d3979a7a0a53b3198bcc7d2d5f3024cca9719ee6da95a48), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 77, ts: 32743915820641229708135934943459644, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.431860Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3aSkShareEncryption, data_hash: [109, 216, 144, 114, 189, 20, 106, 243, 54, 82, 155, 13, 165, 13, 229, 59, 130, 236, 22, 127, 130, 180, 150, 117, 112, 184, 178, 162, 60, 150, 140, 179], public_signals: }), ctx: EventContext { id: EventId(0xaae067f55d94d27b39e2ab0c690094cc14fba00a5be70e729dc8b9ff1eed207b), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 78, ts: 32743915820641395728832594034456892, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.432844Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3bESmShareEncryption, data_hash: [238, 208, 153, 21, 254, 190, 137, 238, 23, 242, 31, 118, 41, 14, 247, 166, 88, 237, 135, 91, 146, 17, 128, 177, 226, 91, 115, 1, 145, 212, 156, 225], public_signals: }), ctx: EventContext { id: EventId(0x410c3445e80ddb6588cf0800c7a18067f2eff6662d9bc7cc763d9a46e5754faf), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 79, ts: 32743915820641561749529257420421436, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.433818Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3bESmShareEncryption, data_hash: [246, 173, 200, 190, 186, 245, 198, 117, 214, 12, 10, 78, 144, 88, 239, 88, 211, 167, 130, 214, 32, 213, 210, 27, 213, 84, 67, 196, 237, 101, 152, 173], public_signals: }), ctx: EventContext { id: EventId(0x3c457dba4b17e3847c5f2efe41d0e5bb03d659be2315d36a2e4e88802d960f0c), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 80, ts: 32743915820641709323481847096834364, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.434783Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 81, ts: 32743915820641875344178510482798908, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.434917Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding +[CIPHER] [cn1] 2026-04-01T13:47:13.436334Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:13.437991Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x20d5b2b2593bb86ee65fc3e678b48d97d9ae05ff711db4b39dd50f76bb2b1359), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 54, ts: 32743915820936764994940831374932284, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.439484Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(64)` +[CIPHER] [cn1] 2026-04-01T13:47:13.439489Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... +[CIPHER] [cn1] 2026-04-01T13:47:13.439487Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... +[CIPHER] [cn1] 2026-04-01T13:47:13.443447Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... +[CIPHER] [cn1] 2026-04-01T13:47:13.443482Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... +[CIPHER] [cn1] 2026-04-01T13:47:13.443491Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... +[CIPHER] [cn1] 2026-04-01T13:47:13.443588Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(64) in 4.101542ms +[CIPHER] [cn1] 2026-04-01T13:47:13.445047Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x20bc4e9994168af0786638ae49d006ce0de0ecbd627e110d93b688c6bce2f5ec), causation_id: EventId(0x20d5b2b2593bb86ee65fc3e678b48d97d9ae05ff711db4b39dd50f76bb2b1359), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 82, ts: 32743915821056687278164017169987900, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.445387Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key +[CIPHER] [cn1] 2026-04-01T13:47:13.445831Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 1 (1 SK + 1 ESM requests) +[CIPHER] [cn1] 2026-04-01T13:47:13.445879Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:13.447833Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0xb2de49e26967e4f1ec523076dc2e57daef51aa9f35ade5ccde1905502a58d068), causation_id: EventId(0x20bc4e9994168af0786638ae49d006ce0de0ecbd627e110d93b688c6bce2f5ec), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 83, ts: 32743915821097749730472094631885116, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.450551Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:13.450567Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:13.450900Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa275998e47d7a5269220962bd122b383727dbf3019ac5dae593167ff25ba9fef), causation_id: EventId(0xb2de49e26967e4f1ec523076dc2e57daef51aa9f35ade5ccde1905502a58d068), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 55, ts: 32743915821184836809244077425064252, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.452143Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x6a0c7606ca5a7f34e58a593a8eb970d1f0f64586279b68f5c9e0f14aaa1aede7), causation_id: EventId(0xb2de49e26967e4f1ec523076dc2e57daef51aa9f35ade5ccde1905502a58d068), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 56, ts: 32743915821185113510405183068338492, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:13.453448Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(201)` +[CIPHER] [cn3] 2026-04-01T13:47:13.497403Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(66) in 399.988459ms +[CIPHER] [cn2] 2026-04-01T13:47:13.497484Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(150) in 384.391417ms +[CIPHER] [cn3] 2026-04-01T13:47:13.497494Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x589ed8b7e33aca66c12e91b28b95ac546061f5eade2298401939d031e6b4fe1a), causation_id: EventId(0x67330d9d69ab935c16e96cb055130851a009d2e7519fd8be8e0f7d04553b37b1), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 68, ts: 32743915822049527937699214073759585, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.497554Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x793bfbbe74bf4b0b0dc45591939b123a93a4a8727bcd96f4d69f81268dcef12a), causation_id: EventId(0x654e58cda33ca1f71a379f0cfdf5a77504fcbf70d31656f6eef346c824538236), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 68, ts: 32743915822051132804433626996431077, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.503913Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C2aSkShareComputation, data_hash: [208, 148, 13, 111, 197, 116, 2, 238, 38, 75, 31, 201, 237, 103, 173, 184, 118, 66, 118, 134, 119, 133, 176, 138, 100, 166, 78, 222, 75, 112, 12, 153], public_signals: }), ctx: EventContext { id: EventId(0x2a50bd6f543d5e71a59a8a1eb1d63d3bc6c14278384ec23c7e93695a4c26a6d1), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 69, ts: 32743915822052092035125459701434209, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.503930Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2aSkShareComputation, data_hash: [187, 168, 91, 125, 116, 251, 65, 110, 194, 99, 89, 78, 7, 49, 187, 237, 104, 17, 74, 239, 126, 52, 176, 236, 100, 177, 246, 41, 113, 135, 112, 42], public_signals: }), ctx: EventContext { id: EventId(0x5e15c4843ffca7d0214ba90e3f7dddc96c2df925636f0bd0d3f98c79a929a840), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 69, ts: 32743915822052848351632481984731365, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.503966Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C2bESmShareComputation, data_hash: [168, 239, 149, 198, 25, 115, 247, 228, 138, 166, 248, 230, 242, 6, 58, 90, 95, 94, 119, 15, 66, 198, 218, 223, 57, 76, 146, 189, 247, 123, 56, 53], public_signals: }), ctx: EventContext { id: EventId(0x6e6cec419da3bf1cb5f807ead813daeca8e05b2bcfc11cb0716b31886201f470), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 70, ts: 32743915822052110481869533410985825, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.503975Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2bESmShareComputation, data_hash: [48, 225, 210, 246, 52, 160, 89, 252, 189, 190, 202, 30, 247, 107, 198, 244, 42, 209, 145, 111, 231, 172, 163, 192, 32, 68, 68, 56, 15, 235, 29, 51], public_signals: }), ctx: EventContext { id: EventId(0x635c8b238fd29e63146bbfe17f4f8eb4e8518409fb57e327ed476160f4e7d8d9), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 70, ts: 32743915822052866798376555694282981, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.503998Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [229, 18, 57, 73, 222, 66, 154, 237, 34, 193, 47, 96, 19, 160, 136, 175, 107, 174, 120, 169, 5, 228, 217, 126, 115, 65, 163, 129, 212, 115, 157, 15], public_signals: }), ctx: EventContext { id: EventId(0x76ca72668031305027212591d7533f70df5a71102e82080642aa21dd73c3c764), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 71, ts: 32743915822052885245120629403834597, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.503993Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3aSkShareEncryption, data_hash: [193, 158, 47, 174, 228, 176, 79, 85, 182, 214, 114, 167, 75, 176, 114, 98, 134, 9, 2, 3, 60, 47, 32, 35, 117, 47, 231, 44, 170, 77, 152, 66], public_signals: }), ctx: EventContext { id: EventId(0x9d689de13fd08c21dc8353f2dbdec7968969f0b16b20a686ea4daf12598c1c79), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 71, ts: 32743915822052128928613607120537441, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.504939Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [131, 143, 129, 66, 46, 145, 68, 218, 54, 73, 42, 33, 121, 62, 209, 253, 41, 224, 189, 157, 159, 129, 12, 113, 38, 16, 98, 208, 202, 118, 158, 174], public_signals: }), ctx: EventContext { id: EventId(0x0c49c6a9122252cea4f5dd6cfe6fcaef3452aafe87c1cc469f131082e7f44cab), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 72, ts: 32743915822053051265817292789799141, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.504951Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3aSkShareEncryption, data_hash: [168, 176, 127, 215, 164, 125, 124, 232, 203, 37, 170, 166, 216, 232, 145, 35, 5, 60, 50, 228, 176, 32, 25, 75, 24, 23, 73, 173, 50, 71, 254, 160], public_signals: }), ctx: EventContext { id: EventId(0xe3166964d48ac745d2cb8fca4053028f1573018b2ea5e09b4aa67f73d6d47423), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 72, ts: 32743915822052294949310270506501985, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.505882Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [124, 178, 131, 231, 81, 3, 240, 120, 206, 168, 177, 143, 201, 216, 23, 139, 16, 56, 192, 69, 92, 122, 51, 202, 85, 12, 92, 97, 92, 155, 12, 128], public_signals: }), ctx: EventContext { id: EventId(0x21403d863f8281be3f444048731de6a60bf92c6c18f0fe949fda46f00046fa87), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 73, ts: 32743915822053217286513956175763685, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.505903Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3bESmShareEncryption, data_hash: [48, 44, 176, 167, 207, 148, 10, 140, 119, 9, 239, 72, 235, 157, 103, 125, 20, 30, 179, 219, 2, 13, 218, 159, 111, 213, 47, 116, 92, 174, 50, 205], public_signals: }), ctx: EventContext { id: EventId(0x517ac3abd086f4ab88e1439cb9d8de9513ec453cb06ae229818252df162ee6dc), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 73, ts: 32743915822052442523262860182914913, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.506828Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [64, 13, 216, 210, 252, 209, 125, 231, 19, 213, 144, 86, 38, 190, 208, 98, 161, 200, 116, 34, 107, 181, 243, 192, 22, 92, 94, 137, 177, 148, 162, 191], public_signals: }), ctx: EventContext { id: EventId(0x7cff487cd392e6dfba6afb68ecb32e4fec89a267d875244204a032823d60a729), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 74, ts: 32743915822053364860466545852176613, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.507780Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C2aSkShareComputation, data_hash: [208, 148, 13, 111, 197, 116, 2, 238, 38, 75, 31, 201, 237, 103, 173, 184, 118, 66, 118, 134, 119, 133, 176, 138, 100, 166, 78, 222, 75, 112, 12, 153], public_signals: }), ctx: EventContext { id: EventId(0x2a50bd6f543d5e71a59a8a1eb1d63d3bc6c14278384ec23c7e93695a4c26a6d1), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 75, ts: 32743915822053530881163209238141157, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.506871Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3bESmShareEncryption, data_hash: [112, 50, 125, 159, 253, 72, 215, 249, 82, 224, 160, 138, 103, 255, 202, 201, 95, 234, 179, 1, 93, 109, 215, 198, 63, 4, 116, 226, 209, 11, 212, 168], public_signals: }), ctx: EventContext { id: EventId(0xf6bdc1a1b612b50b81edef6587cb66c806f9787016f656418e62fdbdd32fffb3), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 74, ts: 32743915822052608543959523568879457, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.507821Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C2aSkShareComputation, data_hash: [76, 20, 255, 19, 114, 115, 83, 133, 96, 65, 232, 109, 84, 213, 169, 86, 134, 105, 86, 187, 188, 80, 220, 12, 189, 70, 18, 150, 177, 75, 120, 10], public_signals: }), ctx: EventContext { id: EventId(0xe2dffad7a346eca22519c647f9ef25f3738acb6339ba967674726bda8e8b5c64), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 75, ts: 32743915822052774564656186954844001, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.507807Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C2bESmShareComputation, data_hash: [168, 239, 149, 198, 25, 115, 247, 228, 138, 166, 248, 230, 242, 6, 58, 90, 95, 94, 119, 15, 66, 198, 218, 223, 57, 76, 146, 189, 247, 123, 56, 53], public_signals: }), ctx: EventContext { id: EventId(0x6e6cec419da3bf1cb5f807ead813daeca8e05b2bcfc11cb0716b31886201f470), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 76, ts: 32743915822053549327907282947692773, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.507853Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C2bESmShareComputation, data_hash: [122, 6, 66, 77, 87, 68, 118, 91, 121, 151, 122, 113, 188, 140, 87, 9, 204, 61, 38, 157, 0, 28, 125, 21, 194, 116, 27, 211, 188, 72, 170, 192], public_signals: }), ctx: EventContext { id: EventId(0x1253e4429ff7773865e8e532ee9f52fa3cd99541de86ed65ef8e3b59578005b9), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 76, ts: 32743915822052774564656191249811297, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.507835Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3aSkShareEncryption, data_hash: [205, 130, 213, 224, 87, 126, 196, 124, 135, 243, 227, 170, 45, 211, 253, 86, 128, 143, 241, 177, 23, 223, 69, 255, 81, 112, 186, 35, 245, 207, 28, 34], public_signals: }), ctx: EventContext { id: EventId(0xc8073f5f03f40870a41968dae36604f5465d430a6886e349e954815175264766), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 77, ts: 32743915822053549327907287242660069, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.507878Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3aSkShareEncryption, data_hash: [80, 56, 79, 204, 130, 27, 57, 225, 19, 157, 244, 47, 86, 112, 179, 138, 255, 7, 128, 110, 141, 87, 59, 75, 91, 75, 98, 42, 100, 114, 86, 241], public_signals: }), ctx: EventContext { id: EventId(0x77dfd42d0b11333f2dc8384b49007ed0e3c3c1c35a05558c163cf30be4a2f1db), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 77, ts: 32743915822052793011400260664395617, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.508779Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3aSkShareEncryption, data_hash: [11, 134, 203, 164, 191, 209, 215, 78, 90, 138, 63, 133, 81, 50, 188, 144, 61, 119, 18, 144, 18, 106, 127, 115, 23, 4, 155, 94, 72, 63, 65, 192], public_signals: }), ctx: EventContext { id: EventId(0xba27620d5aae9d24cffaebe8c9f279fd138be823f49ff23124a412ade8bac8e1), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 78, ts: 32743915822053715348603946333657317, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.508825Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3aSkShareEncryption, data_hash: [26, 240, 231, 43, 225, 189, 84, 83, 209, 74, 239, 44, 232, 97, 133, 192, 33, 241, 55, 163, 216, 38, 147, 64, 54, 47, 128, 196, 153, 80, 92, 105], public_signals: }), ctx: EventContext { id: EventId(0x342efc03aa78cb8c7b195a47870f91dea6d5e450d5902f0bdab60ff591aafd40), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 78, ts: 32743915822052940585352850340808545, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.509724Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3bESmShareEncryption, data_hash: [210, 213, 89, 233, 81, 159, 62, 174, 36, 20, 92, 44, 212, 25, 22, 169, 73, 230, 51, 155, 169, 160, 182, 118, 176, 21, 2, 197, 11, 89, 106, 251], public_signals: }), ctx: EventContext { id: EventId(0x22a95e24e72b20efd4519f3bee799fb0c1b36a6641dd9ff4ab8d26be00793fc7), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 79, ts: 32743915822053881369300609719621861, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.509766Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3bESmShareEncryption, data_hash: [253, 133, 211, 129, 216, 234, 253, 149, 48, 128, 69, 217, 254, 215, 33, 197, 37, 54, 122, 32, 17, 247, 23, 115, 66, 1, 79, 31, 35, 136, 170, 175], public_signals: }), ctx: EventContext { id: EventId(0xc4a6ebdff25c81e3b22ef87ec640d4e3a6b1622b2297f464d6f213775caec1fe), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 79, ts: 32743915822053143499537661145876321, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.510685Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3bESmShareEncryption, data_hash: [15, 228, 96, 246, 10, 52, 68, 182, 179, 191, 197, 94, 113, 45, 159, 236, 2, 17, 149, 97, 14, 195, 73, 200, 43, 119, 80, 237, 97, 147, 29, 177], public_signals: }), ctx: EventContext { id: EventId(0xa9e9e900a78b9fa88bba16ff413e2a642722f7d087a81283ff6238582e7c5a59), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 80, ts: 32743915822054047389997273105586405, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.511685Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 81, ts: 32743915822054194963949862781999333, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.510721Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3bESmShareEncryption, data_hash: [115, 111, 235, 253, 15, 194, 12, 227, 94, 255, 79, 71, 176, 19, 159, 16, 10, 71, 189, 224, 4, 227, 70, 177, 94, 51, 63, 151, 20, 74, 231, 82], public_signals: }), ctx: EventContext { id: EventId(0xc11a93ddbabf6afa76d5173c7bf957fb88cdab48c76ada812f623a5f241478ad), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 80, ts: 32743915822053291073490250822289249, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.511738Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 81, ts: 32743915822053457094186914208253793, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.511839Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding +[CIPHER] [cn3] 2026-04-01T13:47:13.511844Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding +[CIPHER] [cn2] 2026-04-01T13:47:13.513311Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:13.513314Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:13.514892Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5adf9d404fc665ab652808a97a21bb8f68906bf7a9a22e862f2e9329f4337648), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 54, ts: 32743915822356979821175731170543457, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.514864Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb76207d8ffb6a5492b7d5e9d3d3373d6bbcf148ac083f5c667df5bb646ae827e), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 54, ts: 32743915822356979821175731362224357, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.516403Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(196)` +[CIPHER] [cn2] 2026-04-01T13:47:13.516409Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... +[CIPHER] [cn3] 2026-04-01T13:47:13.516403Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(184)` +[CIPHER] [cn3] 2026-04-01T13:47:13.516408Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... +[CIPHER] [cn3] 2026-04-01T13:47:13.516409Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... +[CIPHER] [cn2] 2026-04-01T13:47:13.516408Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... +[CIPHER] [cn3] 2026-04-01T13:47:13.520512Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... +[CIPHER] [cn3] 2026-04-01T13:47:13.520571Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... +[CIPHER] [cn3] 2026-04-01T13:47:13.520586Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... +[CIPHER] [cn2] 2026-04-01T13:47:13.520620Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... +[CIPHER] [cn2] 2026-04-01T13:47:13.520673Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... +[CIPHER] [cn2] 2026-04-01T13:47:13.520689Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... +[CIPHER] [cn2] 2026-04-01T13:47:13.520895Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(196) in 4.487541ms +[CIPHER] [cn3] 2026-04-01T13:47:13.520784Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(184) in 4.375667ms +[CIPHER] [cn3] 2026-04-01T13:47:13.535692Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc578334f81a7f54a4687ce40f9b1530b77c3223f3d93f8bdcb85ac1381333365), causation_id: EventId(0x5adf9d404fc665ab652808a97a21bb8f68906bf7a9a22e862f2e9329f4337648), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 82, ts: 32743915822482841955990651441219425, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.536442Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key +[CIPHER] [cn2] 2026-04-01T13:47:13.535731Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x39af7241971b9bca15c6949873cce9e788061a947ae3dfb8d188be274c60b428), causation_id: EventId(0xb76207d8ffb6a5492b7d5e9d3d3373d6bbcf148ac083f5c667df5bb646ae827e), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 82, ts: 32743915822485055565279496779094245, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.537135Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key +[CIPHER] [cn2] 2026-04-01T13:47:13.538633Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 2 (1 SK + 1 ESM requests) +[CIPHER] [cn2] 2026-04-01T13:47:13.538739Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:13.537947Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 0 (1 SK + 1 ESM requests) +[CIPHER] [cn3] 2026-04-01T13:47:13.538030Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:13.547811Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0xcba059c7fc831f31eeb4a8c38bb0a2506a90c92709c8df651e9195a643a29655), causation_id: EventId(0xc578334f81a7f54a4687ce40f9b1530b77c3223f3d93f8bdcb85ac1381333365), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 83, ts: 32743915822797119134774441072101217, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.550623Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:13.550641Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:13.547811Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0xa9b8a49e66207b9e3b28cfe8a642041be7bb5df2ea27da26d6a4b8d67bae82b4), causation_id: EventId(0x39af7241971b9bca15c6949873cce9e788061a947ae3dfb8d188be274c60b428), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 83, ts: 32743915822809736707720858597087461, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.550873Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:13.550888Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:13.551848Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5228d8b26f4e051be6a7e3a4b56e615323cbeff5633b22567e79554fca499d2a), causation_id: EventId(0xa9b8a49e66207b9e3b28cfe8a642041be7bb5df2ea27da26d6a4b8d67bae82b4), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 55, ts: 32743915823035432621462694961109221, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.553090Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbd3b891c9744b30effb784d8c3abd29e74367f0aedd52afa86099796c4357a75), causation_id: EventId(0xa9b8a49e66207b9e3b28cfe8a642041be7bb5df2ea27da26d6a4b8d67bae82b4), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 56, ts: 32743915823035709322623800604383461, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.554791Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xceb26c0eddc411df96922d6f29d2a1ec20c57ad81d582326133ce3e5e3fe6022), causation_id: EventId(0xcba059c7fc831f31eeb4a8c38bb0a2506a90c92709c8df651e9195a643a29655), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 55, ts: 32743915823030839382188341091075937, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:13.556040Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdee7fad37d245f6b037064fff03c86b9e51c911eaf37e746028918ace444ccb3), causation_id: EventId(0xcba059c7fc831f31eeb4a8c38bb0a2506a90c92709c8df651e9195a643a29655), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 56, ts: 32743915823031171423581667863005025, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:13.564306Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(231)` +[CIPHER] [cn3] 2026-04-01T13:47:13.564560Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(101)` +[CIPHER] [cn1] 2026-04-01T13:47:13.946062Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:14.135374Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:14.149620Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:20.937579Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:20.937713Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(201) in 7.484261125s +[CIPHER] [cn1] 2026-04-01T13:47:20.938934Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(129)` +[CIPHER] [cn1] 2026-04-01T13:47:20.937895Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfa747e5876f41671be1ac29f5b6e8ad62667e80235755c79edf3d48ff3e5ec5e), causation_id: EventId(0xa275998e47d7a5269220962bd122b383727dbf3019ac5dae593167ff25ba9fef), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 84, ts: 32743915959299059230249274060208444, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:20.940016Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:21.324256Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:21.324380Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(101) in 7.759815458s +[CIPHER] [cn3] 2026-04-01T13:47:21.325044Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(55)` +[CIPHER] [cn3] 2026-04-01T13:47:21.324561Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa4d8e1bb266a9195fe03d14c101a12bf0c0d2845e436bc8349c9b44c12466557), causation_id: EventId(0xceb26c0eddc411df96922d6f29d2a1ec20c57ad81d582326133ce3e5e3fe6022), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 84, ts: 32743915966431880207974621509814113, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:21.326670Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:21.438779Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:21.438839Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(231) in 7.874522292s +[CIPHER] [cn2] 2026-04-01T13:47:21.439616Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(34)` +[CIPHER] [cn2] 2026-04-01T13:47:21.439246Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8b6777a6dada2782630d96d9d70e8f42d902d2116905123ca5a035ca259c22fb), causation_id: EventId(0x5228d8b26f4e051be6a7e3a4b56e615323cbeff5633b22567e79554fca499d2a), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 84, ts: 32743915968547113010674674856646885, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:21.441639Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:21.442950Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:21.775520Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:21.887620Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:28.368067Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:28.368190Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(129) in 7.429248542s +[CIPHER] [cn1] 2026-04-01T13:47:28.368354Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7c2eeef3792dfcadfb930017d5a6cbc0e077137a31fc8635ce59b6a0a4faf4fc), causation_id: EventId(0x6a0c7606ca5a7f34e58a593a8eb970d1f0f64586279b68f5c9e0f14aaa1aede7), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 85, ts: 32743916096367148348090328313657660, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:28.370464Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:28.370473Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared +[CIPHER] [cn1] 2026-04-01T13:47:28.370608Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 1 (signer: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8) +[CIPHER] [cn1] 2026-04-01T13:47:28.370762Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0x04e998748171dfe239b86087365f19cb498380e29c33fbab7e386c16128681ff), causation_id: EventId(0xb2de49e26967e4f1ec523076dc2e57daef51aa9f35ade5ccde1905502a58d068), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 86, ts: 32743916096411346746890936399329596, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:28.372044Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 +[CIPHER] [cn1] 2026-04-01T13:47:28.373634Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28.372021Z }, value: }), ctx: EventContext { id: EventId(0xfc9bfe5419ce252f9980c21fe1a9cbf4935202874ac48b549079148ac294a31f), causation_id: EventId(0x04e998748171dfe239b86087365f19cb498380e29c33fbab7e386c16128681ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 57, ts: 32743916096437799377892635896346940, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:28.381671Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), causation_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), origin_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), seq: 57, ts: 32743916096611401686370317903300449, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:47:28.381674Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), causation_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), origin_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), seq: 57, ts: 32743916096611364792882170675878117, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:47:28.384711Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x71d27f8c8b2ed17cacf0cb1824934ad63cb9a4f402ec3317bf2daaa43c30599a), causation_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), origin_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), seq: 85, ts: 32743916096666502110918488525658341, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:28.384715Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x71d27f8c8b2ed17cacf0cb1824934ad63cb9a4f402ec3317bf2daaa43c30599a), causation_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), origin_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), seq: 85, ts: 32743916096666502110918488333977441, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:28.386002Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 1, waiting on 1 +[CIPHER] [cn3] 2026-04-01T13:47:28.386007Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 5.917µs +[CIPHER] [cn2] 2026-04-01T13:47:28.386002Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 1, waiting on 1 +[CIPHER] [cn2] 2026-04-01T13:47:28.386007Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 5.833µs +[CIPHER] [cn3] 2026-04-01T13:47:28.762123Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:28.762278Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(55) in 7.437224209s +[CIPHER] [cn3] 2026-04-01T13:47:28.762480Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x27229bfeaee223812b435c762f75c21ab90d15436962a07eb66956ef6475a511), causation_id: EventId(0xdee7fad37d245f6b037064fff03c86b9e51c911eaf37e746028918ace444ccb3), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 86, ts: 32743916103636917953818895474460513, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:28.764538Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:47:28.764547Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared +[CIPHER] [cn3] 2026-04-01T13:47:28.764811Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 0 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) +[CIPHER] [cn3] 2026-04-01T13:47:28.765317Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0xe9765066226f1f1d8c36d77375b573985188acbd9a2d1498af40d6ea280acbea), causation_id: EventId(0xcba059c7fc831f31eeb4a8c38bb0a2506a90c92709c8df651e9195a643a29655), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 87, ts: 32743916103683127047723537901258593, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:28.766634Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 +[CIPHER] [cn3] 2026-04-01T13:47:28.767832Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28.766606Z }, value: }), ctx: EventContext { id: EventId(0x49daaf6f56851e2438c1eb271b68ed23d3c790107eaf19b2037cf61936783c39), causation_id: EventId(0xe9765066226f1f1d8c36d77375b573985188acbd9a2d1498af40d6ea280acbea), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 58, ts: 32743916103716718568681762994751329, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:28.775554Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), causation_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 58, ts: 32743916103878109132582646445144380, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:47:28.776291Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), causation_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 58, ts: 32743916103891741276453119412164837, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:47:28.778530Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x96a2172f1242665dbd0d15c04946bffdcec4015817f4c48737302a17ef9f363d), causation_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 87, ts: 32743916103932951302713784942098748, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:28.781320Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 0, waiting on 1 +[CIPHER] [cn1] 2026-04-01T13:47:28.781331Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 14.333µs +[CIPHER] [cn2] 2026-04-01T13:47:28.779244Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x96a2172f1242665dbd0d15c04946bffdcec4015817f4c48737302a17ef9f363d), causation_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 86, ts: 32743916103946288298679078556293349, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:28.781561Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 0, waiting on 0 +[CIPHER] [cn2] 2026-04-01T13:47:28.781569Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 9µs +[CIPHER] [cn2] 2026-04-01T13:47:28.781579Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) +[CIPHER] [cn2] 2026-04-01T13:47:28.781582Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn2] 2026-04-01T13:47:28.781567Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected +[CIPHER] [cn2] 2026-04-01T13:47:28.781779Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), causation_id: EventId(0x96a2172f1242665dbd0d15c04946bffdcec4015817f4c48737302a17ef9f363d), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 87, ts: 32743916103992405158863352435333349, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:28.783719Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs +[CIPHER] [cn2] 2026-04-01T13:47:28.784962Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 116, party_proofs: [PartyProofData { party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C4aSkShareDecryption, , [100, 189, 55, 218, 19, 127, 249, 110, 20, 87, 169, 197, 138, 205, 100, 3, 179, 194, 24, 47, 164, 65, 143, 114, 174, 230, 81, 153, 116, 251, 53, 140]), (C4bESmShareDecryption, , [205, 89, 207, 42, 199, 139, 186, 157, 147, 147, 156, 92, 127, 106, 27, 242, 151, 241, 56, 34, 84, 189, 151, 137, 52, 250, 230, 223, 253, 90, 38, 148])] }, PartyProofData { party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C4aSkShareDecryption, , [49, 88, 112, 71, 156, 103, 201, 84, 92, 137, 130, 188, 25, 151, 12, 81, 127, 68, 159, 54, 230, 94, 116, 139, 202, 229, 128, 248, 84, 172, 192, 91]), (C4bESmShareDecryption, , [247, 249, 83, 72, 71, 110, 246, 144, 56, 115, 197, 80, 242, 99, 23, 208, 142, 209, 30, 122, 101, 36, 85, 119, 28, 86, 37, 188, 147, 128, 235, 198])] }] }), ctx: EventContext { id: EventId(0x362f8a0133b8df8a9e260a6dbdc7fa4af6ea6e5897cbe270cd4dd704f54fcbed), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 88, ts: 32743916104049737639444441721755877, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:28.808007Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 116, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x10b8ee4c4c98459b51a6001280102d1c70b2a9952fa1a14d1de35e25dd54e98b), causation_id: EventId(0x362f8a0133b8df8a9e260a6dbdc7fa4af6ea6e5897cbe270cd4dd704f54fcbed), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 89, ts: 32743916104056378467310977160337637, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:28.811010Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 117, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdcea13e382c225696a3e55108646796ba5473eb30490c44e85844b0c665e7358), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 59, ts: 32743916104482332234717004416702693, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:28.923467Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:28.923530Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(34) in 7.483906916s +[CIPHER] [cn2] 2026-04-01T13:47:28.923588Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(19)` +[CIPHER] [cn2] 2026-04-01T13:47:28.923653Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x962514d53e9ef37c4fe15660f97509ebfe62e1424048aff950bc5122af0f3562), causation_id: EventId(0xbd3b891c9744b30effb784d8c3abd29e74367f0aedd52afa86099796c4357a75), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 91, ts: 32743916106611326308496044897360101, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:28.924619Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:28.924622Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared +[CIPHER] [cn2] 2026-04-01T13:47:28.924751Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 2 (signer: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC) +[CIPHER] [cn2] 2026-04-01T13:47:28.924848Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0xde75f4c046ddd75d0f91396cf6f1f5514740e628108bbb966af32886441ec5c4), causation_id: EventId(0xa9b8a49e66207b9e3b28cfe8a642041be7bb5df2ea27da26d6a4b8d67bae82b4), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 92, ts: 32743916106633443954640422649747685, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:28.926099Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 +[CIPHER] [cn2] 2026-04-01T13:47:28.929248Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28.926077Z }, value: }), ctx: EventContext { id: EventId(0xcaf20a6ed1499096cdf5687d23b9beb6d99fe44d411da20bff218c2749dc257d), causation_id: EventId(0xde75f4c046ddd75d0f91396cf6f1f5514740e628108bbb966af32886441ec5c4), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 60, ts: 32743916106658291718907709415774437, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:28.935226Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), causation_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 59, ts: 32743916106825437666959591471286113, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:47:28.935264Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), causation_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 59, ts: 32743916106826120196490317308000572, aggregate_id: AggregateId(0), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:47:28.938556Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xaa03f7418c5b2b7d84858fbcb7865aa2f876b161a50915a6da4def6bcdaecea5), causation_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 88, ts: 32743916106851927191449438387406689, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:28.938556Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xaa03f7418c5b2b7d84858fbcb7865aa2f876b161a50915a6da4def6bcdaecea5), causation_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 88, ts: 32743916106851761170752773584746812, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:28.939799Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 2, waiting on 0 +[CIPHER] [cn3] 2026-04-01T13:47:28.939802Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected +[CIPHER] [cn3] 2026-04-01T13:47:28.939812Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) +[CIPHER] [cn1] 2026-04-01T13:47:28.939817Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected +[CIPHER] [cn1] 2026-04-01T13:47:28.939818Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 3.75µs +[CIPHER] [cn3] 2026-04-01T13:47:28.939804Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 4.958µs +[CIPHER] [cn1] 2026-04-01T13:47:28.939815Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 2, waiting on 0 +[CIPHER] [cn1] 2026-04-01T13:47:28.939823Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) +[CIPHER] [cn1] 2026-04-01T13:47:28.939824Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn3] 2026-04-01T13:47:28.939814Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) +[CIPHER] [cn3] 2026-04-01T13:47:28.939916Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), causation_id: EventId(0xaa03f7418c5b2b7d84858fbcb7865aa2f876b161a50915a6da4def6bcdaecea5), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 89, ts: 32743916106911270367134562014955361, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:28.941868Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs +[CIPHER] [cn1] 2026-04-01T13:47:28.939916Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), causation_id: EventId(0xaa03f7418c5b2b7d84858fbcb7865aa2f876b161a50915a6da4def6bcdaecea5), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 89, ts: 32743916106911454834575297693776188, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:28.941939Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs +[CIPHER] [cn3] 2026-04-01T13:47:28.946010Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, party_proofs: [PartyProofData { party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C4aSkShareDecryption, , [194, 226, 120, 236, 252, 147, 32, 210, 237, 243, 183, 220, 153, 105, 134, 133, 150, 153, 129, 87, 255, 28, 216, 101, 213, 245, 191, 175, 14, 155, 54, 245]), (C4bESmShareDecryption, , [245, 238, 247, 102, 150, 236, 218, 196, 211, 132, 161, 136, 234, 4, 162, 82, 54, 219, 178, 58, 161, 229, 141, 199, 138, 166, 30, 89, 134, 76, 163, 139])] }, PartyProofData { party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C4aSkShareDecryption, , [100, 189, 55, 218, 19, 127, 249, 110, 20, 87, 169, 197, 138, 205, 100, 3, 179, 194, 24, 47, 164, 65, 143, 114, 174, 230, 81, 153, 116, 251, 53, 140]), (C4bESmShareDecryption, , [205, 89, 207, 42, 199, 139, 186, 157, 147, 147, 156, 92, 127, 106, 27, 242, 151, 241, 56, 34, 84, 189, 151, 137, 52, 250, 230, 223, 253, 90, 38, 148])] }] }), ctx: EventContext { id: EventId(0xeb2e880d45fe24eee8b01ee56d087dc0a66bbdcde9cbe276cad6e4501ee71b1c), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 90, ts: 32743916106967164001677901956351841, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:28.946019Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, party_proofs: [PartyProofData { party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C4aSkShareDecryption, , [49, 88, 112, 71, 156, 103, 201, 84, 92, 137, 130, 188, 25, 151, 12, 81, 127, 68, 159, 54, 230, 94, 116, 139, 202, 229, 128, 248, 84, 172, 192, 91]), (C4bESmShareDecryption, , [247, 249, 83, 72, 71, 110, 246, 144, 56, 115, 197, 80, 242, 99, 23, 208, 142, 209, 30, 122, 101, 36, 85, 119, 28, 86, 37, 188, 147, 128, 235, 198])] }, PartyProofData { party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C4aSkShareDecryption, , [194, 226, 120, 236, 252, 147, 32, 210, 237, 243, 183, 220, 153, 105, 134, 133, 150, 153, 129, 87, 255, 28, 216, 101, 213, 245, 191, 175, 14, 155, 54, 245]), (C4bESmShareDecryption, , [245, 238, 247, 102, 150, 236, 218, 196, 211, 132, 161, 136, 234, 4, 162, 82, 54, 219, 178, 58, 161, 229, 141, 199, 138, 166, 30, 89, 134, 76, 163, 139])] }] }), ctx: EventContext { id: EventId(0x9361d1acfa2f68bd494861011057be0d8bc697bb0de1e567281d3e0b6db95c52), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 90, ts: 32743916106968676634691944722889020, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:28.950859Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x5e634e70829339b4324c1b7f9984a332726f8654b1397eac609e298f06468960), causation_id: EventId(0x9361d1acfa2f68bd494861011057be0d8bc697bb0de1e567281d3e0b6db95c52), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 91, ts: 32743916107029108168277417213983036, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:28.950856Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x5e634e70829339b4324c1b7f9984a332726f8654b1397eac609e298f06468960), causation_id: EventId(0xeb2e880d45fe24eee8b01ee56d087dc0a66bbdcde9cbe276cad6e4501ee71b1c), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 91, ts: 32743916107028388745258543958165345, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:28.953904Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1e694fce5fceae627d22ed89b5c6f98f05181c2fd6117956eaae0318e08f3a8d), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 60, ts: 32743916107116195247049400007162172, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:28.955856Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(142)` +[CIPHER] [cn3] 2026-04-01T13:47:28.956823Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x6eef9a9cb6f64e3ad5ae0f6078b15c9ca9656a18da55256146d70fdc13105060), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 60, ts: 32743916107116527288442728195786593, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:28.958744Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(208)` +[CIPHER] [cn2] 2026-04-01T13:47:29.063058Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(19) in 139.461667ms +[CIPHER] [cn2] 2026-04-01T13:47:29.063158Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 117, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x495840142e6ca0d642f38903ea7f39038e66977e669ebdb5a03439da16c11764), causation_id: EventId(0xdcea13e382c225696a3e55108646796ba5473eb30490c44e85844b0c665e7358), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 93, ts: 32743916109185255849332959762995429, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:29.063329Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C4aSkShareDecryption, data_hash: [100, 189, 55, 218, 19, 127, 249, 110, 20, 87, 169, 197, 138, 205, 100, 3, 179, 194, 24, 47, 164, 65, 143, 114, 174, 230, 81, 153, 116, 251, 53, 140], public_signals: }), ctx: EventContext { id: EventId(0xed051cea3b1015e8f0ac8d0b0b0332fc21f14cfd98b42b7d980fb952472ad16b), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 94, ts: 32743916109188133541408458453047525, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:29.063366Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C4bESmShareDecryption, data_hash: [205, 89, 207, 42, 199, 139, 186, 157, 147, 147, 156, 92, 127, 106, 27, 242, 151, 241, 56, 34, 84, 189, 151, 137, 52, 250, 230, 223, 253, 90, 38, 148], public_signals: }), ctx: EventContext { id: EventId(0x8be9fdb614759ba6efe46c3bf87028bc60e1844e432caeb343dc25de76e2af15), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 95, ts: 32743916109188151988152532162599141, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:29.063396Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4aSkShareDecryption, data_hash: [49, 88, 112, 71, 156, 103, 201, 84, 92, 137, 130, 188, 25, 151, 12, 81, 127, 68, 159, 54, 230, 94, 116, 139, 202, 229, 128, 248, 84, 172, 192, 91], public_signals: }), ctx: EventContext { id: EventId(0x4f9f3192ac7e783ecfd94c266b5273ce636a47d3d071c97bfc8f0cb3e35f0234), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 96, ts: 32743916109188170434896605872150757, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:29.063441Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4bESmShareDecryption, data_hash: [247, 249, 83, 72, 71, 110, 246, 144, 56, 115, 197, 80, 242, 99, 23, 208, 142, 209, 30, 122, 101, 36, 85, 119, 28, 86, 37, 188, 147, 128, 235, 198], public_signals: }), ctx: EventContext { id: EventId(0xe934f688de93e87c240a7d97d4093b3d44f352bf3fb8cc94e16b306eedf6881c), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 97, ts: 32743916109188188881640679581702373, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:29.063502Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 98, ts: 32743916109188188881640683876669669, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:29.063584Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated +[CIPHER] [cn2] 2026-04-01T13:47:29.063589Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:47:29.064058Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 99, ts: 32743916109194516114857961957906661, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:47:29.064901Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated +[CIPHER] [cn3] 2026-04-01T13:47:29.067297Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), origin_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), seq: 93, ts: 32743916109258138935168186009749345, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:47:29.067367Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), origin_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), seq: 93, ts: 32743916109238806747378936982960444, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-04-01T13:47:29.067613Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), origin_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), seq: 15, ts: 32743916109245466021989548490891009, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:47:29.067675Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), origin_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), seq: 15, ts: 32743916109238640726682272239333725, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:47:29.068858Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 1/3 +[CIPHER] [cn5] 2026-04-01T13:47:29.067650Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), origin_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), seq: 15, ts: 32743916109247052441979887541223493, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:47:29.096120Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(208) in 137.370458ms +[CIPHER] [cn1] 2026-04-01T13:47:29.096206Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(142) in 140.34425ms +[CIPHER] [cn3] 2026-04-01T13:47:29.096206Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd4d41e675403506718aeedaef322f63b2e97eaf22f18b10b5926ea5d8eb421ac), causation_id: EventId(0x6eef9a9cb6f64e3ad5ae0f6078b15c9ca9656a18da55256146d70fdc13105060), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 94, ts: 32743916109794957634457207671326561, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:29.096421Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C4aSkShareDecryption, data_hash: [194, 226, 120, 236, 252, 147, 32, 210, 237, 243, 183, 220, 153, 105, 134, 133, 150, 153, 129, 87, 255, 28, 216, 101, 213, 245, 191, 175, 14, 155, 54, 245], public_signals: }), ctx: EventContext { id: EventId(0x5a6738cc1f82ad7d2a71a92c1d13349de66a832743ff0d2716645aacacdec634), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 95, ts: 32743916109797798433044558942275425, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:29.096424Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd0710ddfaa9e436eeb1e500e3a597843b598d23ecd0ab1db1fd8c7eed81cb0fa), causation_id: EventId(0x1e694fce5fceae627d22ed89b5c6f98f05181c2fd6117956eaae0318e08f3a8d), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 94, ts: 32743916109796580947935692695173436, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:29.096471Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C4bESmShareDecryption, data_hash: [245, 238, 247, 102, 150, 236, 218, 196, 211, 132, 161, 136, 234, 4, 162, 82, 54, 219, 178, 58, 161, 229, 141, 199, 138, 166, 30, 89, 134, 76, 163, 139], public_signals: }), ctx: EventContext { id: EventId(0xf648acd21bd0ac175bbc5380cec4ab48a2ff454766a810c3dfbe71ec8cbf0a2b), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 96, ts: 32743916109797816879788632651827041, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:29.096505Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C4aSkShareDecryption, data_hash: [100, 189, 55, 218, 19, 127, 249, 110, 20, 87, 169, 197, 138, 205, 100, 3, 179, 194, 24, 47, 164, 65, 143, 114, 174, 230, 81, 153, 116, 251, 53, 140], public_signals: }), ctx: EventContext { id: EventId(0xed051cea3b1015e8f0ac8d0b0b0332fc21f14cfd98b42b7d980fb952472ad16b), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 97, ts: 32743916109797835326532706361378657, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:29.096537Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C4bESmShareDecryption, data_hash: [205, 89, 207, 42, 199, 139, 186, 157, 147, 147, 156, 92, 127, 106, 27, 242, 151, 241, 56, 34, 84, 189, 151, 137, 52, 250, 230, 223, 253, 90, 38, 148], public_signals: }), ctx: EventContext { id: EventId(0x8be9fdb614759ba6efe46c3bf87028bc60e1844e432caeb343dc25de76e2af15), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 98, ts: 32743916109797835326532710656345953, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:29.096569Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 99, ts: 32743916109797853773276780070930273, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:29.096646Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated +[CIPHER] [cn3] 2026-04-01T13:47:29.096652Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:29.096666Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4aSkShareDecryption, data_hash: [49, 88, 112, 71, 156, 103, 201, 84, 92, 137, 130, 188, 25, 151, 12, 81, 127, 68, 159, 54, 230, 94, 116, 139, 202, 229, 128, 248, 84, 172, 192, 91], public_signals: }), ctx: EventContext { id: EventId(0x4f9f3192ac7e783ecfd94c266b5273ce636a47d3d071c97bfc8f0cb3e35f0234), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 95, ts: 32743916109801801376508552498280764, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:29.096711Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4bESmShareDecryption, data_hash: [247, 249, 83, 72, 71, 110, 246, 144, 56, 115, 197, 80, 242, 99, 23, 208, 142, 209, 30, 122, 101, 36, 85, 119, 28, 86, 37, 188, 147, 128, 235, 198], public_signals: }), ctx: EventContext { id: EventId(0xe934f688de93e87c240a7d97d4093b3d44f352bf3fb8cc94e16b306eedf6881c), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 96, ts: 32743916109801819823252626207832380, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:29.096759Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C4aSkShareDecryption, data_hash: [194, 226, 120, 236, 252, 147, 32, 210, 237, 243, 183, 220, 153, 105, 134, 133, 150, 153, 129, 87, 255, 28, 216, 101, 213, 245, 191, 175, 14, 155, 54, 245], public_signals: }), ctx: EventContext { id: EventId(0x5a6738cc1f82ad7d2a71a92c1d13349de66a832743ff0d2716645aacacdec634), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 97, ts: 32743916109801838269996699917383996, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:29.096816Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C4bESmShareDecryption, data_hash: [245, 238, 247, 102, 150, 236, 218, 196, 211, 132, 161, 136, 234, 4, 162, 82, 54, 219, 178, 58, 161, 229, 141, 199, 138, 166, 30, 89, 134, 76, 163, 139], public_signals: }), ctx: EventContext { id: EventId(0xf648acd21bd0ac175bbc5380cec4ab48a2ff454766a810c3dfbe71ec8cbf0a2b), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 98, ts: 32743916109801838269996704212351292, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:29.096852Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 99, ts: 32743916109801856716740773626935612, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:29.096915Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated +[CIPHER] [cn1] 2026-04-01T13:47:29.096919Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:47:29.099957Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 100, ts: 32743916109809346094834699704891708, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:47:29.100005Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 100, ts: 32743916109804439260911094380857185, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:47:29.100677Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated +[CIPHER] [cn3] 2026-04-01T13:47:29.100700Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated +[CIPHER] [cn5] 2026-04-01T13:47:29.102894Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), origin_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), seq: 16, ts: 32743916109901044859625112274665541, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:47:29.106171Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), origin_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), seq: 16, ts: 32743916109908442003998666058510685, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:47:29.106178Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 101, ts: 32743916109906615776335371587258209, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:47:29.106874Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 17, ts: 32743916109908810938880140249543005, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:47:29.107608Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 2/3 +[CIPHER] [ag] 2026-04-01T13:47:29.107649Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 3/3 +[CIPHER] [ag] 2026-04-01T13:47:29.107652Z  INFO e3_aggregator::publickey_aggregator: All keyshares collected, transitioning to VerifyingC1... +[CIPHER] [ag] 2026-04-01T13:47:29.107678Z  INFO e3_aggregator::publickey_aggregator: Dispatching C1 proof verification for 3 parties (0 missing proofs) +[CIPHER] [cn1] 2026-04-01T13:47:29.107631Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), origin_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), seq: 101, ts: 32743916109911338142818239815776572, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-04-01T13:47:29.111053Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 16, ts: 32743916109925855730404251592695553, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:47:29.112447Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 18, ts: 32743916110007869954555960541720925, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.113997Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, PkGenerationProofs +[CIPHER] [cn4] 2026-04-01T13:47:29.114911Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), origin_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), seq: 17, ts: 32743916110090751175679141274590977, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:47:29.114946Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), origin_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), seq: 100, ts: 32743916109908644918183479829616869, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:47:29.115665Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 101, ts: 32743916109909032299809027730200805, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-04-01T13:47:29.124007Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 17, ts: 32743916109956938494168452216062021, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:47:29.125660Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, correlation_id: 78, party_proofs: [PartyProofData { party_id: 0, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C1PkGeneration, , [29, 253, 198, 202, 151, 80, 235, 49, 140, 126, 53, 4, 36, 133, 129, 89, 69, 192, 24, 95, 43, 153, 235, 14, 189, 96, 153, 115, 208, 211, 147, 128])] }, PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C1PkGeneration, , [199, 166, 23, 142, 221, 151, 47, 3, 35, 221, 38, 8, 64, 172, 134, 238, 122, 51, 243, 118, 239, 218, 249, 252, 252, 39, 48, 64, 36, 104, 100, 227])] }, PartyProofData { party_id: 2, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C1PkGeneration, , [57, 94, 22, 171, 6, 164, 131, 9, 115, 183, 34, 14, 207, 44, 22, 94, 60, 81, 79, 10, 238, 91, 187, 57, 155, 175, 6, 161, 78, 91, 13, 113])] }] }), ctx: EventContext { id: EventId(0xf85fd2bc25865cdf5a5038d7da22671a048e6c623018c08ffad2aa8aa5759673), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 19, ts: 32743916110144357413957337514127709, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.132101Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, correlation_id: 78, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x863facfc994647cde32254c36c3bf29774e0ef089223b519ea1f67a93b3ea072), causation_id: EventId(0xf85fd2bc25865cdf5a5038d7da22671a048e6c623018c08ffad2aa8aa5759673), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 20, ts: 32743916110340999705783081334354269, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.135542Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }] })), correlation_id: 79, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa33868095a4f0847a507d6abbafe93f56fcc8d63d876d04a467cc1d2a05e4a71), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 27, ts: 32743916110459686057153328589451613, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.137145Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(206)` +[CIPHER] [ag] 2026-04-01T13:47:29.233989Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(206) in 96.83725ms +[CIPHER] [ag] 2026-04-01T13:47:29.234077Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 79, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xadc0611e7437f80201f563f421b6bcd7c8148559950ad598e1f2dc9cf819a3cb), causation_id: EventId(0xa33868095a4f0847a507d6abbafe93f56fcc8d63d876d04a467cc1d2a05e4a71), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 22, ts: 32743916112338302473619909326025053, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.234217Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C1PkGeneration, data_hash: [29, 253, 198, 202, 151, 80, 235, 49, 140, 126, 53, 4, 36, 133, 129, 89, 69, 192, 24, 95, 43, 153, 235, 14, 189, 96, 153, 115, 208, 211, 147, 128], public_signals: }), ctx: EventContext { id: EventId(0xf6b52577cc56a75e6b0071bd6e96f4a9236cc569a30deb9f3cc57125f931479c), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 23, ts: 32743916112340848124302081244148061, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.234262Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C1PkGeneration, data_hash: [199, 166, 23, 142, 221, 151, 47, 3, 35, 221, 38, 8, 64, 172, 134, 238, 122, 51, 243, 118, 239, 218, 249, 252, 252, 39, 48, 64, 36, 104, 100, 227], public_signals: }), ctx: EventContext { id: EventId(0xd0c04c69e0b8e4426ce1580e8e407d0820b52eec4f0b568ea40d9215beab125c), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 24, ts: 32743916112340885017790228663251293, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.234298Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C1PkGeneration, data_hash: [57, 94, 22, 171, 6, 164, 131, 9, 115, 183, 34, 14, 207, 44, 22, 94, 60, 81, 79, 10, 238, 91, 187, 57, 155, 175, 6, 161, 78, 91, 13, 113], public_signals: }), ctx: EventContext { id: EventId(0x45dfcf981784f035b439f9c0189b81c2fd0ee17c4849ddd856613f4690fedd5a), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 25, ts: 32743916112340885017790232958218589, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.234332Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x305f112b0f0602912ec06a9ae327d0a8783578da11afff704ca89fc33f1cc633), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 26, ts: 32743916112340903464534302372802909, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.239159Z  INFO e3_aggregator::publickey_aggregator: Aggregating public key from 3 honest shares... +[CIPHER] [ag] 2026-04-01T13:47:29.239236Z  INFO e3_aggregator::publickey_aggregator: Publishing PkAggregationProofPending for C5 proof generation... +[CIPHER] [ag] 2026-04-01T13:47:29.239288Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 0 (buffered=1) +[CIPHER] [ag] 2026-04-01T13:47:29.239306Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 1 (buffered=2) +[CIPHER] [ag] 2026-04-01T13:47:29.239320Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 2 (buffered=3) +[CIPHER] [ag] 2026-04-01T13:47:29.239332Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: proof aggregation disabled — skipping cross-node fold +[CIPHER] [ag] 2026-04-01T13:47:29.239335Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: proof aggregation disabled — skipping cross-node fold +[CIPHER] [ag] 2026-04-01T13:47:29.241810Z  INFO e3_events::eventbus: >>> PkAggregationProofPending EnclaveEvent { payload: PkAggregationProofPending(PkAggregationProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, proof_request: PkAggregationProofRequest { keyshare_bytes: [, , ], aggregated_pk_bytes: , params_preset: InsecureThreshold512, committee_n: 3, committee_h: 3, committee_threshold: 0 }, public_key: , nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"} }), ctx: EventContext { id: EventId(0xd42ae0bd1af9351cf075f8d4274ba78e7ba54b7d8a1b824ae6a87132726637d5), causation_id: EventId(0x305f112b0f0602912ec06a9ae327d0a8783578da11afff704ca89fc33f1cc633), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 27, ts: 32743916112434649817916894314115421, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.242829Z  INFO e3_zk_prover::actors::proof_request: Requesting C5 PkAggregation proof for E3 31337:0 +[CIPHER] [ag] 2026-04-01T13:47:29.246112Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkAggregation(PkAggregationProofRequest { keyshare_bytes: [, , ], aggregated_pk_bytes: , params_preset: InsecureThreshold512, committee_n: 3, committee_h: 3, committee_threshold: 0 })), correlation_id: 80, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3c4834fd578ad9b31a091eedf024bcc7abb2f4f6955728e499581dd30b0a2e75), causation_id: EventId(0xd42ae0bd1af9351cf075f8d4274ba78e7ba54b7d8a1b824ae6a87132726637d5), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 28, ts: 32743916112500947416117806442623325, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:29.246845Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_aggregation(134)` +[CIPHER] [ag] 2026-04-01T13:47:30.534373Z  INFO e3_zk_prover::prover: generated proof (9792 bytes) for pk_aggregation / 31337:0 +[CIPHER] [ag] 2026-04-01T13:47:30.534483Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_aggregation`(134) in 1.287635666s +[CIPHER] [ag] 2026-04-01T13:47:30.534579Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkAggregation(PkAggregationProofResponse { proof: Proof { circuit: PkAggregation, data: , public_signals: } })), correlation_id: 80, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfa168b8668c50b39a01f075a72e26161a554335787503a8c4b98cdf78d85bd3f), causation_id: EventId(0x3c4834fd578ad9b31a091eedf024bcc7abb2f4f6955728e499581dd30b0a2e75), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 28, ts: 32743916136328182461014738945323357, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:30.535018Z  INFO e3_zk_prover::actors::proof_request: C5 proof signed for E3 31337:0 (signer: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266) +[CIPHER] [ag] 2026-04-01T13:47:30.535093Z  INFO e3_events::eventbus: >>> PkAggregationProofSigned EnclaveEvent { payload: PkAggregationProofSigned(PkAggregationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C5PkAggregation, proof: Proof { circuit: PkAggregation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9d5fd8bc8c8fa1a66a2af85db9776d40473ec747e91fda2166ccfe9f43b49594), causation_id: EventId(0xd42ae0bd1af9351cf075f8d4274ba78e7ba54b7d8a1b824ae6a87132726637d5), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 29, ts: 32743916136337645640724551945302365, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:30.535466Z  INFO e3_aggregator::publickey_aggregator: C5 proof signed — waiting for cross-node DKG fold to complete... +[CIPHER] [ag] 2026-04-01T13:47:30.535492Z  INFO e3_aggregator::publickey_aggregator: C5 proof ready — publishing PublicKeyAggregated (dkg_aggregated_proof=skipped) +[CIPHER] [ag] 2026-04-01T13:47:30.539140Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0x9d5fd8bc8c8fa1a66a2af85db9776d40473ec747e91fda2166ccfe9f43b49594), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 30, ts: 32743916136346352503927342853665117, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:47:30.539743Z  WARN e3_net::net_event_translator: GossipPublish event: PublicKeyAggregated +[CIPHER] [ag] 2026-04-01T13:47:30.540489Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.publishCommittee(..) +[CIPHER] [cn3] 2026-04-01T13:47:30.542867Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), origin_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), seq: 102, ts: 32743916136447053279825726070294369, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-04-01T13:47:30.542871Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), origin_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), seq: 18, ts: 32743916136444858117280955605647429, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-04-01T13:47:30.544874Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), origin_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), seq: 18, ts: 32743916136445042584721692672270081, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:47:30.544865Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), origin_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), seq: 102, ts: 32743916136454063042573734283213116, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:47:30.544884Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), origin_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), seq: 102, ts: 32743916136460740763928418749274341, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-04-01T13:47:31.114931Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 19, ts: 32743916147034303786514292229676801, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:47:31.114933Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32743916147033529023263195677087973, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:47:31.115053Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 31, ts: 32743916147035595058599448180830557, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:47:31.115076Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32743916147036701863243873528285025, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:47:31.115083Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 19, ts: 32743916147036812543708316757590085, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:47:31.115633Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32743916147046921359460707203184956, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] PUBLISHING PRIVATE INPUT +[TEST] ENCRYPTING NUMBERS +[TEST] +[SERVER] 📡 Fetching E3 data from contract... +[SERVER] 📝 Input Published for E3 0: index 0 +[SERVER] ✅ Received E3 data from contract. +[SERVER] 🎯 Committee Published for: 0, expiration: 1775051311 +[SERVER] 📥 Setting up session for E3 0... +[SERVER] 📊 E3 0 now has 1 inputs +[SERVER] ⏰ Scheduling E3 0 processing in 59 seconds... +[SERVER] 📝 Input Published for E3 0: index 1 +[SERVER] 📊 E3 0 now has 2 inputs +[CIPHER] [ag] 2026-04-01T13:47:37.882034Z  INFO e3_evm::ciphernode_registry_sol: Committee published to registry tx=0x9b2dc412f74e65209afb9de81164f779edce966e92c4f33bad7e6867cd503bbf +[SERVER] 📊 Processing E3 session 0 with 2 inputs +[SERVER] 🔄 Calling FHE runner for E3 0... +[SERVER] payload: +[SERVER] {"e3_id":0,"params":"0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000ffffee0010000000000000000000000000000000000000000000000000000000ffffc400100000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000","ciphertext_inputs":[["0x0a8a2408021080041a8024b9e06bdb906b4f567a70f97689affbd6b81edf44adf1c7b2ec49269b766c87825dd4fa35c70912d4302e10658c32b19698b3c8b0c9b2f1e1ee0e9aca163bb5f81ddcaae9400eb273849a960beed5d6fbc9b7d996bcb2fc1969bd0a563cd9899a6506bee18ad069427d2782d9643808451125b4f8bd3ef57785e847e7b28e7822e41aceadf00d134bdc913531e9c40fcef38b6523edbf75c500b71ba897b350d1e049696234777312d2d363c6ae934db7b600b60661098523072e8b0c19a399340f40a832fcaea34829831ffba408a3b4c5284f18c5965a556d24e5dc78ba65e3e9f3c4c584763a78926415438a8796c3d49338887a4186b0168f3012ee800f6ff62d6802f46c8e002010c7ce7d6fa2dccce26565f1ceab3a0cfcb7f94bc97b93a7272620f814751503ffd907b3f2cab1eefdb85cac43b57f73aeb6e8f3ab283e83686a268cf4c7f10990a7e191852a0d091ad041bd8e00f63896a79e2e3a9aa76d9a020d0c2b0b12694d1d17b00c713935060a4c5077bd7ef57bf80a10a3c9129d9e82ccdfcdc992e915e1e59285d76f55f1dafa4df0fa9818ef0b2086bbf801ae63e3841da88a4fa28037fcb224af5ba8678832fd57ce15c3dd05394fb86421709375cf2f3a9b8311dfae802730d2d8790be131ac4e7fd524f8ce290f10cf2dc014be69c1ebc5810f7889389f50617d07590a8575aec154dce8563d4d65352781877ed8bed071990bf9e681c1e0f38bb6ba37086ace5fbb929f8d7638e2a6edb85fcc23b8bf17641db4382040220461660226cb80f7a08f8da865a8e9b0c621dec947d092e7158bc0a61d17d3ffb2804120c3bcc2a9b36ec6ab4375ab4d9f7a01b9bef0aac3cc3ec0330695b1e534fe28fe157abe816bfbcedfdc8269ebf7c013ac5802b9ba3c58b0f636a38b46e134179920add0cca97f1701c62ec7dd8bcf5866d313875aa768eb55f6c63770e3ae0f5278b43a8d7879fe500da0f1767a7ca0fa01b5d51f53c8860066c8fdaf54f606a1876de8aeec5902a10a97d557b24dad9e496a1149336c97ea15afb666f1715a46197baf0d76be18ab5c6c01d8c5c238a279e1f94821c855b2e286c2ed202fcd3aab4634fe7525e467fe3ddcc460e6433b65dbef274c49b39461436be72efadd21dea4501ac82500fa9ddc32ee9feb05e56057b9d35411da2158570d3a7831cca2217f91889d1c4a7936f96afa1730eaaeca648c193fbb13bb9cd9f184518dd8b1f84fb7961a92ff5ef4016c063ee90bbb0e475b7a72579a27694bd5c7a585fd1551693f96fda02e7319d16c6069650a034d4dc833b0660945280bb433a302438b867058d03e9dec31c02708f2d8f4e37c1d985c79e2cb3a8750e0dce045d02c46a96a0451a4356f08c4524fff0a9c281579cf3b6f951f5c02bbcfd94e7f81154ffc0a391132792639d3f7c22483f6db047b34d6795bbef31ff59ff42eb000656f8e7f2f9bc036cbbe627f4cd48dcf1439a846cb8f17ee1b40e25d89f065844b8bd108cb44bb9314e8b22238c445a5dad4d2e5525375bf3a8f6805cae58cb174c74d9888ab8f06333cb1865425c437bfbf6bb22f32096226416174d895b07b5a4db7b5a512613c4ac722a1938148c59fc3bbf710594cd9f02834900e679a1e8fe65f83a4fa9576267b74f45cebebb5caad8ec747aa75f796457aa4a7171aa4884d22edfe9bdc20f888aaa579874f0758d788d0fda14f053aed7d55c4c6870177206eac9e1b8fdaafa4a78f0a7037958b293cd738d1b7eb8b04d02387ae126313c68a244746dd7c04e55118e25e6404287d3f00a7e402d7dbbfe3de831cb3da77ae51aa35f5c8d19d92b7598b188a3ad01f177ccd8534833ed95cf409dba680b36e806bd6070b540f17f9b38aa1a8b3806d9690cb336333127769ab5956bfa885bde4a2019014d335eae37b3c9ff9051594f3533c1bc6d5a63621a57f1e724558aa2d93a75d7a6ee8c9076b583280c5c76c363d0f7af074ccbb1ed177ddcf046497769ad5856183e41578bd85161d9b3eb32d113ed9382947393689eaaccd82ce3106d14a667ce9dbfb22aea5aa2b1a12482ca9f8a6be2d3f913850b17372d9e576511d1246e777ae34972ac4e66348852ad1bb6d45e95b687e697e93fd17c4a8998186870e730247b63f9c5fa49b1c3501efcc07b0b0fcdec2d84f10a6de0c3eae05b5c64628bbf6a4a1bf3f26cd15eaa1459142bed94e3ae90c9e91224975259a57a7fd826698f01e5bbb2b3cb364c4f4ff0802241be34bd2c23d6b6f9f866809af9ba85daecccc46288ed8561c0cbdefc7940b75b899fcb630a1bc2644f85203b595af94eb834765631beb198e6a7afdf03b9d189833e2249beccbda22b00c4a1a43ef3d4f7ee7bd4f107a6365e19da8d56f531e4794ced134f9a565a5796e0b0db6ab3bf69f51c5f03cd584c30f97c22e64a7d61539e0b6fe73311a26bb95470bb1bbd8654457d658f7caecb5039e09a3ec9e8209cfc6578dd26b8e64ad6ecdea5db811c72f663103f7fa588cfbe51a28f05bd157a604be3572a7b66259c376cb2b605e9adf7f7928a1be725095f5a1bc7b7d4c4ca780f434e600da8aa47195b5ad0cebb39cb79b8a9ed41bbc86a3421bbd090c243148fc3dd3adfcb21349310ee5380a6f5c7a1b40612384fb0d2f9518cc9be14d9332204256acd7b72e6148dcd2eb4457eb458215e60b235fc68f6ba4f85f6de3f90764cacf39d53e3c86fe9df1381f8f8027013404df03bdfa0c1338aca4adff5ddb1304f40fc481004cfa2d0ee2919a66277999d8d17af48c8f8b641e5f50d77837fd058356f3c754349f19c73a3086ad05685b408066b00c58b54da33631ffc1fd2238a1d0a7744b25c4abf4569e7403e110165864e46314f99e06b02475e52eb63f5ef2c290032ae07411a1ed3ca64faf50a8d2f5c7dfd8091363472a53695f29058a8ad41ec1f624643995d9adcf1d404745622b22785218f354bb78dac07221184b002099617f9afd6664c2d2883d42bb2619c85a6e3dff496d3067e18548cc6d48df6eefcab3f3e6cdef52a5219b893373c614517c4f101e39691729771aaea8f425e184e498e9b024d0dc96f5f035c768c949f8c31bb9202f66c7c4ddc34597a1611e36d18dab6ce4952c601eed624b31940eabf12826449b37f6989a4a6ee8a7ea47af1f121b52aca358250f99eb90c13cb31e92417bed70691621cdca5082362daf4e8443a8d3fc09ae8e5ca991fe2b15ab38398c8571cbee35e0da59ffb1116cb4c9ae7b30d0145c10cc756929fb4a9d234f516ff5ca5aec5ee886bfcb13f660885a82ce3f74600dda6971cbc302c820388ba5ebce31da5792e3d2cf69f169809cca429c59e36bfca17626a69cd0a7222d8c6df1e5dd8b0f8afe2937b28133474a5b91e45748c3cc4a74dc3f1f7fba294fb3701a4c557506f9cf9620371e68f1e8815d17876b83ed37b1c421178a563baab1fe17073ca32d9242177737d785b29df0b17796dd9373cde8fc04b2d6fe8986ca8ac4c8551f57ad8f52889d4af5fc8491c78eb9dcea991aaa70d9f51567ac6d5c847e38372278fef03ac35c37fd332d7d246503bfd6fe52deef7b68353313805ab92d65449a6d0bb87820729ae7b3a49c9ede037610e4f91fe99477d3f56e272b7d76f2f86cd840c6c11a473f775dca5b457507b25bce396445edce5c2a62158cf08b090583f5a64fd176d0be6b63be68047baf57e3c513a656b88ed6ec3018452ff6826be03503b658f3af091bf77c06c335f8e71f7896be2dff1dc010a70d3ab862ea3faa0f5fbcffeffac9762bf6b4518d3c50bb90102af95da21591055e41f57c2bda85ab8ac104067116e97ee9b1dc76d0886831117992898bcea189ba9ca0bfb5c20fe190f636cde2f91bcc54f193c4db10216c790651a01b8a687febd9a51e2a8f08a1ef5dfe0a222f1fd4cf0067494c6824a45448730718d86e34b67ec9e8b2b0010cff1899bae117773593d9285d4ccc7b5c275df0ce3c1898fbd42a5b17ca6238513b01007c3129f0217691d1dfc1f933c4127bd9ff292227ca1ddb441bc8c1c8781addb60f2af2548096618c6a9e6415652aebd459acd84c025352be1c316b1623d69555b26a1f45d0ac9ccac9bacd838cb71db43766496c9671ba1d8d5caa2ecf177f2fbeb97f650af3895cf21f6cc871d7941a15afca825f7f286fd3916cf869a4f97a689f794f0dfcbc835b6830103b554d318710054e20fdd34ef9dd793c8cabf0fe4aaa2e19bb29769e1e1057ff2ca3af3875c281568e5f4d12812965505e0b6e97d4db73d8a4f95748848ea259e7f718aea8369a51a16eca3cdd5422b5f64dc5d5fc9aaafb27d2b2e68dd9d81e2ac585f6325a6cba7c19045de09f307d89d00eba53e078675e2d42ac1a91b15aa43232fc0553e023033c5acb26386ca970fcdf730d6c1ed64fc01dd1a3aef14189bee2107bb475cf34a59abf4bb95634e7ee316b2be320f6c348447d9e9e13dec5fa9087f6f12a12ada9827f43a0c0cbecc6b99cc5aaf8bdd287b9723cb2276ee7deef856765d53fa2a8e9469e1e220cca5706df79e3346aca2419cda462df4468fe3134a6b4da3845ac221134a1f44e508876878e0814b107473c90420b52f4ed5d4ecfbf14c1f4bd99071be91c129f524d69e21781aa46ee917104e3b83f9a3472cb8df54770ea024c7c8a34afc7339ee9f6e61f1e39cb855724044a5a5de608ff8082e5b683af6a7f2669e87450ce1444bb78bd09097671d52ed7eb41f17817424740622c0378f8aa831afc283aa26f538ddf7705ad0fece85a9367cb94a9c38cfe4d8097a3b92843e5989660c25160d6263450a4246371a8ad7321355df16c0f8489f2af82f2865963d0acb5234d0b009b86924d996f356e25485072e056015014467fa14d5e85271bcb8147877c85220073c197024408f0084e9a11824eb196d6edad820489ed1c39284f2021b561bf8a2a629502b4ae903fd875ba499df1c5b317674dcd5805d65b75e2847748da4ea99d7634d54a9c2904e1718b9c28e802d9fe7dc95cc0e77c159da18a1f3bfc564755ddea00afc9751260273a5ac28d47962e79576d994bffc2ad617b45374633659af98fd0d5c85e406e6b6b6cf3a5ff49f685175405e15bf30269beaa7baef140d5a8075c8b36b4499bdfc5210c11fbd3fb74995474f8d688133ddddd4e4d8b90dc1db387d30d312a159334e1c08a2e644119a5b5d454a9419ae2c4f0d2616b37658005dec8e62ca16ac7b2c5491c7b48732be69d935be30c024f898ba551fe30cb39e41351600c507e5ab81409b7e1edba27630cf97455440a789677707600990e4cc1c065f75426821cce777adb22cfdb57a0f0c17ee7a4d1f1edf378405c0a43d389702d25dde7b1447ee53650ba0ff3e14a549065ec4e5822a639e1a8fb4e9d0866da8fd980a4d87a09f9233b278dbde9f4bb20b94a68152543db13791f3822073cc0077eceb0c936e29614bc0f076fa279e228452febb1cccd8a1594e6cb962969d08993a1f03ec123d0ad970f6f342606ca5553644d37a76daa33608a0b7e547b62a483ce97849e2d0780c298f59e998f4942b0eac75ca03c256e76304e78274c5cb173e9e5d478bed6a6dde744476b1a649783e832ed34504e6750a5e827989bb5de6f10930dd65eea49360f92ee5fcf0d44ccfe321b829319f1df982c70c9c030c7b4904ef72974cd6218b0ee58853c3c9e7a0f3964b235e059c70c141281551b58aa11af30dd531f59c4e23538a18042a2aaf3d71a7998710a92f1343c6150eb781d4f46d7d81ab62d1e44b8aff38a15fdea875bbc36cd0e947d91faac661dff1e5de2e9a78a23c7c2ca729dca1dd37e69d6dd2445ce44859cec8cf6c81d4b3111a99795c5019020ab2c898a83abd1cda3c1d1d7acc5a1f180df7cd00cfbb40e25ce7626c5d59bede782ac716fb1e0b786321ea04497d637cd66c535a7504f497e0292485faf3169d4b3c180ca3147afa4c272446dac45c6740cd55ff2a86fe9205a3b75c78cad4f04be1b42a9ab1c9653d3f0235c9fa3ff3a408daf5513349e6df483ec81d53ccd4c004251d9e5b5a83094a4770a448fb859ae114362dc0a3e2e73e47624807c00c62c9def068eaa3d2c68005e9e5274d30ea89e4fbdf2cbef64622784eadedb2e5dfb23f719e4bcc4f0ed07f241d6d9721ac245c2f1605f28785df7f406d5f56f0601ad7ef8c9436f9a85e6c1edde7b37cc78daa35e4c8deef401e6b9b1d5ce955c5b64d94a67f249e90d9b292660986a8c110861f3e629eae74ac3f3fa8dffce0d60902dfa88a81fe4e5fee5816905af74d4be6436a7073a9dd8672d63c58a2c8cc6e1a51d1a05d8e3888cc644904d8dda248b21cdb5fe3c611a6849c205b5a69c10c51458eae2d59ec9ec492315d30237550a43507ff2ac1b43afcd81fa810fbe8d1d84097d7fd6ef3cd31e117536b5b4ee88583e42d3fa68f6cce747973e5f78d2c8a5f84eea172694cf10e62a20010a8a2408021080041a802408c6dafaa0c7da0655017bb803e5fa5539da47e3a6ef4aec8db89734a153ad50117180304c566248d49390bfc5c166c14580d425915580c45cfc622c5184319915219695dfa4fd06b4d7c6c82982cf8691f7b2ce75e8cc7bcabaad105926cabc0207971b908089a5036d38dc82a05fe56fcac17f5b7e0ddf3b33905123a67d46eb73d8fb2e1451828bf84b6b8633284b43c498b8060ab554e7e832db3f8b47a245671c1624190353ec15b454397a188cad83c24aadbf94223a2450c8d8a571dbe5a597c31d1050c0db3af2d44ea923933e540a0f83047d8130e7d19f560937df70e87a4f86a6e1724983a64963ed50dcecb4e592ff287a45e3c75fe60c5bc18371730da810672b1a7d36b4c0a0eaa70177bfa9a94f8d8c631f1f22cc0fb8ad89fb94649a2802414a365667b21d672d651f238015e4800b5d7527a3c5c55033eef8f5fbc121999fe44cf48944a871901f9d9a7fc4edf89be7853bd5b34d354ef2c7756a67c42386e55561cc6715bdc00fadab3f533789388ecb0cc0802f75283489c25400cc5ee939557c47613cfca3a87903dca6dd72a78bf411b733842b2814cafab0983678f6809e68542ed69e91f0b91ce75b4d8feb1e890a787dcdae80704f48c32d28d402554b1b1b4b708afc2bf5bfda78dc8a7a9878c614357ee90778d4d15beec584cddb01d0079db781b6100bc1a0267cd2a1282a0da659870e318afbca9c12aca28fa0ad06be78e297429c558b781214f1d9b689fa38d73315251152b135cfbbc2c8f64065b7001e05f10583f767be49d52735d80d3bfac664ad4a3b16fa2279a2d4ec1ac8b953083b27bb7c3a2d6e8ec51415958b11ad0eaca82f74b314ac9cc61b475e2e4616d62f7beebb9cc25b4826140550fb4bca8eae4e1f8f61819011176f822846f7aa7e9d715cae488908d7d4cd9b31f80bea908df830485df8a5381c962d1db6ca4a68de031baa1dd3417a7d378f72bd54d02e8a813aafa0e1e21df9801aa8f2a12aa6c3cbb8a00f8cdcd6629c7e3c25e0621629aa3a1c23446154078d3b3ceff53b2edd17f77fe122873543ce6c6961f75f0540b63975a14fd5d2414151f550e6e22037b23327453dfd9fab849c0cad37ed6398a3beff87ccae98dfc74408db7b22310170527e71b80d9a91b87fcfe5a151c2fb860c7209de9651f53b87816201d288f0b44c1540e1511c8754625b209ec291246a9567692d5abeabcea1f84b8ed0561dfdbe7fbb802abf401ced3f18946eda0160ce13370413d7b06a2ff42055c6491767abd408299228029f7c78961e7b56a6958087bd479b9bdc44749f2daa1fa2af5bc88364263be7c020d9c61a2bb1508a27f7a26c8e7bf075ba71789c059db7c21535cbe1319350c3e6cd0ecbc43a40cd2768f5ec05dc6f981fb213f6a0ac61597b30c7818b02e3ca47eba6fb2c315fd749e40933bf940aab61d29a4908b93f2c572e46a85d0e4c40535858c80435a3a16d2d0bbfc8287fa1a83e017c749f27070a37d8652c4c1b562175d306710af72632748c85d7b3d6b8439e74a6a087b7b8e56ec713450e6139e8bfaa4af9425d89b6924c5838c237e7f96a2f426b615cf94a1a1b240750fc9f575e5a78ce6fca7e541eebe1a9614a2f3b2e4fcbd841b789394050188ed9c18843cf9ab74f5c58c9966ad44b4b9990bcd6e0afeea001e9ff965f65a35fb292c90627cfbfab7adc17cba64dc8b2e5517ab523d276f46e93fe3f799395ed54a8ebdfe250b1563a9b80f7c4896e9105cadc17c28cbe75698f2c810e63566d70ab8a2ad5898aab3b3ab4afd33f639cfc6667d62657dc90312f0105137a5eff28940504d5be8d6dc28b5f10a44bf1695b805754a6633432af0ddb606d14f63ac7b0d6ec160854466c941ae7a14bd0fb94f690a223371bd7906b8d45570d27cdbfc7d0359fc4f6b9516a0a2cdc788d7eefe090044d54bb7e01f3016ac445f3ec3a6b0af0337cf4a312bdbb497b694962558a2324bc09cd53038de281fdb957b455b2e3d787039ce97d703320f2ea03f04271237a0c1410f1df5c9c19da4f6778fee7d4b4d97136620d26ea905ac0956879caf54ac55fa178e015eb5f6e584524ea2408c56cf4cf139e06b76fe8acbe9ce9c1eff165787df72c4755c0e1d8b872039c78708847cdb0839a626bfafda97864e9d7265fb117d8abbafd805384edc8ad9e856f6230bf6d5f12195552bdd932113fb25e8bee1dad5db887c60ff4d5854a422b6668017561deae0086ebb456780f261b97c022aa2f30ac8c615f58a06a058231f587083866a63600c382f5393fbd4134048f163dcdf78bb219b8609b3ea1773f6ba4b1c6cde1ce9d1fda8db2c1210f8f367002c486b55a08f70725c7c4e8437fdd401e100948fa7acce8efc2bd002bebd4e98f940a6c346a1945830a7dd29b7dd04a89c6da21b6b3cbca2585223e021742264f6b83958437a95b0cd50419ff9e832ef8f89ec664c2cbd82dd7b4bc1f362816b6edde5fb32771d1cf54ac6dd693614d22b974be6fb4f0b6fa591c2d3188d921f499d7b1736c4d53d62aa77a9c25fce0c2bf0d6984f55f12245edf02a313f15d00e7a698bb5cc9e5f9cbc8b4f831a96b089f1f4fa92c8efda691caba5007d77d8dd28299657ada3a49efa745fb0de45bfefa704fb25cbdec8d933ed52a6fbc9eb1152d14d1b323d4d927274bad5e81d91df3e59d0e1565bdbb10a55033820ee1520e98d4cdca69e2c816084c610ab84250e40bc9caef4ffe5c64972b10a8b3af973475a72a9e0038e61184769cccf2c7ca4c241d62b80b3136f8199c7f4c1cedd1aeac0e3fa9a0a4af91bc7808e00a6f5ce5b00266e8af136fe442fc724c00e1751e55f7c8b37894c3b8078024cc995215f11ee4c40817346ebd400b45172ac09e9dc57f31be8d9529c2fbfc1ad8a2ae94cc10176b3025d177429fccb61dd1089689ed9b6a1e0f5e325aa55f0a6c3fe0b8a2ef094b6f28bb317023afeaac38950ca0f8b2d6d93b99ed1bc19ace44edbc4fe0c6eead33ff9c494cb263112fb4d2ffb3203dd40ec7661e5455001c05f7b1b533020e81bb7af53f36b0ab9ee9a818ad1f5d303dff6fe30b050ff5e3347d185964da474ef3e6b3892123ff8724fcfb2e2dd91ec69448a8ada37dab47078c3da4c78d2551111c1b0af4264ec10725454e1052b6f36e6e459a7b4acb7313a4138a4424107698f0ddd754c56a0eed131b2ba5943eadee4472b506a3adc4d0cc6d9f249da3734494f0ddcf2b1c9470f3eeb1edbb7bc8ca85662b834317cdff52d7d7f14779529df4d1915ea6ae0a189c6cfff5966ee2008c94856b916366400a43ab98a104e66747fbb21450a87c6cd6e77252e38c1b14e69a52048f3f21679e79b1f8c7bf7a0bdba76974db97c52ffc4697afdb4c51d5252ffc05e08ee327e6391ea0050230f3e4466c77b393d59ecbeea80e05a3fac1814cc504bdc56acde3e185867a6a029059344aaefcb8658465786f3c4818732d49ee496b47692f72163b5ebb0de57946114f3cfe42efdd03f8118a06b555c8a4cb11c2d386cf35359d81a36e898722c85fe456e8bcb7d104fff9f44510af541a49fc130215343d1e1d1f5d32950c82632b4a5d2b4e0a02709ba116a9ff0b073b6d7c4411d69ada33c1c768ac0b4d557a763c535ba445bd7a1193fccbc8a91bcaa84e3898a35fca5f11c3d21d8107e57e86ba9240c3e5de9b4cb491d336c57b830dd7aa6d0379889a28fb7f60080db280f934e9b9bc684b95afbccdd8fcfaf1ceb7a71280dc2e6fd41b0d50c313e9c622f45e89a061e23099f4d477a59d421eb57854aff27588ce10c49771c58310b5af626f12255904ab3e4a5a1417c55fb444c30cc0050ff1198ddbcc9d4158c7df6340e220c8150339c822e967132215f5a8e125cb426647c97f2426b2684d260b85d9bb3c6dca9dcd1f4803f38bb7378b8ff2fbfcc4e204259e5ffc9b215e8ca9a53c4ec0d7c3c286c106dd1af36ac744907638eebef4aefb26157834bade66016180a1d4a1902bab6d906f4cdbc010211540ebb5a6a3ed0854e586928ac5caefbce6c69a241f50cf7b9229e6de9018e8afe79edfb6e2d29189592ea8773d84cbfa33733f019c29a1edf292fb16d6d56ae355bd0ef81c400106adfaa6e4ded8bc309517dbac86948d3da704eab7476c18d86f7b41f12bed4aae76e06687ce94b12b6230f03d66f57b76227c6b3f08ec54158b6c3ac762cf6a66cc3d862d75b7eb705f8165a0b7a07135f72f91c9650ac4327e4530e3c43dcf10b076df17e1362ca691d1582cbc6cb53a27d4ba9fee9164ebaa834af8d372e0f9727278897ba04429b800fafc9e2c0e34ee600c3aaecd79310090ad0942ff37044297f1dd14da4dcd787817521de0532f50808688c3afa9d23de49db3a1936a3d9f5f1cc76c0b52044160a58b9a222ab4c2ddd4436d363a0c5490a6fdea7420da294ba34da0accf8fcb0f68560c1a599b468c1636eb1fd011e07230da75ff5cfae99684d6c06246b74e009d9fe709ff0eda2e012118b7446a1aca966ec9663758c990872f843e5c672115fbbd7bfa48e0e729cff5ed3015b5f2595a0ece7da692b69c79facbfb28e551e0a1c0a4eedb533dca38ad4b449b78ccaedf666f83276d8de195067e542b328e4ed45fc120f89c124b0150f2f6d58226eed4fdfdb1e23f187203ba879581cbeefc5c9e9976e5d75c6dc59a860214bef7a20a7f7698c58e53ea3f0f6e033a2caed6870872d4e7b28e059ae12f9a879e4f4eee1283a5c95c8b4ef341d43f74ade921a796a6d54adc3f313c71419c0ac51ff2320477b58dd428b679f6ea5b10b15a9cf547ae211272440c46bd75c132412740883b887b0c5c4141014c57a117c0c48973cd7020ff1e79ca8b22375c971ff1ef580d14be8c095920655e4f8b3e750d30453dbfcbfeb3205f9db22f78506d4596ecb8727e5d9ad0a2494085da9a707515883e1f6eaeb83ae7a34586a9006869eba18fc4d2827de394006852aebec88d09320014039f13c3a68144d0ea921e74e169792fac692f5c57731306cf4c9e75472d2e3b9f041f56d4b333d2fe1d51767a15f82697b4cbe344b3ab17355659a275c01122fade5b20b990f55363f3146dc39b8223e1bead1fbda4c20cd6261d62fddd4f511a0f9e9686191a5a0fd1783bf5c6d7dc848e35e81d9a048a5e183a3563a4b9f2af49b748a36680f492e78a8ba59f8d47055b82aaeae8dce764eba5dc92cccaa08a98f097ca34edb902523b51884382a4fa5b0d41e2cfa1da23abbbaf7633fb0c505c901d289e221ac49fdde956af9f22979001b97f8bc2697e915ace9185011ecb2e76f16530d8ee0f6f63be710f420f2f9f180d6cdb59757378eff785048a5356093488ea605c283e30f9565548f7a1f1921756e826b435e2c495a4096012b77975660859609281a4663bcf4b463b1d42dc72e55e8e7500ccb1bef7956429403c62ba277bcfd811ea7f846e4f9071a091aa84d15c88b1f2ab909c9423a58d3c961d05edf8d44860d480f4efda924dda5b11efe00bfdc7d6788fdcf0bcc49c04dc74b26a0a17f54ea3cf6671535f7045c7e97d62283d8df8155f02a1416bf852a5decdb5d8c4930723c7f43e7664095ec6acacfa0626fc8a2810a41de71dad3903ddb21448c0ae45a30fc63850e998df17dc74b1ef0493e54ae605e05c04ea5878e33675ba2fdc898d8715433fcda83726222eb9d5fd635e0a2e25a840fce11a5fd7c6f9ff7d2e5a2f1b55b4f2ce7e983f5408cee7d7d39444b8dcd4ee58f95dc0a6a634df6c4a3ed9f9170da4d707743b582dace6c67d7d463969057aa50ef24932a47c4753e39c365fa8265ead5b05b95d6b42eab556096b4dd02afcc1c6b8be82fcbc46dede8924441cb940a46e3ea0fe9c69b047f050f30e82a3299724357522856213ef40a42998d02e02856152219c4f49798d10d6a1a80027b3b2bcdd861f524f578a03c6b79e2394929ed81b3534b5888b7804456c20c2535612481b695d05d0ff09886dfba683b06ae1635422f3346b6a2a1a8458df89916094c57d03a308eb680e9c8db644a546b0d9d02522da25205edcf3872ef2621415f9c6c64a758eb0289d3c29d514107722226a650796e293a82f84ae2ca865a73017ef550911770e563aa9970e637b5e135d83ec1cf60e069fcf7b440c170f81aa629f38a0f8e5dbe59247e75f9151168a4cf9bfb0dcbd3c842878a0efc01e4e409d07b729bccab495e333e47c4eda5992209ca9bf5091f6f5a0d1c5a4bb728673a21dea0ed9d55aaec090d50a94176a099aff98f77a2b314fad2438600e487ee720f074d1085f9d3819b484fb30a052b931e12ce2553fbd12b078dc59238544c195bc7159f29c76206e033ef8c5744b207024eed1733a395bc09601e9d09439d2bf5cb30e5487129855b52e6306ed746f22e1fa7ed6d94a42bb6b88a8080c02ed4571db0d1c46d6a518d5918f9aa3614231fc393e2546924722d0f221a7f9378c2001",0],["0x0a8a2408021080041a80249da59770b104ccd51f86cd52ad3870c4de27f93a4fa317bcf93ab7da42abd1e8acf6389cb6d542bf952000b6d0a6637362999378920785abbce58e75922550804d0c4b8967f6dc063922bdc0b366ece869300f4b10f857d164b2ed01a7f3d40f7d637e6984792d09c771eec962702ca411d1c9accea244c3fff9f3a4137aa53a121efb9161f44289b04728c51bf550a0e93256418f2129b23037b6c14645eca279f4fffd03fd448d2998658b1f62d14af4f18e61dda736b13894dc21c7db4450c1a8f9d5059d7a3eea2447486e442d493ff0dcec3af4d37d0330a2291cc7270c116eafe9974e7273db7fc4e7fabbad2b3e1275f10dd51eef8589b29dfd412747b6a0d79d83016f2396fbfe300e919c263103d49c129a176e7e6e0983b8b9430029793017960f0b3fd88a3e1e87ee9eb23aa4f5fd89ec67ec675de23dae6ee8995e1198f277e257708843e90f2cbfff78235c88be75de5c5ed07890d0035ba2342985bfc744d2d3c48b35da770415f0ee1242bec95136b3b56b8e44b179f0581f8c9be85c2a5ae67d3c6eb5a9f5bf487a37ca85d614f7dfeb57d5eb08e787f1ebd486956f8a02a78720d99fc16c64c335dfa17b1f2884d4d6e11c5a454826dcc4600539175b082f27f34bbd5350d31a6b8e419f7d1314318eb70235698021b544eb3678850ec55e9d59aed1fbb8911bc1afd41d02fe876f4ac01bdc7c4d329b138b0c24e72ef0c25c68741f9f67a1a4da90df0cbe7cfa1d355874c3092979c4041519e860e868b082f8e74296ecbb442341edc7916b07b22fea6c337b7458a88dbdba72fec13272e2c005a950d47931e1a19ff011d21aaa2cf2728f5b54b359574c93e4a95c04ccc657f797feb8975b72d85dac3793940d83a6fc0e955b57979d3ebbab53556ae537b8fb31ffc4253c6d98c5ff32a160d2836fb62d53bcf3cbc9334c53685011f00fe421237c25118f3ed58a862458bdfa76f9a417c03ef55164189274ac9ea9a73ddc0401e88d9f0a84789ec78a394ca60508efdc56da39ced08be90fe2be8308baf14a1a1130b841278df95f92de6a98f5039bd75489974213fb369bde76264b5e056991038bbb541dcd22388225597633d72b9d266fc9c27b4ea33325007048821deaf0f51565198f8101c2e9f5904d288ba05825925d196416062140692704fd40a6d9bfdc2ec41ab5c73fa95744a861ea0eb6c9955c51f20bb0a22612ae2151562ed2b422713885914800ced1ac13f83aaf397e2f9214102c1f8a37f976b6a06de017cc3338041c44053085df2e4690329c335d418d9000ae5f1b0f9373ed820863c5b104027d88fdd7de120235aa9a4d22ee9b1cf6602cd1d3c2a9e1e478e673622bc3d640e2606b34154d469e21f6cfbf669d7f78dc8373e8816a1862434124bf7a6ab96f801198c170b1ffb9a4e89e7ec2bd6bb6b348ced7fa7a1d34a6e76c53c159053e35d415cceba6321c59d9318f97b20cbe90f92ec33331feabe186be1b49df369c2e9c146f89af736fac4d987adc6b0c9a971531d6e3998e0ebadd56e1e846c697fd2e3d03d4db80f94172726b1d2f755292e94a7374d09b7a835ae375602bc3676f10c73688421b572110a5e920b9140f05d559b30f3e120bb3fee758e90e5fc19613f1ace1618c13253745cd078df8d56d1ef12c5d5b0818922e8046bf164c60504443770a7dc551a5e6103047a9d3aba37a0435aa0cefded4eb5bfaed014080536e76b3757d8ddc0329fef435370a13244b8614eb0475f29cadb75b41c4f5cd1e668e2b440755cd4a1ff5dbb4d72f2d525d0530b3473f3fea608682e3dd356f792bd742e78ce711bf37803f5ced616c99c36fcbaf43388ad7bc483f19ddee90129a8cedeb00c3b61a75925bf021a6b39fdcb9c312267587af597bc2d86f172b617aee38592f42b1c9f556bdef4ed7693faa49852f63bec6c86d4ec2d929dc74f4ec7ff5cb6ae2b500911a4d9d9ee5cbe4e2c828d4697ffee920568b68241cce89d394710ac077569fc2ab552a98b0963c3b2d6dd91b70d0360f6397562f9bb1622ef9abaefae3f4c906601f857e4e256d4b5e593f3ccd32cca467f15222cd123ab54085b97eecaf0b233b57ae3325d737e3dbe844c3a6f62831e254c1c68e9b44ed614a4c3cfcf2d3dd85cda1cc035f795c779ad76221ae2ca9a768171d3818d54f6230decde469ab916e6b86f616fa1ba7721a5b86f4822c25890d4ec70ddb6f0fc85541a552a5009a99b9148cb8dd62e4279fbf34e0a66562d6a0e0028210e0b72bc341bbbe87fd1519659deafc5879f738c96cdc65bc5d50511ea9906013505c566a4ccf2a9dae551511be80a01d45547099ad6504812a533225775abc380fdc722b67a5f7e4d416ee00278781bbedf477f87ccd8fa28b79db21d33bffd72e2c7e116dc2e30e70760dff57015f4dfae8a6499a1110358c31ebc4aba2030679d28b2238c2b1fe3aeb4a8e33b91ae03629c30b8997340f9b34082bdef19a0d70b16a7f36efafda7b7b280833b925ecc79fa04b7602a57aabb2bde6abce2e9d41041896c939747bf073a8d741e3ef13d0b83be731898eb2b2ef8f99b79b7dbb0ecd11d8fcd3cb237f15b787f3c883689698f3c4e1dbafccdd0b7ed070504ef9070c8270fd8707f7ebe4ef49194b2e53a6c6059e43acbe5333d0cdf75e201b8ed4f136bbd977df4364271ed37c55a217d0892e799e990cc8bbc3a2ca7f083de0a65f150a3aa9e5b761eff584b8594c4855f92fd6416837ba3afd2a16bfdd5dda62610f81c33b6cc1e2e988740bb683d1531d8dfca94d11987ef5211aea1473002ff9d9c198f55b9ddcf28c51fc66db5e9eb131754c9249ae111941e7e8740ab7c9d8b2f9262f3b36085eb8a4d8d8fedb209cfee99e071059a736f000b560b8698f9d49857812b26288b941d09411f1b618c2168151dfd72ecd00f86507d04bcf64988f19a7f6647b081e2964bb8f3c2edd80a3c9bb60d4a41ef7ebb426cc489a7cdc00a38c5926b4b9b8e5ec299c7bf8c595818665e5d7b57f079aa39e07a9c06f8e413621d04dd81c88a8190c566fd46be35d995ccd2ef95016ca6ff17882d44fb7bae9f958f821198445666b86242390600dc48aea8383412688c36dd18c45b4c5d0ded9c1b93fe60531708331b32d0d528c774a2ea578b3047ee217f2cd84e23b6df13c799ecc0f1d5bbb8c8a8c2578be20989293ff5664fb526f2ffebf114d0a766f1f8eeb18e744c4f99d5f9a6ba5b3a7687af31fb2f975dfb56ef7170646756bf4ebbc850765aecf05a66c1f4cb84ff7813873d24ac93e92209beef827c8733fcf76d8d9cb848276ad41aad07ff816b53b39a9d4bd83e57ff914eeae259c37b2e99c25c705eb76d7b063e6278c8b814fa2d9d8bc79519d50a8c9947653357a7dbc6aa92613836f45898b70972cdfaba579bfebce5e949ba8d6c3bd330e18bdfc5c83aa8913eb0bec1482fa7cd4651c17b01c31a3b11db64804b787d8c8e7a288c8de185a877dc211af2e12bd5f40b1b96a61d46575c95494394ac978e4c71c387445335833eeec816f7d66c2b629f0db1d4ea89c30829925f31c1f02d5f35c88acca503337806637d4e43dfea927e84242f428017e0cb3fb1db140ee90f48963598cd2ec3f279a81d363c340c13e53ac6fcdcde5fb2662ca5027e70acdd10b26b83c1d7762be54b12e0ec8bc7a734fe9df4ecee20a4bb08ac2daf99ff4372acafaee65ff2dfc34f54f85eaa3de17f1b254957fa781b9b17922d28ab7b27aca300991fb069063ec0d14757da328b981a132baf27b57257c6e793eb5c7441cbda453cddd5abf3d908d24248361c2aa7fa6701d28661193b90eddb8c27a92a485f4fc27b4fe30e9c2330b86b68dd29f5454bdc3178d628eebcaa29f3fac419a25abf9880466dc0423e10cfc26360d782cfdafb142ff93932b51417c6c6551392e01a74509bd6a7d082f3912c809ef97bba6c033b76bec9212902e8994b5058642c9f33ff9001ef919f28073a5abdb462975d27194eda918295b826a2ef178ef5454f3935679617377e2e69f885b82919fb0e1542a310177dd1875af4bc5714788f364fc857c71c70b64a96a456b398504a0ef3f63d7d191b01c5a8f3502b6f5fedd5f4a94632902923c695589c79da63a4160c321b48e6e3bfb18286eab707e18629297ab658f891978b415c8bc4584204e278d555bfe7f2063f595ecd7771cb7e500b5adccb711b01713c14802388b56a647a57a68d856f0ff60067c5992874138aaa3da09b99a2351c65f55650a1f2dcc882edc2499085d58ea20c2cc816aa2eed83b3aa2e9bb9eade32e4789d308e1414f5dd455b491f48d7fce0a72dba90e6d8b37bb4a7a0c295e1c1175e5da5cf19f9d6f702002c56ea8f5520e7e07e0c067770b8b5fc995ad2e5901fb6b64d99f19542ce24d24e868d4f0b138bd20de2801481f020c3befa6eca8e8d6b051e71e144ba14efa92a25d07fac7c10130ad62efb1808f8aa4c0601587fc7fd8528c2afb4eab533738b14fb0b4c8ff1e7398f33837e3c092cb6bd969aa095b2935c63b1ad3eb8be03d0da37756ea4e530c350db8f48800deb86c936310ea66766eb2998ec93c8ac02cf686600d2369ec6bb73249758a35f9aaaa43b20adf02b242c7223e453ee7cf70ca852742bdd59d4c3d4fb77a083426f7cca5ea74aed19295b5b63c837eed54dab8faad309507d4eb13dfc9eab2cd30167f504466c205dfc26a6cfaa82654a630dafcbaa307f29a2d3019104e8aaba8198a3a9da36544158313d6c7c911f87ee296c791de4be08cd3d29a06f164a4e4ed5ab8b7bd27950c34d02c4e4e5e79f844c878068821151a5eea552a436a9e42396e9efd323f84edfd271d4da6c24e5607dd6cca70c3271f8e9c54f4272f3782e7c547367a3c21a2e4ff186e74c015e4ee6f8554b2c55c969833719f5e2da30aa3f845714f2bc7c9e1df6e12eb51b413372bc2a9f01cb2498e15a1e08d1a73781e946a628564b564138c175eed9f31772b99c7e80c36621d6ea0d06dc59ed7750e1748e54318f7e5e488bbe53553d6f94471d156c1685b1dc283ee782c0c59b1868e788592c89ae9542750f177780f91634b04ed4ef2625749ec3f837c56d2a9773ee4b4cdd028d55ac5c49f6f8f1e23ba9126300c3724dfa24950dea4f2b55e22ed17cba022ae8bcc4b069e53f7c8572c09939605ebfd5540baa7934e961c38d200b7541500b5fa222ff25564513f7bcd10b3732199963c714a2473c694f68c9cc86d65068f6cb2264a584ed8cc7356183417e359b627c054efce5149b5f268c4433a012dbc95f08d4a772b43c8a695fc2f48f9b572a4134671eec064ccbb1fc4a9e942b609e3c36ff61a32e1a4ef251fdf61a4cf37498d7c755512b14640b40b2df53025cab32b8d40be9c7f2b348c744c063e21c29d26e31bbee75957f77eee8f7276dc71fa05b50b83492abedb2de58ed90b95b777fd18e359c8387468f5c8ded4078b9c7df44391d50f682d8a9b009f325d7d8ea2df1dc9b7328e97af9039404d19918721f19796cc44082763d1dd054bd2886bc4f9aab6585c0d10cc1a47b67ac52d2be19df2bc7d632c345ee372d728f4ff3ed10b63b0442c4699611ed4ec8745f58a99886419e34595144840262868dc16df22722b5dfa61d5d3b324a650393f4f6810316a8ef341a7c866238e02d3daf368601c72cc1f603dbb2b3bebb3517f4e915ba95f98f937583cf9cb12fbdbab0b733e93fc71de4a262264d01b1a6c471e9b70b579c6a96032ea24c23ddcc7958ac0d9c211602cce646d43515eddac8f01625e285728d41020fd74181930cc7d0dc53cb90c05f1133d41b2ad704c1ab5c2968afab7ef6cc87a4418cd415bc2cd64dfc8a48dbd1600aee353576657c1fcadd1dd67a82401424a3fb261985ee71df0679bc2787fba89078a716582270acabb764be4ce576a8e8aaed31e2a1884f50e3d2fec29daef9e47c4dcace4b605b57b71b7f1acf0648aae9c179189bcbf4ad8dedbeae95aa4b71c77af94a7b12d1e1c0e323c1e9e25746893f70ee457f50b005d91994f58bc0e925c0b633b5e9215f79e389cedab11ff6503d2e0156cfa60f07a13f3cf7e7737e6e03e0e6d41174058ce9a3dec3fac61457f547baa8f9f67739fed4c61e5dbbd530ab9ef945e90c0373cc3145a582a3ffbcc85ec1de5f18317f95c0e6450ef56f562f630cea4c76a66c5a9b61d28d9a79bf67b5a3342a6a1c2fd345320065372d7c9c4fa2fe96bb75266afde566949a525f1e0872a641c503c388bbf2826e4a0ca81a2a055e7049b4fc23d1615f2e1e388f677366b8adafb13d54e3c5eb60fe52cc37420d8e57bbb0150b556d9e10bd43167498fbf8290f8c281abc26f558732ab65bee7b1e6436da4f11b269b115cf9891743499f55de3b21755c6e3e4b1e7dad30c093bab4c82b324f8bb2b5bf7caf1c910043ec723ed4a16983cae7ea0c724f4348ad1d04bb9ce06df75955080120010a8a2408021080041a80243913ab92694411ce2e339ecd59c9e6d54c7d339bc8073295957aa61d471af1f7751bb556d51901575178573177d47643c8a03d9225cac53f4d172a740ef6c22d31089e52d3590b210333a91bfd8a3c88ce0fe830ccd6c8eafda76b95e532344f65ca0b3defa536741989c87e005207fe3fd46f6071852e9155f442a0a6f5a75a59b57e3f2c5ed863ac9f895178eaa7d5b2cad6ec908217ebbe6534f3fc1026418e5b463b47ad12d3326d694bc0e262690d3255af5b3c54b4e8adeb8741ec33c7b176d2d7c9e86f9ca2723dabab036415dd54055b656d85cb736bbb870b1a16a5bc209cbe9e13f6ecdcf0b4c9029f649171240e8bbef3669ef4c66db29ec9521d96ef98403b02cd787a7715b5580bb2bacb04a0d05f652c0d4cfba05c369acb0120c3319fbb0139f2ed2f522c267611b5fe1845b65a7b28cbd1c3acdcf550bdc49c63936f410c8edefc2ef67ca00c717ca23a64cfb0b42d51811d706c5cd65da712d9494b0c98266e1a629f4fde786a478fc0d0b25b3e8fadd15e4c0bfbcce549482f41fcffc1cabf93fd0018055592ed9f4960a1999b8e0a1a01ec5b2523e6dcbb57acbf16bf25aaeae9fe4b23db95950f6cc93df7ca863c02e2135f63d94aa06c81c10cab5e63b98ff58bd7eb0af0a86e48c1b15a1c8f088a5267dd7ca06c3ef86463c9f9b1f52d67b3aa019f3186c91a2296eda47efc20dfdabf272c7f179315adbc76ba82e0771c27cbe4cc5cdd9a4cebb018e0712af12c1c940669f7b35ccb7ffbc1990d2b6e82d834ddb70922305ea7813a64cd1102d251acf99748f6679cda6a0ef0efac652c3d4946f4436bb69f44123e842ffe03232081db102b926a9cc335d3e6bb652592383673944ff921225560bb706a0623d38cabc00e0c7c3a00663903a2176b560b56439f8ce6f98ad0e63c27cdfe628c2cf4282250eb8e48c9089b4e7e3994751e9b3dcc21c32ccc6fbe67114a842677e839c586200c1668b9dfc79068d1ee565d92cabcfef9d71768763c486642b43440af150e39f55bcbf7acd0720f758da57bfb24134fd17f8d0c15f2b2005710528d9f2b64bb3a40476ec5b03dbe2da009d3464db472bebca3fdf8aabf1a753d50e7a0aa59fbf481c19750ae7acdb299c3fcebec5f81552d19ce0e067fbf920f9c61c40f819c234d66aba5649ba2205f72b93c584ecf0d3bb4a1cec29bc202cbe0c3ef34038c148eb2e1d0201c0003abe09c1ffc4993f69b4f4698cb95845f802925d77bf1ad17a319d2a5ac7500a31ac02f701c95282dc2f73530ed8a569d54af61484a56d3f73bdb1f146902756a08ef2399b0af7d9e9f5e189601618f68b68641919e1efaab0253512added84fed05f17456dee49150801178a597d3e0ea882c3243397b6a693c9f97a73561419199d7a5fc820695c1b9543bff035db3602def6c61f1a26220a86b4ec5cc5da23f22b436b84648143207a89a18a6b72a65511171be6222a2a753c791858de3ee271af6c80b9a321ef60a0e5a6c1de0a7d9dbc67b13cf2c253f805d4d975893dd810953281895b454bdcb3a38f5337b84c57680d8fa2344d6cfd4d4daa603fb21b0bd4a00790a2434cde165782193105b71b0b14d7a18e34e00451ef71c520ba1448a9ca654aaa019ee0cc8b5552f2a39d26f9207eead0df58e82364faf5d4228cd13d7a087d9440c552b931173cc78efd26f3c74cdf207d4a73a0ea0c55cf1aa84cf691c4a767164a242b4ba48ff2dce43a9e0c9dcf7b6d9332ad817e0aeb685b3cbb3073db3a9ced85421ac301afaa4e8ab02f8ecca170c4d57e3b14432dffc95a8c1b3756117c20efc2bf99f3ac4a53913b5c9ff4f127cc46b195b43da253183976794a1df53ab9d7aa5a1fef60ddb32373a19989ea5b821fa8ebae9f3327f7ad3462afc3e6b85d9bb3f7047c071ce79cbfa22f8824e5d5a92b427e2a0c791231f35503af89f5557f86db8b9389ab64bc8d1ec3b3b13323e70628ef2fdfe62c7990868866303163194f229d76ada2317ae8eb5419edfee31326344faf80bc40e2327c71ea60345184ec31809e34465026e416c8a36b6979664c5de4ef4fb20fa9bbd171237599e65c20b04466ed78d77714b7a10e28f20d0bf1291f26ed493be8beb8a4a5a0f87a0c36ed301fc794c04b94006777c2d759ad9215cbb709a593b7689694e261f2768588f645a580afd1ccd95e278b79df628bb10e381c431f46d6ce2da49f46457f852c0179d1ab028d5f16454ef2d2b8ca1d48519b8aaf39ee17f6ee02a269d9bcc89eb77ee05920a71c2741a97d234613d1351d4e672949014a95466fe9290a8f4d9e50bab4a0bf0d7c5ea5b0d3c23c2edf87f4f5fe284c13f33c55d567e3619cc300d40b1263fff640cc1dc5d32901764abe6b60f3c6de86631475dd0121025c71c8501c58c9672b270450a68db53ea615b6185a4dcb19089a159c294feb501d1440233c279f7c9e208c0f236f6087673cc97002dd8de4fbe80ec69a683104e7c1636a59c5cf261bcd4f6d2754f35945c9fd31b5abd818eb7a591beb23d7bc8df0f47707b53479de590b636a39f4b37ab611f178916ce15676dc639a478ffa0a74a15b2dd5577a09516049fbdc1bfc20bd0a81241925425ad448a762a18c7e82f593ebbf51967ba729dce2e3f5eaf36ff95a87a46d8fe39b456e766f3dff17f017e1859fcf1666e33ec99da58646149f5b0385f87ed44f131f867338813bb81fa3ff43d29801d20a8d80e6711b798932d2bf05bc6890a4091d989c54f9e5e81147b07c33f3cab5e50e974c6d6ecd5dbc4659604577074768c03602f5782069c6b5c6813a68de2f78ab0be70d445a848713da98999ce5bc3b6d8cec37ebcce2e7b78dd0d93d9de4f057719a31f0c0839d3a7edb2d11a7960a893db0e865d9204f55038db2c6f7fc05bde3e39bcdddbcf777914f0886e260c8b8a84921cbd540cb0ea4e8868c103fae146dccc5a57f440f3313fac9af8563db30e95c516e88f3a588b44f6ec7c8760e21891713c879c72ba6057e505c51c2f608c21b2d47dfcddd7355437bfc9b4a7eee40bc89184ed613afa0a73e48bac67c810f98f7707746665591b4a1bd30271bd3c3dbf3f14fb75198476b0020fe229e1d2e7318cb5e4c3ef58ea6d96fb89179d8e97ddf8c4e65de2e8721fce9f43250ffee6c5be8189c759db9cb1dc0c3edb54daaedfbe3ee85f13f90d3dad13fb7c06a8f0d8c25512489a3f908cc5c588ca3237ca64608d9cd6cdd2f8b0bcdffdef5fb90d4127af733e41cee0381c12ef9797e9e9d1382362bacd78e6e3c80c734ad18b7caf8907ab2c8e1b91415e9d4ef6a63617d867b104a4203a83ff3d04521237552e078a3f74ed183b8ed0c1fa23172a5f402c6c008455103f943e28b3b721430ee8cf3b000efe1ac6eb17b31d75d696c72fde3be5d94ebf3f658c69a93ac61490fa51393754331c6f567e8c64b51365a29ed4636229162c87d65d88bc622390868819d795ec31556e562ec3536f5d55460bafce7179f7c269260edb38633503becf72e14274e5cc1d8ec93707beab86084512d360264488af85e3494568b2a2db569b388c8df862e933433b81d6a0a17c3181d1b55ecaf4e99ea8e5255b3ed183850c83423f164b9729932024c4e5cdfe794c4e7b734d164a69db0062a4303a5d4dc948dd48d1e338e8736fed1fcf79e851aacc7c5681c0ee36b976f1e2ac308dfc5915020447bfc41a5a85a13490736bdd147a99d8b840956f422b34c9d31213166d0d1b4a544158938362dad73910690a17e35f613b876963da8b08e897cd62ce93bf03b674ab9f4a3d1e7ce573ba12dc8eb00881c0f6a251909860f5c1785240e989efa73a9ffb752fc5a368b3959ce7910f2c7b44694aa734c6d42a08511c6cb08b02dc49c756e04219e7630d35c2574fdcc1f983e401761de6599849e898cf18128f48bfdd9ba03b40bf6a92d9916feaff796073ace1cc83614f81a88070a45d800496ca60000b1a95dd526dc8df862a52794256f841b7553e2d12d47b4b747a7f2bc5d04fde219e1348c95ff4847d3870009b8a6c439113f5442b3e5dbb41b7cb57a9eb08ffe0c52d9826499faeeb8ed80aee1f655d619dd07b8fc055df107579b183858b1d811b8b42bca73190d27b2218e42ee2c4bcb4e2cd6dec5ff4c043735a34436f28805190920d52079193b299e0ef9e775c564211849f120c3763b56c5a5f3f806f58ba232a2cc0e41870cef4843094838e58a46d8116a5dee87a41f0b75557683969209e4a099c866e4bd54a299df3e8ea96932b0be50a6e12c7f962715ba5012ddc2d1ef558e8a87d2512f6b909656613443d23f0d8530a11e171f759b90596147e93ff98daca8e18d8e241fa4c693f881ee6f698f82500d0071bae53a9b5741754cb71d15c77fba0bbc396bb940f9dbfc1a3f40394812ac7bf65dea2230d8ae55986a826c409579e99a5f31426ab10700d7fe5e11ca1a066a0b3a1f70a2bf61e6c2d522face49cd7c55df8b084be80d4046b011f7470c907e6dede541f0f8cca36b905c9305466043d175c197434e856570e706ac6d6d14cd8fee427dddcf77b8b110cc79031b69c15c976e9a447d16b398d3960748f5015a7b92ec86239775df56ec889a24ef30693f5e4fb4fc4c9580e18c460df9c5d3230bebc647c0cf5551682087265b1f527719d0f49efd9749704a3a3dc30bd49a685b31389204757f7cbd721784838ff59f3dd5958f65bd7fa1d99671b36a7a008818de8759a45c6bf414b442383272541f05e7de6894036dbfb3d9f367efbc82228da531a63a98545de106580a37a13f43b51bc2dd2a0875ebc9a66443b4f413ebcb0e3edf40da4f34d8cd37828bb97d98baf2014eacc4babd045a3a4ae715890e994887d947592930ac04e007df49edad9ecc14e49a5d437c9800e66aec2815c91dee201947a5c53d17700c82d4a5b97c22fb62ee2001664066f2e106148ec251c592d7c87cf700ed865c143a440fe7f1cec7534ba8cc6719b555ad7d581798eec76b5aba68cbddf9da85a55b6f00a455aa89201ccb05cde96b8860f4c77c3f30c73abd3700a3b293d5f99f1a34b3e1df7092369c0b249706f604fd57fbd4c099008d3dd2ac9670d18e8184b90eb8f263281d57f76e1e1f8c7b344eae0fb8cb6348d580a313b837b171776a3a967526f7cb0ee47cbcb9be5eb3865b53a0434308064308155667d9dcdb17d27f08dbe72efde7662a68522d180b4aa9802fc1e3efb1063db190c2b8354d1ea79790cdeeae76b1ccf5fb5cb40869dc017133fce59961dc18b6e3f65f0255e43cdbd09b57d0fd68f9bd5ad97ea194a5e75dc0cbfe574c52780cd6247f928862c042b6781e04fca44babba18e2646534b82168f655f1d9fb65deda1939a13b3c0e2418b484c4156cfc8f10058b3c06f4dcf7f9ccd8d9041943dddad13b5985651cab0be8dcb5d65ede855acd6f4b0d026e8fefab8b5deb68d9211c6c97660f225106b8e68214f5d7aa045a1be0e58690916fbd7d77ba1f1ca9076862df928d6aa814257dce944870769d66f081cf0a6be4e5a5606b4ab16f45be7d52eb1108ffb684f5b087d2a359bd39eba6ec6d4b543c344b6e81f894c63211f60f4610b3cf862971038fd5cbce31e3e2436d38ce8e42b26de0aae3a78b0605bd485655e36ca945c4ebade946c1d65f9c49d128e953dac14230bcceb198d942ff7b7427c50ea1119e646f9b3693974b2dbf3bb6152f8baa5c94ef5bccdb20fe0066fd9608fbd0a662797bed5052d648698db311830517ed1143e931c2fb45f8065895915d1f9f9126c89f55d142c0e0e1f63bbc9b6f6754375be6395181cdb6d6af7df236429bee6fa164901ee1d916b72d44fe8379f22a1b8d8837b66d72de851d0f68811f9cf01d6fa2ffb38d9812b7dca4b60f4eaa887ec04ccc59225ecf496412d28cfebc7c711d0a6aec3b09cfbc480682a74f4a79b2d351d3a23c0e1a69c5843c4a49d3c5087d63ad3587e1808c7c19886ed2d8eccd2a2d358187bc7ce38322b95a41788ca79bef310a6ca75701182f5d8c0e441ed8429778ceb4ab1386050839738d6939ed80e5e2bb7c09c9504ed848959af6d98bfcecc27a813bb52e91a2d56a1a9bfc46bac0d8e152b3573e1d1c444e9a228fae012c7b0b4f688a5d08a2a492eb7429e5ddc9ef6423f6b99a9f6767929e004531a13244a48fce646b478865df6195d0685c457d1ecee7d0e7abb8a783d0f20f0cac60eaa8a588b6a03760354417855a08351b0e760cafef296934454c321d25f9c7f59900a0503d92799c7edf320f2f8a3a28b099930a18f0a3837aee5a9247286a924f953a99b28783e1c80740a1376faea5b26f53aca34f1814512f00822ee99a590a158b11008b06c0600e4fdbf0ac5a23bb134c4b507fc700cfeb8e39cf50d7c0339740e17277bcf22fae7c57817258c7751213bbbf519e00edb4626e09ecf5ec281dded82b429be03b9dc9ca96c7e55deb5309289ef46c40af2001",1]],"callback_url":"http://127.0.0.1:8080"} +[PROGRAM] Processing computation... +[PROGRAM] fhe_inputs.params = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 255, 254, 224, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 255, 252, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] +[PROGRAM] callback_url:http://127.0.0.1:8080 +[SERVER] ✓ FHE Runner accepted E3 0: { status: 'processing', e3_id: 0 } +[SERVER] ✅ E3 0 sent to FHE runner - awaiting callback +[PROGRAM] computation finished! +[PROGRAM] handling webhook delivery... +[PROGRAM] handle_webhook_delivery() +[PROGRAM] call_webhook() - status: Completed, ciphertext len: 9242, proof len: 11 +[PROGRAM] callback_url: http://127.0.0.1:8080 +[SERVER] 📨 Webhook received: +[SERVER] 🔄 Publishing output for E3 0... +[SERVER] ✅ Successfully completed E3 0 +[PROGRAM] Webhook response status: 200 OK +[PROGRAM] ✓ Webhook called successfully for E3 0 +[PROGRAM] ✓ Webhook sent successfully +[PROGRAM] ✓ Computation completed for E3 0 +[CIPHER] [cn1] 2026-04-01T13:48:32.090742Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 104, ts: 32743917271833451905085875078461756, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:48:32.090774Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 20, ts: 32743917271833433458341803757600837, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:48:32.090892Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 32, ts: 32743917271831939272071829537567069, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:48:32.091844Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 33, ts: 32743917271832492674394040824115549, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:48:32.090829Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 104, ts: 32743917271834982984843994387941217, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:48:32.091919Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32743917271835370366469542288525153, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:48:32.090781Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 104, ts: 32743917271833175203924771043563749, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:48:32.091935Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32743917271833544138806245234596069, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:48:32.090949Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 20, ts: 32743917271838635440170589822263041, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [cn4] 2026-04-01T13:48:32.091931Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 21, ts: 32743917271839022821796137722846977, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:48:32.091769Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32743917271833820839967349269494076, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:48:32.091799Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 21, ts: 32743917271833820839967351658184773, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:48:32.103383Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(0)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb22677c644d3523647db7da95ebbfeb672d9718cdd684ac7519e1374f7ff4d48), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 61, ts: 32743917271953429528541283418867553, aggregate_id: AggregateId(0), block: Some(405), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:48:32.103364Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(2)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4d2a1ec44f34a7c3443747aa88ccf3f7e439bf1df4bcd3d6e62080b2dcfc6b7a), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 61, ts: 32743917271953946037375347477993701, aggregate_id: AggregateId(0), block: Some(405), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:48:32.108093Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(163)` +[CIPHER] [cn2] 2026-04-01T13:48:32.108108Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(2)`... +[CIPHER] [cn1] 2026-04-01T13:48:32.103366Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(1)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x50cd5d669ed56fa291e59839852ae142be991708d85327839e44b310bc29accf), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 61, ts: 32743917271950920771347257503152444, aggregate_id: AggregateId(0), block: Some(405), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:48:32.108296Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(23)` +[CIPHER] [cn1] 2026-04-01T13:48:32.108303Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(1)`... +[CIPHER] [cn3] 2026-04-01T13:48:32.108163Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(232)` +[CIPHER] [cn3] 2026-04-01T13:48:32.108171Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(0)`... +[CIPHER] [cn1] 2026-04-01T13:48:32.134364Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... +[CIPHER] [cn1] 2026-04-01T13:48:32.134375Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... +[CIPHER] [cn1] 2026-04-01T13:48:32.134462Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(23) in 26.158709ms +[CIPHER] [cn1] 2026-04-01T13:48:32.134435Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... +[CIPHER] [cn2] 2026-04-01T13:48:32.134689Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... +[CIPHER] [cn2] 2026-04-01T13:48:32.134695Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... +[CIPHER] [cn2] 2026-04-01T13:48:32.134762Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... +[CIPHER] [cn3] 2026-04-01T13:48:32.134761Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... +[CIPHER] [cn1] 2026-04-01T13:48:32.134624Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc6c12941391dbd3169b60db796f61e246de379c53241e64c60789dd96856334d), causation_id: EventId(0x50cd5d669ed56fa291e59839852ae142be991708d85327839e44b310bc29accf), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 106, ts: 32743917272647617401523119848585532, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:48:32.134767Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... +[CIPHER] [cn2] 2026-04-01T13:48:32.134832Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(163) in 26.72675ms +[CIPHER] [cn1] 2026-04-01T13:48:32.134841Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... +[CIPHER] [cn3] 2026-04-01T13:48:32.134853Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... +[CIPHER] [cn3] 2026-04-01T13:48:32.134878Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(232) in 26.708333ms +[CIPHER] [cn3] 2026-04-01T13:48:32.134945Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc42a30464faa24ba5321903d12da1d77f6b6d952951dd266cd71eb52d4de4a71), causation_id: EventId(0xb22677c644d3523647db7da95ebbfeb672d9718cdd684ac7519e1374f7ff4d48), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 106, ts: 32743917272654811631711867990411105, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:48:32.134968Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0a3a5f15ce9f15427a7e9a3683c0fc3719b4acc2811ca8b0303f0e2c25cbf00e), causation_id: EventId(0x4d2a1ec44f34a7c3443747aa88ccf3f7e439bf1df4bcd3d6e62080b2dcfc6b7a), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 106, ts: 32743917272654073761948919800027365, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:48:32.135132Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... +[CIPHER] [cn2] 2026-04-01T13:48:32.135150Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... +[CIPHER] [cn1] 2026-04-01T13:48:32.135337Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0x84962f2e7576c4c078db2d1d4600b3d5b2281bfcca5eb537f7e606dab2396357), causation_id: EventId(0xc6c12941391dbd3169b60db796f61e246de379c53241e64c60789dd96856334d), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 107, ts: 32743917272653797060787812548376892, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:48:32.136576Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:48:32.138522Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4595cdc38d8d9af2e3bbf6c2f5e3516b75d0e490bb2a0699dce6e0e68befb9b0), causation_id: EventId(0x84962f2e7576c4c078db2d1d4600b3d5b2281bfcca5eb537f7e606dab2396357), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 62, ts: 32743917272685802161755698620430652, aggregate_id: AggregateId(0), block: Some(405), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:48:32.138444Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0xbb1c9a1fa348a1e6b28f4ca8d81530d5bfde5ea8b8e59ff2a7e847a66fb218a5), causation_id: EventId(0xc42a30464faa24ba5321903d12da1d77f6b6d952951dd266cd71eb52d4de4a71), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 107, ts: 32743917272659165063313263444592481, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:48:32.139562Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(124)` +[CIPHER] [cn3] 2026-04-01T13:48:32.139579Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:48:32.138523Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0x30393bfa01d3fb97a5caf1263f6dd0d5a5fb69574b26c7b171f2de144c8cb817), causation_id: EventId(0x0a3a5f15ce9f15427a7e9a3683c0fc3719b4acc2811ca8b0303f0e2c25cbf00e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 107, ts: 32743917272659497104706590408202469, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:48:32.139695Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 +[CIPHER] [cn3] 2026-04-01T13:48:32.141166Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe3d27df47a6fe111c45d6910c5a24d07126193c5c817c3b3722ebc23a5246d2f), causation_id: EventId(0xbb1c9a1fa348a1e6b28f4ca8d81530d5bfde5ea8b8e59ff2a7e847a66fb218a5), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 62, ts: 32743917272741197734209049820628833, aggregate_id: AggregateId(0), block: Some(405), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:48:32.142272Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(1)` +[CIPHER] [cn2] 2026-04-01T13:48:32.142823Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7a3860d732db95a2998e60b270b2e37749b956f975270d1e618b936d755cd18a), causation_id: EventId(0x30393bfa01d3fb97a5caf1263f6dd0d5a5fb69574b26c7b171f2de144c8cb817), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 62, ts: 32743917272743337556521600320297189, aggregate_id: AggregateId(0), block: Some(405), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:48:32.143904Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(151)` +[CIPHER] [cn2] 2026-04-01T13:48:34.009893Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn2] 2026-04-01T13:48:34.009987Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(151) in 1.866075541s +[CIPHER] [cn3] 2026-04-01T13:48:34.011986Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn3] 2026-04-01T13:48:34.012087Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(1) in 1.869808416s +[CIPHER] [cn2] 2026-04-01T13:48:34.010166Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x286bf18e36e1780bfecb31d9b883401c4836091bcf7b5ff3b6e566f76eb7ec71), causation_id: EventId(0x7a3860d732db95a2998e60b270b2e37749b956f975270d1e618b936d755cd18a), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 108, ts: 32743917307244725719438343736940773, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:48:34.012693Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 2 (signer: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC) +[CIPHER] [cn3] 2026-04-01T13:48:34.012245Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x10998c4c67430c568356dcdab8f4dd6f9a404d3f88e442f463fb27294fce2d66), causation_id: EventId(0xe3d27df47a6fe111c45d6910c5a24d07126193c5c817c3b3722ebc23a5246d2f), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 108, ts: 32743917307283463881993133603653473, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:48:34.014761Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 0 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) +[CIPHER] [cn2] 2026-04-01T13:48:34.013247Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x30393bfa01d3fb97a5caf1263f6dd0d5a5fb69574b26c7b171f2de144c8cb817), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 109, ts: 32743917307294070759835516787513573, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:48:34.015757Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0x30393bfa01d3fb97a5caf1263f6dd0d5a5fb69574b26c7b171f2de144c8cb817), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 110, ts: 32743917307294495034949212107200741, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn2] 2026-04-01T13:48:34.015795Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated +[CIPHER] [cn2] 2026-04-01T13:48:34.015893Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete +[CIPHER] [cn3] 2026-04-01T13:48:34.016705Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0xbb1c9a1fa348a1e6b28f4ca8d81530d5bfde5ea8b8e59ff2a7e847a66fb218a5), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 109, ts: 32743917307332200179835874239022945, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:48:34.019293Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0xbb1c9a1fa348a1e6b28f4ca8d81530d5bfde5ea8b8e59ff2a7e847a66fb218a5), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 110, ts: 32743917307332624454949569558710113, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn3] 2026-04-01T13:48:34.019342Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated +[CIPHER] [cn3] 2026-04-01T13:48:34.019443Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete +[CIPHER] [cn4] 2026-04-01T13:48:34.022254Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), origin_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), seq: 22, ts: 32743917307440408780572255411904257, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:48:34.023857Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), origin_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), seq: 108, ts: 32743917307453819563513839896131900, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-04-01T13:48:34.023873Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), origin_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), seq: 22, ts: 32743917307460423497892230304301125, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:48:34.023924Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), origin_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), seq: 34, ts: 32743917307438877700814133801660765, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:48:34.027024Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=2 +[CIPHER] [ag] 2026-04-01T13:48:34.027033Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 2 [] +[CIPHER] [cn2] 2026-04-01T13:48:34.027276Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), origin_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), seq: 111, ts: 32743917307516778301037412204173541, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:48:34.030361Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), origin_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), seq: 111, ts: 32743917307593775010801075680937825, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-04-01T13:48:34.030275Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), origin_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), seq: 23, ts: 32743917307606171222818609442725633, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-04-01T13:48:34.033464Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), origin_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), seq: 23, ts: 32743917307607702302576727364403269, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn1] 2026-04-01T13:48:34.033436Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), origin_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), seq: 109, ts: 32743917307671214442422506961926460, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:48:34.033445Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), origin_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), seq: 35, ts: 32743917307650480302083656068247901, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:48:34.036084Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=0 +[CIPHER] [ag] 2026-04-01T13:48:34.036089Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 0 [] +[CIPHER] [cn1] 2026-04-01T13:48:34.052670Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 +[CIPHER] [cn1] 2026-04-01T13:48:34.052762Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(124) in 1.913189542s +[CIPHER] [cn1] 2026-04-01T13:48:34.052920Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xae9f3476eafead927fe65ca94682b3c59eebc27c305f8b6eb4ab2b59ac0b5ba3), causation_id: EventId(0x4595cdc38d8d9af2e3bbf6c2f5e3516b75d0e490bb2a0699dce6e0e68befb9b0), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 110, ts: 32743917308033434709053867717458236, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:48:34.055536Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 1 (signer: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8) +[CIPHER] [cn1] 2026-04-01T13:48:34.056599Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0x84962f2e7576c4c078db2d1d4600b3d5b2281bfcca5eb537f7e606dab2396357), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 111, ts: 32743917308084384616185453499021628, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:48:34.059180Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0x84962f2e7576c4c078db2d1d4600b3d5b2281bfcca5eb537f7e606dab2396357), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 112, ts: 32743917308084827338043222528260412, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } +[CIPHER] [cn1] 2026-04-01T13:48:34.059235Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated +[CIPHER] [cn1] 2026-04-01T13:48:34.059320Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete +[CIPHER] [cn4] 2026-04-01T13:48:34.064803Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 24, ts: 32743917308252416007952876164488961, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:48:34.065077Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 112, ts: 32743917308256566525369460062181605, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-04-01T13:48:34.065079Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 24, ts: 32743917308253947087710994086166597, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:48:34.065075Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 112, ts: 32743917308255976229559101164848993, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:48:34.065523Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 36, ts: 32743917308266435533448891706257757, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [ag] 2026-04-01T13:48:34.068457Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=1 +[CIPHER] [ag] 2026-04-01T13:48:34.068463Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 1 [] +[CIPHER] [ag] 2026-04-01T13:48:34.068596Z  INFO e3_aggregator::threshold_plaintext_aggregator: Changing state to VerifyingC6 because received all 3 shares... +[CIPHER] [ag] 2026-04-01T13:48:34.069406Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 37, ts: 32743917308327955424934713060897117, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.076555Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ThresholdDecryptionProofs +[CIPHER] [ag] 2026-04-01T13:48:34.079533Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, correlation_id: 87, party_proofs: [PartyProofData { party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C6ThresholdShareDecryption, , [153, 166, 97, 232, 181, 2, 110, 212, 165, 230, 155, 112, 117, 208, 241, 99, 33, 221, 237, 237, 55, 224, 123, 6, 122, 161, 157, 170, 129, 149, 242, 182])] }, PartyProofData { party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C6ThresholdShareDecryption, , [196, 232, 229, 127, 58, 148, 28, 103, 5, 75, 188, 132, 177, 68, 236, 77, 241, 244, 82, 211, 97, 209, 194, 0, 190, 90, 187, 16, 181, 45, 160, 172])] }, PartyProofData { party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C6ThresholdShareDecryption, , [242, 183, 128, 214, 67, 163, 84, 195, 68, 70, 70, 187, 217, 158, 181, 128, 98, 212, 49, 151, 62, 92, 31, 231, 7, 81, 110, 69, 143, 113, 68, 70])] }] }), ctx: EventContext { id: EventId(0x0baf440d03bbe52fbdc2aad2e5271c872c584721fd7c4242e0238cceef1098dc), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 38, ts: 32743917308503051919682364124836189, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.085565Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, correlation_id: 87, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xa2848a1bf74554b1a857d857468bc3776b70ea5c5428b46d30497a1e311fbc7d), causation_id: EventId(0x0baf440d03bbe52fbdc2aad2e5271c872c584721fd7c4242e0238cceef1098dc), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 39, ts: 32743917308630149986350222935470429, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.086126Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3fe5c85c4646282bd6ff4d2dea417698d358da624d951f1962b0c3580aa6f06f), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 29, ts: 32743917308639188890946340615762269, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.093267Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(55)` +[CIPHER] [ag] 2026-04-01T13:48:34.228227Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(55) in 134.951375ms +[CIPHER] [ag] 2026-04-01T13:48:34.228332Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1d0efd168ac5c3f22cb89218b08a24c90c3d3cd411ce426d8e889428ba9072ad), causation_id: EventId(0x3fe5c85c4646282bd6ff4d2dea417698d358da624d951f1962b0c3580aa6f06f), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 41, ts: 32743917311270450912364344767820125, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.230878Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C6ThresholdShareDecryption, data_hash: [153, 166, 97, 232, 181, 2, 110, 212, 165, 230, 155, 112, 117, 208, 241, 99, 33, 221, 237, 237, 55, 224, 123, 6, 122, 161, 157, 170, 129, 149, 242, 182], public_signals: }), ctx: EventContext { id: EventId(0x2400918a0ae6a524c57375d8e6b62bd5b14d075e7d8ab71dc1340d6aa7070178), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 42, ts: 32743917311273291710951696038768989, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.232957Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C6ThresholdShareDecryption, data_hash: [196, 232, 229, 127, 58, 148, 28, 103, 5, 75, 188, 132, 177, 68, 236, 77, 241, 244, 82, 211, 97, 209, 194, 0, 190, 90, 187, 16, 181, 45, 160, 172], public_signals: }), ctx: EventContext { id: EventId(0xd2adf75f9e59b4380dfa5b702b4937faab259b3c97c49d6e4e74855c0cb41702), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 43, ts: 32743917311273642199089096520249693, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.234920Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C6ThresholdShareDecryption, data_hash: [242, 183, 128, 214, 67, 163, 84, 195, 68, 70, 70, 187, 217, 158, 181, 128, 98, 212, 49, 151, 62, 92, 31, 231, 7, 81, 110, 69, 143, 113, 68, 70], public_signals: }), ctx: EventContext { id: EventId(0x3cfdbda40c043e5dde466555ae19e7698da90b841560f8d9a96bd46efa106741), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 44, ts: 32743917311273974240482423292178781, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.236902Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xd7c38ca6ed81f848a2cc195081ffa58c2351815845fb5b5df8d0d65644150016), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 45, ts: 32743917311274287835131676354556253, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.236998Z  INFO e3_aggregator::threshold_plaintext_aggregator: C6 verification passed: 3 honest parties, transitioning to Computing +[CIPHER] [ag] 2026-04-01T13:48:34.237030Z  INFO e3_aggregator::proof_fold: ThresholdPlaintextAggregator C6 fold: no proofs to fold +[CIPHER] [ag] 2026-04-01T13:48:34.237361Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateThresholdDecryption(CalculateThresholdDecryptionRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, d_share_polys: [(0, []), (2, []), (1, [])], ciphertexts: [] })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1d6a2bd72a9d9658dfdb389794897c1dc713fe479f56f0214d68c4278c533d85), causation_id: EventId(0xd7c38ca6ed81f848a2cc195081ffa58c2351815845fb5b5df8d0d65644150016), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 30, ts: 32743917311431786136033008506253661, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.238134Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_threshold_decryption(231)` +[CIPHER] [ag] 2026-04-01T13:48:34.238149Z  INFO e3_trbfv::calculate_threshold_decryption: Calculating threshold decryption... +[CIPHER] [ag] 2026-04-01T13:48:34.249665Z  INFO e3_trbfv::calculate_threshold_decryption: Calculating threshold decryption for ciphertext 0... +[CIPHER] [ag] 2026-04-01T13:48:34.252363Z  INFO e3_trbfv::calculate_threshold_decryption: Successfully calculated threshold decryption! Returning... +[CIPHER] [ag] 2026-04-01T13:48:34.252407Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_threshold_decryption`(231) in 14.267125ms +[CIPHER] [ag] 2026-04-01T13:48:34.252514Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateThresholdDecryption(CalculateThresholdDecryptionResponse { plaintext: [] })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x624cf4d5933beaa3b233bdd3d376bcb2e8fbd68dfcd9abe8bb3fc70102ec52c3), causation_id: EventId(0x1d6a2bd72a9d9658dfdb389794897c1dc713fe479f56f0214d68c4278c533d85), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 46, ts: 32743917311716622311275157692756317, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.252727Z  INFO e3_aggregator::threshold_plaintext_aggregator: Received TrBFV threshold decryption response +[CIPHER] [ag] 2026-04-01T13:48:34.252824Z  INFO e3_events::eventbus: >>> AggregationProofPending EnclaveEvent { payload: AggregationProofPending(AggregationProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, proof_request: DecryptedSharesAggregationProofRequest { d_share_polys: [(0, []), (2, []), (1, [])], plaintext: [], params_preset: InsecureThreshold512, threshold_m: 1, threshold_n: 3 }, plaintext: [], shares: [(0, []), (2, []), (1, [])] }), ctx: EventContext { id: EventId(0x32cb30ab0abb6a56c0b96d04d68acb1ee788480285d5ca36911a994e55dfc6e7), causation_id: EventId(0x624cf4d5933beaa3b233bdd3d376bcb2e8fbd68dfcd9abe8bb3fc70102ec52c3), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 47, ts: 32743917311721934973568386043621725, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.254015Z  INFO e3_zk_prover::actors::proof_request: Requesting C7 DecryptedSharesAggregation proof for E3 31337:0 +[CIPHER] [ag] 2026-04-01T13:48:34.254444Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DecryptedSharesAggregation(DecryptedSharesAggregationProofRequest { d_share_polys: [(0, []), (2, []), (1, [])], plaintext: [], params_preset: InsecureThreshold512, threshold_m: 1, threshold_n: 3 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xf3690c4cd5272006504920bd09f3fb1d6ec3796e3f3a82f8decebdec6a147f13), causation_id: EventId(0x32cb30ab0abb6a56c0b96d04d68acb1ee788480285d5ca36911a994e55dfc6e7), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 31, ts: 32743917311745675933191250236551517, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:34.255069Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_decrypted_shares_aggregation(49)` +[CIPHER] [ag] 2026-04-01T13:48:35.294765Z  INFO e3_zk_prover::prover: generated proof (9408 bytes) for decrypted_shares_aggregation / 31337:0 +[CIPHER] [ag] 2026-04-01T13:48:35.294817Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_decrypted_shares_aggregation`(49) in 1.039744542s +[CIPHER] [ag] 2026-04-01T13:48:35.294963Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DecryptedSharesAggregation(DecryptedSharesAggregationProofResponse { proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }] })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb8dbb70dd71110eff72b5c8c94d5331047776c8b4759b8c24391481bc6a394fe), causation_id: EventId(0xf3690c4cd5272006504920bd09f3fb1d6ec3796e3f3a82f8decebdec6a147f13), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 48, ts: 32743917330946006395799984455168349, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:35.295502Z  INFO e3_zk_prover::actors::proof_request: All C7 proofs signed for E3 31337:0 (signer: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266) +[CIPHER] [ag] 2026-04-01T13:48:35.295592Z  INFO e3_events::eventbus: >>> AggregationProofSigned EnclaveEvent { payload: AggregationProofSigned(AggregationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C7DecryptedSharesAggregation, proof: Proof { circuit: DecryptedSharesAggregation, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xf28fe8320094594d48cdf057b07459027e106823884fd29782372e9e6a4de03e), causation_id: EventId(0x32cb30ab0abb6a56c0b96d04d68acb1ee788480285d5ca36911a994e55dfc6e7), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 49, ts: 32743917330957756971774937439547741, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:35.296144Z  INFO e3_aggregator::threshold_plaintext_aggregator: C7 proof signed — waiting for C6 cross-node fold to complete... +[CIPHER] [ag] 2026-04-01T13:48:35.296149Z  INFO e3_aggregator::threshold_plaintext_aggregator: Both C7 and C6 fold proof ready — publishing PlaintextAggregated +[CIPHER] [ag] 2026-04-01T13:48:35.296168Z  INFO e3_aggregator::threshold_plaintext_aggregator: Dispatching plaintext event with C7 and C6 proofs PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None } +[CIPHER] [ag] 2026-04-01T13:48:35.297690Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xf28fe8320094594d48cdf057b07459027e106823884fd29782372e9e6a4de03e), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 50, ts: 32743917330977568774910101497983325, aggregate_id: AggregateId(31337), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:35.298187Z  WARN e3_net::net_event_translator: GossipPublish event: PlaintextAggregated +[CIPHER] [ag] 2026-04-01T13:48:35.301323Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 32, ts: 32743917331006935991475447104155997, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:35.302124Z  INFO e3_evm::enclave_sol_writer: publishPlaintextOutput() e3_id=0 +[CIPHER] [cn1] 2026-04-01T13:48:35.304434Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 113, ts: 32743917331096937655811077364152636, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn2] 2026-04-01T13:48:35.304461Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 113, ts: 32743917331094760940010381245438181, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn4] 2026-04-01T13:48:35.304496Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 25, ts: 32743917331095332789076666992959233, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn5] 2026-04-01T13:48:35.304460Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 25, ts: 32743917331089743425622333027713093, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:48:35.304480Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 113, ts: 32743917331094244431176317186312033, aggregate_id: AggregateId(31337), block: None, source: Net } } +[CIPHER] [cn3] 2026-04-01T13:48:35.306927Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 63, ts: 32743917331140066143455411712526177, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn3] 2026-04-01T13:48:35.306958Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:48:35.306927Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 63, ts: 32743917331131156366067808582400316, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:48:35.306958Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 +[CIPHER] [cn1] 2026-04-01T13:48:35.306988Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) +[CIPHER] [cn3] 2026-04-01T13:48:35.306986Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) +[CIPHER] [cn2] 2026-04-01T13:48:35.307058Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 63, ts: 32743917331133480655821097594280165, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:48:35.307090Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 +[CIPHER] [cn2] 2026-04-01T13:48:35.307106Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) +[CIPHER] [cn5] 2026-04-01T13:48:35.307493Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 27, ts: 32743917331137040877427324318056517, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-04-01T13:48:35.307605Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 27, ts: 32743917331135786498830312039653121, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-04-01T13:48:36.106024Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 26, ts: 32743917345905079907725495993245441, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } +[CIPHER] [cn3] 2026-04-01T13:48:36.106024Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32743917345905079907725495050143585, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:48:36.106036Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 26, ts: 32743917345906186712369918595235909, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } +[CIPHER] [cn5] 2026-04-01T13:48:36.106328Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn1] 2026-04-01T13:48:36.106084Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32743917345908455661890982481393980, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } +[CIPHER] [cn1] 2026-04-01T13:48:36.106271Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 +[CIPHER] [cn1] 2026-04-01T13:48:36.106239Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [ag] 2026-04-01T13:48:36.106093Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 51, ts: 32743917345905209034934008242647389, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } +[CIPHER] [ag] 2026-04-01T13:48:36.106404Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn2] 2026-04-01T13:48:36.106171Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32743917345907477984455077483534565, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } +[CIPHER] [cn2] 2026-04-01T13:48:36.106310Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn2] 2026-04-01T13:48:36.106396Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down +[CIPHER] [cn3] 2026-04-01T13:48:36.106226Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn3] 2026-04-01T13:48:36.106273Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 +[CIPHER] [cn3] 2026-04-01T13:48:36.106277Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down +[CIPHER] [cn4] 2026-04-01T13:48:36.106234Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" +[CIPHER] [cn2] 2026-04-01T13:48:36.106328Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 +[CIPHER] [cn1] 2026-04-01T13:48:36.106278Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down +[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test +[TEST] Answer was correct +[TEST] +[TEST] ✓ tests/integration.spec.ts (1 test) 318792ms +[TEST] +[TEST] Test Files 1 passed (1) +[TEST] Tests 1 passed (1) +[TEST] Start at 14:43:16 +[TEST] Duration 319.54s (transform 237ms, setup 0ms, collect 581ms, tests 318.79s, environment 0ms, prepare 33ms) +[TEST] +[TEST] wait-on http://localhost:13151/health && pnpm vitest run ./tests/integration.spec.ts exited with code 0 +--> Sending SIGTERM to other processes.. +[EVM] anvil --host 0.0.0.0 --chain-id 31337 --block-time 1 --mnemonic 'test test test test test test test test test test test junk' --silent exited with code 0 +--> Sending SIGTERM to other processes.. +[CIPHER] [cn4] 2026-04-01T13:48:36.206009Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [ag] 2026-04-01T13:48:36.206039Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [cn5] 2026-04-01T13:48:36.206047Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [cn2] 2026-04-01T13:48:36.206116Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [cn3] 2026-04-01T13:48:36.206159Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [cn1] 2026-04-01T13:48:36.206241Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake +[CIPHER] [cn3] 2026-04-01T13:48:36.207789Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] [ag] 2026-04-01T13:48:36.207898Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] [cn5] 2026-04-01T13:48:36.208021Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] [cn4] 2026-04-01T13:48:36.208021Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] [cn1] 2026-04-01T13:48:36.208040Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] [cn2] 2026-04-01T13:48:36.207821Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... +[CIPHER] Cleaning up processes... +[CIPHER] 2026-04-01T13:48:36.314545Z  INFO execute:execute: actix_server::server: SIGTERM received; starting graceful shutdown +[CIPHER] 2026-04-01T13:48:36.315110Z  INFO e3_entrypoint::nodes::process_manager: Received SIGTERM, shutting down all processes... +[CIPHER] 2026-04-01T13:48:36.315233Z  INFO e3_entrypoint::nodes::process_manager: starting to terminate processes... +[CIPHER] 2026-04-01T13:48:36.315257Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn5 +[CIPHER] 2026-04-01T13:48:36.315883Z  INFO actix_server::accept: accept thread stopped +[CIPHER] [ag] 2026-04-01T13:48:36.314391Z  INFO execute: enclave::start: SIGTERM received +[CIPHER] 2026-04-01T13:48:36.316728Z  INFO actix_server::worker: shutting down idle worker +[CIPHER] [ag] 2026-04-01T13:48:36.314409Z  INFO execute: enclave::start: initiating graceful shutdown... +[CIPHER] [ag] 2026-04-01T13:48:36.314717Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 34, ts: 32743917349753531890103147481674077, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn2] 2026-04-01T13:48:36.314613Z  INFO execute: enclave::start: SIGTERM received +[CIPHER] [cn2] 2026-04-01T13:48:36.314806Z  INFO execute: enclave::start: initiating graceful shutdown... +[CIPHER] [cn2] 2026-04-01T13:48:36.314880Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 65, ts: 32743917349760560099595233786878181, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:48:36.314653Z  INFO execute: enclave::start: SIGTERM received +[CIPHER] [cn1] 2026-04-01T13:48:36.315690Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 65, ts: 32743917349757922215192691712620860, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn4] 2026-04-01T13:48:36.314815Z  INFO execute: enclave::start: SIGTERM received +[CIPHER] [cn4] 2026-04-01T13:48:36.314835Z  INFO execute: enclave::start: initiating graceful shutdown... +[CIPHER] [cn3] 2026-04-01T13:48:36.314864Z  INFO execute: enclave::start: SIGTERM received +[CIPHER] [cn3] 2026-04-01T13:48:36.314881Z  INFO execute: enclave::start: initiating graceful shutdown... +[CIPHER] [cn3] 2026-04-01T13:48:36.314981Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 65, ts: 32743917349761925158656688102016865, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [cn1] 2026-04-01T13:48:36.314665Z  INFO execute: enclave::start: initiating graceful shutdown... +[CIPHER] [cn4] 2026-04-01T13:48:36.314927Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 29, ts: 32743917349761076608429298405744385, aggregate_id: AggregateId(0), block: None, source: Local } } +[CIPHER] [ag] 2026-04-01T13:48:36.322971Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector +[CIPHER] [ag] 2026-04-01T13:48:36.323057Z  INFO e3_aggregator::committee_finalizer: Killing CommitteeFinalizer +[CIPHER] [ag] 2026-04-01T13:48:36.323120Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream +[CIPHER] [cn3] 2026-04-01T13:48:36.323716Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector +[CIPHER] [cn3] 2026-04-01T13:48:36.323750Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream +[CIPHER] 2026-04-01T13:48:36.324020Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn5... +[CIPHER] 2026-04-01T13:48:36.324025Z  INFO e3_entrypoint::nodes::process_manager: Process cn5 terminated. +[CIPHER] 2026-04-01T13:48:36.324028Z  INFO e3_entrypoint::nodes::process_manager: Terminating ag +[CIPHER] [cn1] 2026-04-01T13:48:36.326009Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector +[CIPHER] [cn1] 2026-04-01T13:48:36.326040Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream +[CIPHER] [cn4] 2026-04-01T13:48:36.326129Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector +[CIPHER] [cn4] 2026-04-01T13:48:36.326164Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream +[CIPHER] [cn2] 2026-04-01T13:48:36.326705Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector +[CIPHER] [cn2] 2026-04-01T13:48:36.326744Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream +[CIPHER] 2026-04-01T13:48:36.329562Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: ag... +[CIPHER] 2026-04-01T13:48:36.329575Z  INFO e3_entrypoint::nodes::process_manager: Process ag terminated. +[CIPHER] 2026-04-01T13:48:36.329581Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn3 +[CIPHER] 2026-04-01T13:48:36.335080Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn3... +[CIPHER] 2026-04-01T13:48:36.335087Z  INFO e3_entrypoint::nodes::process_manager: Process cn3 terminated. +[CIPHER] 2026-04-01T13:48:36.335091Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn4 +[CIPHER] 2026-04-01T13:48:36.338493Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn4... +[CIPHER] 2026-04-01T13:48:36.338508Z  INFO e3_entrypoint::nodes::process_manager: Process cn4 terminated. +[CIPHER] 2026-04-01T13:48:36.338514Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn1 +[CIPHER] 2026-04-01T13:48:36.343642Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn1... +[CIPHER] 2026-04-01T13:48:36.343655Z  INFO e3_entrypoint::nodes::process_manager: Process cn1 terminated. +[CIPHER] 2026-04-01T13:48:36.343661Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn2 +[CIPHER] 2026-04-01T13:48:36.348031Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn2... +[CIPHER] 2026-04-01T13:48:36.348042Z  INFO e3_entrypoint::nodes::process_manager: Process cn2 terminated. +[CIPHER] 2026-04-01T13:48:36.348046Z  INFO e3_entrypoint::nodes::process_manager: SWARM All processes terminated, exiting +[PROGRAM]  ELIFECYCLE  Command failed. +[SERVER]  ELIFECYCLE  Command failed. +[SERVER] TEST_MODE=1 pnpm dev:server exited with code SIGTERM +--> Sending SIGTERM to other processes.. +[PROGRAM] pnpm dev:program exited with code SIGTERM +--> Sending SIGTERM to other processes.. +[CIPHER] Cleanup complete +[CIPHER] pnpm dev:ciphernodes exited with code SIGTERM + +------------------------ + ✅ Test has passed! +------------------------ + diff --git a/templates/default/server/index.ts b/templates/default/server/index.ts index a27acb2cc9..b7480de21a 100644 --- a/templates/default/server/index.ts +++ b/templates/default/server/index.ts @@ -18,7 +18,7 @@ import { MyProgram__factory } from '../types/factories/contracts' interface E3Session { e3Id: bigint expiration: bigint - e3ProgramParams?: string + paramSet?: number inputs: Array<{ data: string; index: bigint }> isProcessing: boolean isCompleted: boolean @@ -67,18 +67,29 @@ async function runProgram(e3Id: bigint): Promise { return } - let e3ProgramParams = session.e3ProgramParams - if (!e3ProgramParams) { - const sdk = await createPrivateSDK() - const e3Details = await sdk.getE3(e3Id) - e3ProgramParams = e3Details.e3ProgramParams - session.e3ProgramParams = e3ProgramParams - } + // Look up the encoded params from the on-chain paramSetRegistry + const sdk = await createPrivateSDK() + const e3Details = await sdk.getE3(e3Id) + const paramSetId = e3Details.paramSet + const e3ProgramParams = (await sdk.sdk.getPublicClient().readContract({ + address: sdk.sdk.getContractAddresses().enclave, + abi: [ + { + name: 'paramSetRegistry', + type: 'function', + stateMutability: 'view', + inputs: [{ name: '', type: 'uint8' }], + outputs: [{ name: '', type: 'bytes' }], + }, + ], + functionName: 'paramSetRegistry', + args: [paramSetId], + })) as string const ciphertextInputs: Array<[string, number]> = session.inputs.map((input) => [input.data, Number(input.index)]) console.log(`🔄 Calling FHE runner for E3 ${e3Id}...`) - await callFheRunner(e3Id, e3ProgramParams!, ciphertextInputs) + await callFheRunner(e3Id, e3ProgramParams, ciphertextInputs) console.log(`✅ E3 ${e3Id} sent to FHE runner - awaiting callback`) } catch (error) { @@ -140,7 +151,7 @@ async function handleCommitteePublishedEvent(event: any) { if (!e3Sessions.has(e3Id.toString())) { e3Sessions.set(e3Id.toString(), { e3Id, - e3ProgramParams: e3.e3ProgramParams, + paramSet: e3.paramSet, expiration, inputs: [], isProcessing: false, diff --git a/templates/default/tests/integration.spec.ts b/templates/default/tests/integration.spec.ts index 1b49a1095c..94a487efff 100644 --- a/templates/default/tests/integration.spec.ts +++ b/templates/default/tests/integration.spec.ts @@ -191,9 +191,6 @@ describe('Integration', () => { const committeeSize = CommitteeSize.Micro const duration = 450 const inputWindow = await calculateInputWindow(publicClient, duration) - const thresholdBfvParams = await sdk.getThresholdBfvParamsSet() - const e3ProgramParams = encodeBfvParams(thresholdBfvParams) - const computeProviderParams = encodeComputeProviderParams( DEFAULT_COMPUTE_PROVIDER_PARAMS, true, // Mock the compute provider parameters, return 32 bytes of 0x00 @@ -207,7 +204,7 @@ describe('Integration', () => { committeeSize, inputWindow, e3Program: contracts.e3Program, - e3ProgramParams, + paramSet: 0, // ParamSet.Insecure512 computeProviderParams, proofAggregationEnabled: false, } diff --git a/tests/integration/restart.sh b/tests/integration/restart.sh new file mode 100755 index 0000000000..9f64835300 --- /dev/null +++ b/tests/integration/restart.sh @@ -0,0 +1,252 @@ +#!/usr/bin/env bash + +# Restart/resilience integration tests. +# +# Tests different scenarios of killing and restarting nodes and the aggregator +# to verify the system recovers correctly. +# +# Scenarios: +# 1. Kill aggregator after key published, restart, complete E3 +# 4. Kill aggregator during DKG (before key published), restart, DKG completes +# 5. Kill and restart a ciphernode mid-DKG, DKG completes +# 6. Kill all nodes and aggregator, restart all, complete E3 +# +# Skipped: +# 2. Kill one ciphernode after key published (aggregator has no timeout for missing shares) +# 3. Kill aggregator during decryption (sync queries one peer which may not have all shares yet) + +set -eu + +THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +source "$THIS_DIR/fns.sh" +source "$THIS_DIR/lib/utils.sh" + +E3_ID=0 # Incremented per committee:new call + +# ── Common setup ────────────────────────────────────────────────────────────── + +heading "Start the EVM node" + +launch_evm + +until curl -sf -X POST http://localhost:8545 -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' > /dev/null; do + sleep 1 +done + +pnpm evm:clean +pnpm evm:deploy --network localhost + +enclave_wallet_set ag "$PRIVATE_KEY_AG" +enclave_wallet_set cn1 "$PRIVATE_KEY_CN1" +enclave_wallet_set cn2 "$PRIVATE_KEY_CN2" +enclave_wallet_set cn3 "$PRIVATE_KEY_CN3" +enclave_wallet_set cn4 "$PRIVATE_KEY_CN4" +enclave_wallet_set cn5 "$PRIVATE_KEY_CN5" + +heading "Setup ZK prover" +$ENCLAVE_BIN noir setup + +ENCODED_PARAMS=0x$($SCRIPT_DIR/lib/pack_e3_params.sh \ + --moduli 0xffffee001 \ + --moduli 0xffffc4001 \ + --degree 512 \ + --plaintext-modulus 100) + +# Register ciphernodes once (persists across scenarios via on-chain state) +pnpm ciphernode:add --ciphernode-address $CIPHERNODE_ADDRESS_1 --network localhost +pnpm ciphernode:add --ciphernode-address $CIPHERNODE_ADDRESS_2 --network localhost +pnpm ciphernode:add --ciphernode-address $CIPHERNODE_ADDRESS_3 --network localhost +pnpm ciphernode:add --ciphernode-address $CIPHERNODE_ADDRESS_4 --network localhost +pnpm ciphernode:add --ciphernode-address $CIPHERNODE_ADDRESS_5 --network localhost + +# ── Helpers ─────────────────────────────────────────────────────────────────── + +clean_output() { + rm -f "$SCRIPT_DIR/output/pubkey.bin" "$SCRIPT_DIR/output/output.bin" "$SCRIPT_DIR/output/plaintext.txt" +} + +# Hard-stop all enclave processes between scenarios (keeps anvil running) +reset_nodes() { + enclave_nodes_down + sleep 2 + # Force-kill any leftover enclave processes from the previous scenario + pkill -9 -f "target/debug/enclave" || true + sleep 1 + clean_output +} + +request_committee() { + CURRENT_TIMESTAMP=$(get_evm_timestamp) + INPUT_WINDOW_START=$((CURRENT_TIMESTAMP + 20)) + INPUT_WINDOW_END=$((CURRENT_TIMESTAMP + 30)) + + pnpm committee:new \ + --network localhost \ + --input-window-start "$INPUT_WINDOW_START" \ + --input-window-end "$INPUT_WINDOW_END" \ + --e3-params "$ENCODED_PARAMS" \ + --committee-size 0 \ + --proof-aggregation-enabled false +} + +publish_ciphertext() { + local e3_id="$1" + + $SCRIPT_DIR/lib/fake_encrypt.sh \ + --input "$SCRIPT_DIR/output/pubkey.bin" \ + --output "$SCRIPT_DIR/output/output.bin" \ + --plaintext $PLAINTEXT \ + --params "$ENCODED_PARAMS" + + pnpm e3-program:publishInput --network localhost --e3-id "$e3_id" --data 0x12345678 + + sleep 6 + + waiton "$SCRIPT_DIR/output/output.bin" + + pnpm e3:publishCiphertext --e3-id "$e3_id" --network localhost \ + --data-file "$SCRIPT_DIR/output/output.bin" --proof 0x12345678 +} + +verify_plaintext() { + local scenario="$1" + + waiton "$SCRIPT_DIR/output/plaintext.txt" 300 + + ACTUAL=$(cut -d',' -f1,2 "$SCRIPT_DIR/output/plaintext.txt") + + if [[ "$ACTUAL" != "$PLAINTEXT"* ]]; then + echo "Invalid plaintext decrypted: actual='$ACTUAL' expected='$PLAINTEXT'" + echo "$scenario — FAILED" + exit 1 + fi + + heading "$scenario — PASSED" +} + +# ── Scenario 1: Kill aggregator after key published, restart ────────────────── + +heading "Scenario 1: Aggregator restart after key published" + +enclave_nodes_up +waiton-files "$ROOT_DIR/target/debug/fake_encrypt" +sleep 4 + +request_committee +waiton "$SCRIPT_DIR/output/pubkey.bin" + +heading "Scenario 1: Killing aggregator" +enclave_nodes_stop ag +sleep 2 + +heading "Scenario 1: Restarting aggregator" +enclave_nodes_start ag +sleep 4 + +heading "Scenario 1: Publishing ciphertext after aggregator restart" +publish_ciphertext "$E3_ID" +verify_plaintext "Scenario 1: Aggregator restart after key published" + +reset_nodes +E3_ID=$((E3_ID + 1)) + +# ── Scenario 4: Kill aggregator during DKG ──────────────────────────────────── + +heading "Scenario 4: Aggregator restart during DKG" + +enclave_nodes_up +sleep 4 + +request_committee + +# Kill aggregator immediately — DKG is in progress +heading "Scenario 4: Killing aggregator during DKG" +sleep 1 +enclave_nodes_stop ag +sleep 2 + +heading "Scenario 4: Restarting aggregator" +enclave_nodes_start ag + +# DKG should complete after aggregator restarts and syncs +waiton "$SCRIPT_DIR/output/pubkey.bin" + +heading "Scenario 4: Publishing ciphertext" +publish_ciphertext "$E3_ID" +verify_plaintext "Scenario 4: Aggregator restart during DKG" + +reset_nodes +E3_ID=$((E3_ID + 1)) + +# ── Scenario 5: Kill and restart ciphernode mid-DKG ─────────────────────────── + +heading "Scenario 5: Ciphernode restart mid-DKG" + +enclave_nodes_up +sleep 4 + +request_committee + +# Kill ciphernode during DKG +heading "Scenario 5: Killing ciphernode cn3 during DKG" +sleep 1 +enclave_nodes_stop cn3 +sleep 2 + +heading "Scenario 5: Restarting ciphernode cn3" +enclave_nodes_start cn3 + +# DKG should complete with cn3 back +waiton "$SCRIPT_DIR/output/pubkey.bin" + +heading "Scenario 5: Publishing ciphertext" +publish_ciphertext "$E3_ID" +verify_plaintext "Scenario 5: Ciphernode restart mid-DKG" + +reset_nodes +E3_ID=$((E3_ID + 1)) + +# ── Scenario 6: Kill all nodes, restart all ─────────────────────────────────── + +heading "Scenario 6: Full cluster restart" + +enclave_nodes_up +sleep 4 + +request_committee +waiton "$SCRIPT_DIR/output/pubkey.bin" + +heading "Scenario 6: Killing all nodes" +enclave_nodes_down +sleep 3 + +heading "Scenario 6: Restarting all nodes" +enclave_nodes_up +sleep 6 + +heading "Scenario 6: Publishing ciphertext after full restart" +publish_ciphertext "$E3_ID" +verify_plaintext "Scenario 6: Full cluster restart" + +# ── Done ────────────────────────────────────────────────────────────────────── + +gracefull_shutdown + +heading "All restart tests PASSED !" +echo -e "\033[32m + ██████ + ██████ + ██████ + ██████ + ██████ + ██████ + ██ ██████ + ████ ██████ + ██████ ██████ + ██████████ + ████████ + ██████ + ████ + ██ + \033[0m" From 3be9da8831e7dc60714476420b41ca615bb1af83 Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Thu, 2 Apr 2026 10:56:21 +0100 Subject: [PATCH 02/10] chore: update env example --- examples/CRISP/server/.env.example | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/CRISP/server/.env.example b/examples/CRISP/server/.env.example index 83592f1226..e3d3929bfb 100644 --- a/examples/CRISP/server/.env.example +++ b/examples/CRISP/server/.env.example @@ -13,10 +13,10 @@ ETHERSCAN_API_KEY="" CRON_API_KEY=1234567890 # Based on Default Anvil Deployments (Only for testing) -ENCLAVE_ADDRESS=0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0 -FEE_TOKEN_ADDRESS=0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -E3_PROGRAM_ADDRESS=0x4c5859f0F772848b2D91F1D83E2Fe57935348029 -CIPHERNODE_REGISTRY_ADDRESS=0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6 +ENCLAVE_ADDRESS=0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e +FEE_TOKEN_ADDRESS=0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 +E3_PROGRAM_ADDRESS=0x809d550fca64d94Bd9F66E60752A544199cfAC3D +CIPHERNODE_REGISTRY_ADDRESS=0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 # E3 Config # Defines the time interval during which users can submit their inputs From 5a9e84864ce5345f45ca376a24ffb1dedce839fd Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Thu, 2 Apr 2026 14:51:34 +0100 Subject: [PATCH 03/10] chore: pr comments --- crates/evm-helpers/src/contracts.rs | 18 +++++----- crates/indexer/src/indexer.rs | 2 +- examples/CRISP/server/src/cli/commands.rs | 7 ++-- .../CRISP/server/src/server/routes/rounds.rs | 5 +-- .../contracts/Enclave.sol/Enclave.json | 24 +++++++------- .../IBondingRegistry.json | 2 +- .../ICiphernodeRegistry.json | 7 +++- .../interfaces/IEnclave.sol/IEnclave.json | 16 ++++----- .../ISlashingManager.json | 2 +- .../CiphernodeRegistryOwnable.json | 33 +++++++++++-------- .../enclave-contracts/contracts/Enclave.sol | 14 ++++---- .../contracts/interfaces/IE3.sol | 2 +- .../contracts/interfaces/IEnclave.sol | 20 +++-------- templates/default/server/index.ts | 6 ++-- 14 files changed, 81 insertions(+), 77 deletions(-) diff --git a/crates/evm-helpers/src/contracts.rs b/crates/evm-helpers/src/contracts.rs index 0546acaa45..4644c3ef24 100644 --- a/crates/evm-helpers/src/contracts.rs +++ b/crates/evm-helpers/src/contracts.rs @@ -55,7 +55,7 @@ sol! { uint256[2] inputWindow; bytes32 encryptionSchemeId; address e3Program; - bytes e3ProgramParams; + uint8 paramSet; bytes customParams; address decryptionVerifier; address pkVerifier; @@ -71,7 +71,7 @@ sol! { CommitteeSize committeeSize; uint256[2] inputWindow; address e3Program; - bytes e3ProgramParams; + uint8 paramSet; bytes computeProviderParams; bytes customParams; bool proofAggregationEnabled; @@ -156,10 +156,10 @@ pub trait EnclaveRead { /// Get the fee quote for an E3 request async fn get_e3_quote( &self, - commitee_size: CommitteeSize, + committee_size: CommitteeSize, input_window: [U256; 2], e3_program: Address, - e3_params: Bytes, + param_set: u8, compute_provider_params: Bytes, proof_aggregation_enabled: bool, ) -> Result; @@ -184,7 +184,7 @@ pub trait EnclaveWrite { committee_size: CommitteeSize, input_window: [U256; 2], e3_program: Address, - e3_params: Bytes, + param_set: u8, compute_provider_params: Bytes, custom_params: Bytes, proof_aggregation_enabled: bool, @@ -372,7 +372,7 @@ where committee_size: CommitteeSize, input_window: [U256; 2], e3_program: Address, - e3_params: Bytes, + param_set: u8, compute_provider_params: Bytes, proof_aggregation_enabled: bool, ) -> Result { @@ -380,7 +380,7 @@ where committeeSize: committee_size, inputWindow: input_window, e3Program: e3_program, - e3ProgramParams: e3_params, + paramSet: param_set, computeProviderParams: compute_provider_params, customParams: Bytes::new(), proofAggregationEnabled: proof_aggregation_enabled, @@ -430,7 +430,7 @@ impl EnclaveWrite for EnclaveContract { committee_size: CommitteeSize, input_window: [U256; 2], e3_program: Address, - e3_params: Bytes, + param_set: u8, compute_provider_params: Bytes, custom_params: Bytes, proof_aggregation_enabled: bool, @@ -448,7 +448,7 @@ impl EnclaveWrite for EnclaveContract { committeeSize: committee_size, inputWindow: input_window, e3Program: e3_program, - e3ProgramParams: e3_params.clone(), + paramSet: param_set, computeProviderParams: compute_provider_params.clone(), customParams: custom_params.clone(), proofAggregationEnabled: proof_aggregation_enabled, diff --git a/crates/indexer/src/indexer.rs b/crates/indexer/src/indexer.rs index f1757eb40e..1d5ccb5d20 100644 --- a/crates/indexer/src/indexer.rs +++ b/crates/indexer/src/indexer.rs @@ -357,7 +357,7 @@ impl EnclaveIndexer { ciphertext_output: vec![], committee_public_key: e.publicKey.to_vec(), custom_params: e3.customParams.to_vec(), - e3_params: e3.e3ProgramParams.to_vec(), + e3_params: vec![e3.paramSet], enclave_address, encryption_scheme_id: e3.encryptionSchemeId.to_vec(), id: e3_id, diff --git a/examples/CRISP/server/src/cli/commands.rs b/examples/CRISP/server/src/cli/commands.rs index a21ede01f4..a5f0461a82 100644 --- a/examples/CRISP/server/src/cli/commands.rs +++ b/examples/CRISP/server/src/cli/commands.rs @@ -139,7 +139,8 @@ pub async fn initialize_crisp_round( return Err(anyhow::anyhow!("Invalid committee size: {}", invalid).into()); } }; - let e3_params = Bytes::from(encode_bfv_params(&generate_bfv_parameters())); + // param_set 0 = InsecureThreshold512 (must match on-chain paramSetRegistry) + let param_set: u8 = 0; let compute_provider_params = ComputeProviderParams { name: CONFIG.e3_compute_provider_name.to_string(), parallel: CONFIG.e3_compute_provider_parallel, @@ -168,7 +169,7 @@ pub async fn initialize_crisp_round( committee_size.clone(), input_window, e3_program, - e3_params.clone(), + param_set, compute_provider_params_bytes.clone(), proof_aggregation_enabled, ) @@ -214,7 +215,7 @@ pub async fn initialize_crisp_round( committee_size, input_window, e3_program, - e3_params, + param_set, compute_provider_params_bytes, custom_params_bytes, proof_aggregation_enabled, diff --git a/examples/CRISP/server/src/server/routes/rounds.rs b/examples/CRISP/server/src/server/routes/rounds.rs index 4fda2d3612..765fa03cbf 100644 --- a/examples/CRISP/server/src/server/routes/rounds.rs +++ b/examples/CRISP/server/src/server/routes/rounds.rs @@ -223,7 +223,8 @@ pub async fn initialize_crisp_round( U256::from(window_start), U256::from(window_start + CONFIG.e3_duration), ]; - let e3_params = Bytes::from(params); + // param_set 0 = InsecureThreshold512 (must match on-chain paramSetRegistry) + let param_set: u8 = 0; let compute_provider_params = ComputeProviderParams { name: CONFIG.e3_compute_provider_name.clone(), parallel: CONFIG.e3_compute_provider_parallel, @@ -238,7 +239,7 @@ pub async fn initialize_crisp_round( committee_size, input_window, e3_program, - e3_params, + param_set, compute_provider_params, custom_params_bytes, proof_aggregation_enabled, diff --git a/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json b/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json index 2c13c98caf..7cb4f48d4d 100644 --- a/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json +++ b/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json @@ -694,7 +694,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -899,7 +899,7 @@ "inputs": [ { "indexed": false, - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -1321,7 +1321,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -1511,7 +1511,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -1584,7 +1584,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -1986,7 +1986,7 @@ { "inputs": [ { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "", "type": "uint8" } @@ -2124,7 +2124,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -2189,7 +2189,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -2346,7 +2346,7 @@ { "inputs": [ { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -2539,11 +2539,11 @@ "type": "function" } ], - "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615948806100d65f395ff3fe608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e03660046145eb565b61092e565b005b61030f6102f5366004614606565b5f908152600960205260409020546001600160a01b031690565b60405161031c919061462a565b60405180910390f35b61030f610333366004614606565b60096020525f90815260409020546001600160a01b031681565b61036061035b366004614651565b6109da565b60405163ffffffff909116815260200161031c565b6102e56103833660046145eb565b610a16565b6102e5610396366004614689565b610abb565b6103bd6103a9366004614606565b5f908152600f602052604090205460ff1690565b60405161031c91906146cb565b6103dd6103d8366004614606565b610acf565b60405161031c9e9d9c9b9a99989796959493929190614727565b61040a610405366004614606565b610c7a565b60405161031c9190614909565b610436610425366004614606565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e5610452366004614926565b610f19565b6102e5610465366004614606565b611156565b6102e56104783660046145eb565b6111e5565b61049061048b3660046149ba565b611278565b60405161031c91906149d3565b60045461030f906001600160a01b031681565b61043660055481565b6102e561130f565b6102e56104cf3660046149e5565b611322565b6102e56104e2366004614606565b6113ab565b6102e56104f5366004614a13565b6114aa565b6102e5610508366004614a70565b61159e565b60015461030f906001600160a01b031681565b61030f611665565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b610555611693565b60405161031c9190614abe565b6102e5610570366004614606565b6116d9565b610555610583366004614606565b611847565b61059b610596366004614606565b6118a0565b60405161031c929190614adf565b61030f6105b7366004614606565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614af5565b6118c7565b604051901515815260200161031c565b610436610602366004614b6c565b611b5f565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614ba3565b61030f610767366004614606565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614cb0565b6120e3565b6102e56107a2366004614d55565b612313565b6102e56107b53660046145eb565b6123cf565b6102e56107c8366004614a13565b612476565b6105e46107db3660046145eb565b60076020525f908152604090205460ff1681565b61043660065481565b6102e56108063660046149e5565b612533565b6102e5610819366004614606565b6125ed565b61084061082c366004614606565b5f908152600d602052604090205460ff1690565b60405161031c9190614d8d565b6102e561085b366004614d9b565b61262a565b6102e561086e3660046145eb565b6128b7565b6102e5610881366004614db5565b612951565b60025461030f906001600160a01b031681565b6102e56108a73660046145eb565b612bfe565b6108bf6108ba366004614b6c565b612c38565b60405161031c929190614dec565b6103bd6108db366004614606565b61359e565b6102e56108ee3660046145eb565b613738565b61030f610901366004614606565b600a6020525f90815260409020546001600160a01b031681565b6102e56109293660046145eb565b6137d0565b61093661385f565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e61385f565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b8152600401610988919061462a565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab090839061462a565b60405180910390a150565b610ac361385f565b610acc81613891565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614e0c565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614e0c565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c82614459565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf6146a3565b6003811115610cd057610cd06146a3565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152606090910190600160a01b900460ff166001811115610d4f57610d4f6146a3565b6001811115610d6057610d606146a3565b8152602001600782018054610d7490614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610da090614e0c565b8015610deb5780601f10610dc257610100808354040283529160200191610deb565b820191905f5260205f20905b815481529060010190602001808311610dce57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e3c90614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6890614e0c565b8015610eb35780601f10610e8a57610100808354040283529160200191610eb3565b820191905f5260205f20905b815481529060010190602001808311610e9657829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610f135760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f2261394e565b805490915060ff600160401b82041615906001600160401b03165f81158015610f485750825b90505f826001600160401b03166001148015610f635750303b155b905081158015610f71575080155b15610f8f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610fb957845460ff60401b1916600160401b1785555b610fc233613978565b610fcb876125ed565b610fd48b613738565b610fdd8a6128b7565b610fe68961092e565b610fef88610a16565b610ff886613891565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110e1611665565b6001600160a01b03168c6001600160a01b031614611102576111028c612bfe565b831561114857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61115e61385f565b5f8181526009602052604090205481906001600160a01b0316611197576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111ed61385f565b6001600160a01b0381165f90815260076020526040902054819060ff16611228576040516321ac7c5f60e01b8152600401610988919061462a565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab090839061462a565b600b6020525f90815260409020805461129090614e0c565b80601f01602080910402602001604051908101604052809291908181526020018280546112bc90614e0c565b80156113075780601f106112de57610100808354040283529160200191611307565b820191905f5260205f20905b8154815290600101906020018083116112ea57829003601f168201915b505050505081565b61131761385f565b6113205f613989565b565b61132a61385f565b6001600160a01b0381161580159061135b57505f828152600a60205260409020546001600160a01b03828116911614155b829061137d576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113d55760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113fa576113fa6146a3565b1461141f57816001826040516337e1404160e01b815260040161098893929190614e3e565b5f828152600d60205260409020805460ff191660021790556015546114449042614e73565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f51602061591c5f395f51905f526001600260405161149e929190614e86565b60405180910390a25050565b5f546001600160a01b031633146114d45760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff166002816006811115611504576115046146a3565b1461152957836002826040516337e1404160e01b815260040161098893929190614e3e565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f51602061591c5f395f51905f5260026003604051611590929190614e86565b60405180910390a250505050565b6115a661385f565b806115e25760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b8181600b5f8660018111156115f9576115f96146a3565b600181111561160a5761160a6146a3565b81526020019081526020015f209182611624929190614f14565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161165893929190614ff0565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6116b460405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff1660068160068111156116fe576116fe6146a3565b14829061172157604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c60205260409020548281611752576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c6020526040812081905561176c846139f9565b5f858152601160205260409020546002549192506001600160a01b03908116916117999183911685613aed565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b697906117cf90889087908790879060040161505c565b5f604051808303815f87803b1580156117e6575f5ffd5b505af11580156117f8573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a07317848451604051611838929190918252602082015260400190565b60405180910390a25050505050565b61186860405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118bd8482613b4a565b9250925050915091565b5f5f6118d287610c7a565b5f888152600d602052604090205490915060ff1660038160068111156118fa576118fa6146a3565b1488600383909192611922576040516337e1404160e01b815260040161098893929190614e3e565b5050505f888152600e6020908152604091829020825160608101845281548152600182015492810183905260029091015492810192909252899042811015611986576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119bd5760405163017e35e560e71b815260048101929092526024820152604401610988565b50506101608301518990156119e857604051637eb9cea960e11b815260040161098891815260200190565b505f88886040516119fa9291906150a7565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff19166004179055601754909150611a3c9042614e73565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611a89908d9085908c908c906004016150b6565b6020604051808303815f875af1158015611aa5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac991906150e2565b9450888886611aed57604051632f9f8ab960e01b81526004016109889291906150fd565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611b219291906150fd565b60405180910390a2895f51602061591c5f395f51905f5260036004604051611b4a929190614e86565b60405180910390a25050505095945050505050565b5f80601281611b716020860186615110565b6003811115611b8257611b826146a3565b6003811115611b9357611b936146a3565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611bba579050505050505090505f81600160028110611c1157611c11615093565b602002015163ffffffff1611835f016020810190611c2f9190615110565b90611c4e5760405163286c068d60e11b81526004016109889190615129565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d79576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d589190615110565b90611d775760405163010b971d60e31b81526004016109889190615129565b505b6101c081015163ffffffff1615611dc8576101c081015184519063ffffffff9081169082161015611dc657604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611df55760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611e139161ffff1690615137565b611e1d919061514e565b61271061ffff1683610160015161ffff16601560010154611e3e9190615137565b611e48919061514e565b61271061ffff1684610140015161ffff1660155f0154611e689190615137565b611e72919061514e565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611ebe573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ee2919061516d565b611eec9190614e73565b611ef69190615184565b611f009190614e73565b611f0a9190614e73565b611f149190614e73565b90505f611f22600186615184565b611f2d906002615137565b611f38906002615137565b611f43906006614e73565b90505f85845f0151611f559190615137565b905081868560200151611f689190615137565b611f729190615137565b611f7c9082614e73565b90506001861115611fc4576002611f94600188615184565b611f9e9088615137565b8560400151611fad9190615137565b611fb7919061514e565b611fc19082614e73565b90505b81868560c00151611fd59190615137565b611fdf9190615137565b611fe99082614e73565b905082868560600151611ffc9190615137565b6120069190615137565b6120109082614e73565b90508484608001516120229190615137565b61202c9082614e73565b90506001851115612074576002612044600187615184565b61204e9087615137565b856040015161205d9190615137565b612067919061514e565b6120719082614e73565b90505b60a08401516120839082614e73565b6101008501519091506127109061209e9061ffff1682614e73565b6120a89083615137565b6120b2919061514e565b975087806120d657604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f6120ee89610c7a565b5f8a8152600d602052604090205490915060ff166004816006811115612116576121166146a3565b148a60048390919261213e576040516337e1404160e01b815260040161098893929190614e3e565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b90428110156121a1576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121be8a8c83614f14565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b6040516122029291906150a7565b6040519081900381206001600160e01b031960e084901b168252612230918c908c908c908c90600401615197565b602060405180830381865afa15801561224b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061226f91906150e2565b935089898561229357604051632f9f8ab960e01b81526004016109889291906150fd565b505061229e8b613cd2565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b6040516122d494939291906151cf565b60405180910390a28a5f51602061591c5f395f51905f52600460056040516122fd929190614e86565b60405180910390a2505050979650505050505050565b5f546001600160a01b031633148061233557506003546001600160a01b031633145b61235257604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156123685750600d60ff821611155b6123ad5760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b6123cb828260ff16600d8111156123c6576123c66146a3565b61413d565b5050565b6123d761385f565b6001600160a01b03811661242d5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b031633146124a1576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b1580156124eb575f5ffd5b505af11580156124fd573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161149e91815260200190565b61253b61385f565b6001600160a01b0381161580159061256c57505f828152600960205260409020546001600160a01b03828116911614155b829061258e576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b6125f561385f565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b61263261385f565b6127106126476101208301610100840161521a565b61ffff16111561265f6101208301610100840161521a565b90612684576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061269a6101408301610120840161521a565b61ffff1611156126b26101408301610120840161521a565b906126d7576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126ed6101608301610140840161521a565b61ffff1611156127056101608301610140840161521a565b9061272a57604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127406101808301610160840161521a565b61ffff1611156127586101808301610160840161521a565b9061277d57604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127936101a08301610180840161521a565b61ffff1611156127ab6101a08301610180840161521a565b906127d057604051633239953960e01b815261ffff9091166004820152602401610988565b506127e36101408201610120830161521a565b61ffff16158061280c57505f612800610100830160e084016145eb565b6001600160a01b031614155b6128295760405163015f92ff60e51b815260040160405180910390fd5b61283b6101e082016101c08301615251565b63ffffffff166128536101c083016101a08401615251565b63ffffffff161015612878576040516392f55c6560e01b815260040160405180910390fd5b8060186128858282615290565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab0919061544e565b6128bf61385f565b6001600160a01b038116158015906128e557506001546001600160a01b03828116911614155b8190612905576040516320252f0b60e01b8152600401610988919061462a565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab090839061462a565b61295961385f565b6129666020820182615251565b63ffffffff1661297c6040830160208401615251565b63ffffffff16101580156129a157505f6129996020830183615251565b63ffffffff16115b6129be57604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612af7576101a081015163ffffffff16612aa76040840160208501615251565b63ffffffff161015612abf6040840160208501615251565b826101a001519091612af457604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b6e576101c081015163ffffffff16612b216020840184615251565b63ffffffff161015612b366020840184615251565b826101c001519091612b6b5760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612b8457612b846146a3565b6003811115612b9557612b956146a3565b815260208101919091526040015f20612baf9160026144d6565b50826003811115612bc257612bc26146a3565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612bf19190615558565b60405180910390a2505050565b612c0661385f565b6001600160a01b038116612c2f575f604051631e4fbdf760e01b8152600401610988919061462a565b610acc81613989565b5f612c41614459565b5f601281612c526020870187615110565b6003811115612c6357612c636146a3565b6003811115612c7457612c746146a3565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612c9b579050505050505090505f81600160028110612cf257612cf2615093565b602002015163ffffffff1611845f016020810190612d109190615110565b90612d2f5760405163286c068d60e11b81526004016109889190615129565b50602084013542811015612d5957604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612d875760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612d9f426040890135615184565b612da99190614e73565b612db39190614e73565b905060055481108190612ddc576040516313b783af60e21b815260040161098891815260200190565b5060075f612df060808801606089016145eb565b6001600160a01b0316815260208101919091526040015f205460ff16612e1c60808701606088016145eb565b90612e3b5760405163295a6a6f60e11b8152600401610988919061462a565b505f612e4686611b5f565b60068054965090915085905f612e5b83615598565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612f369190890135614e73565b5f878152600e6020908152604090912060010191909155818652612f5c90880188615110565b85602001906003811115612f7257612f726146a3565b90816003811115612f8557612f856146a3565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612fcd90608089019089016145eb565b6001600160a01b031660a080870191909152612fee908801608089016149ba565b8560c001906001811115613004576130046146a3565b90816001811115613017576130176146a3565b90525061302760c08801886155b0565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526130749061010089019089016155f2565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a086018190526004546130c4916001600160a01b03909116903085614298565b5f600b816130d860a08b0160808c016149ba565b60018111156130e9576130e96146a3565b60018111156130fa576130fa6146a3565b81526020019081526020015f20805461311290614e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461313e90614e0c565b80156131895780601f1061316057610100808354040283529160200191613189565b820191905f5260205f20905b81548152906001019060200180831161316c57829003601f168201915b505050505090505f8151116131e05760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f6131f160808a0160608b016145eb565b6001600160a01b031663fefd9a8b89858561320f60a08f018f6155b0565b8f8060c0019061321f91906155b0565b6040518863ffffffff1660e01b8152600401613241979695949392919061560d565b6020604051808303815f875af115801561325d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613281919061516d565b5f818152600960205260409020549091506001600160a01b031681816132bd576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b031682816132f7576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff199190911690836003811115613355576133556146a3565b02179055506040820151816002015560608201518160030190600261337b929190614577565b506080820151600582015560a08201516006820180546001600160a01b039092166001600160a01b031983168117825560c0850151926001600160a81b03191617600160a01b8360018111156133d3576133d36146a3565b021790555060e082015160078201906133ec9082615661565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906134549082615661565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b906134ba908d9089908d90600401615716565b6020604051808303815f875af11580156134d6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134fa91906150e2565b61351757604051630d8dbe2560e01b815260040160405180910390fd5b61352760808c0160608d016145eb565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b604051613561929190614dec565b60405180910390a2895f51602061591c5f395f51905f525f6001604051613589929190614e86565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff16818160068111156135c2576135c26146a3565b036135e757826001826040516337e1404160e01b815260040161098893929190614e3e565b60058160068111156135fb576135fb6146a3565b0361361c5760405163462c7bed60e01b815260048101849052602401610988565b6006816006811115613630576136306146a3565b0361365157604051633de16e3560e11b815260048101849052602401610988565b5f61365c8483613b4a565b935090508061368157604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d8111156136ca576136ca6146a3565b0217905550835f51602061591c5f395f51905f528360066040516136ef929190614e86565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb838560405161372992919061575b565b60405180910390a25050919050565b61374061385f565b6001600160a01b0381161580159061376557505f546001600160a01b03828116911614155b8190613785576040516375ac4eb760e11b8152600401610988919061462a565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab090839061462a565b6001600160a01b0381165f90815260076020526040902054819060ff161561380c5760405163b29d459560e01b8152600401610988919061462a565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab090839061462a565b33613868611665565b6001600160a01b031614611320573360405163118cdaa760e01b8152600401610988919061462a565b80356138b05760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138d45760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138f85760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b6139806142d7565b610acc816142fc565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d811115613a2157613a216146a3565b1480613a3e5750600281600d811115613a3c57613a3c6146a3565b145b15613a76575f5b604051908082528060200260200182016040528015613a6e578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613adc57506040513d5f823e601f3d908101601f19168201604052613ad99190810190615781565b60015b613ae6575f613a45565b9392505050565b613b4583846001600160a01b031663a9059cbb8585604051602401613b13929190615849565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614304565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613bc4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613be8919061516d565b90506001856006811115613bfe57613bfe6146a3565b148015613c0a57508042115b15613c1d57600180935093505050613ccb565b6002856006811115613c3157613c316146a3565b148015613c3e5750815142115b15613c525760016003935093505050613ccb565b6003856006811115613c6657613c666146a3565b148015613c765750816020015142115b15613c8a5760016006935093505050613ccb565b6004856006811115613c9e57613c9e6146a3565b148015613cae5750816040015142115b15613cc2576001600a935093505050613ccb565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613d17573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d3e9190810190615781565b80515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613ddc576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613da890889088908690600401615862565b5f604051808303815f87803b158015613dbf575f5ffd5b505af1158015613dd1573d5f5f3e3d5ffd5b505050505050505050565b825f03613e7d575f858152601060205260409020546001600160a01b03168015613e1457613e146001600160a01b0383168285613aed565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e4890899089908790600401615862565b5f604051808303815f87803b158015613e5f575f5ffd5b505af1158015613e71573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613ebd57506001600160a01b03811615155b15613ef957612710613ed361ffff841687615137565b613edd919061514e565b92508215613ef957613ef96001600160a01b0385168285613aed565b5f613f048487615184565b90505f876001600160401b03811115613f1f57613f1f614ea1565b604051908082528060200260200182016040528015613f48578160200160208202803683370190505b5090505f613f56898461514e565b90505f805b8a811015613f955782848281518110613f7657613f76615093565b6020908102919091010152613f8b8383614e73565b9150600101613f5b565b505f613fa18286615184565b90508015613fde578084613fb660018e615184565b81518110613fc657613fc6615093565b60200260200101818151613fda9190614e73565b9052505b600154613ff8906001600160a01b038b8116911687614367565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b815260040161403c939291906158c2565b5f604051808303815f87803b158015614053575f5ffd5b505af1158015614065573d5f5f3e3d5ffd5b505060015461408392506001600160a01b038c81169250165f614367565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d866040516140b59291906158f7565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b815260040161410193929190615862565b5f604051808303815f87803b158015614118575f5ffd5b505af115801561412a573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff1690816006811115614161576141616146a3565b0361418657826001826040516337e1404160e01b815260040161098893929190614e3e565b600581600681111561419a5761419a6146a3565b036141bb5760405163462c7bed60e01b815260048101849052602401610988565b60068160068111156141cf576141cf6146a3565b036141f057604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d811115614239576142396146a3565b0217905550825f51602061591c5f395f51905f5282600660405161425e929190614e86565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612bf192919061575b565b6040516001600160a01b0384811660248301528381166044830152606482018390526142d19186918216906323b872dd90608401613b13565b50505050565b6142df6143f7565b61132057604051631afcd79f60e31b815260040160405180910390fd5b612c066142d7565b5f5f60205f8451602086015f885af180614323576040513d5f823e3d81fd5b50505f513d9150811561433a578060011415614347565b6001600160a01b0384163b155b156142d15783604051635274afe760e01b8152600401610988919061462a565b5f836001600160a01b031663095ea7b3848460405160240161438a929190615849565b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505090506143c38482614410565b6142d1576143ed84856001600160a01b031663095ea7b3865f604051602401613b13929190615849565b6142d18482614304565b5f61440061394e565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f51905082801561444f57508115614441578060011461444f565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f81526020016144816145a5565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b600183019183908215614567579160200282015f5b8382111561453557833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144eb565b80156145655782816101000a81549063ffffffff0219169055600401602081600301049283019260010302614535565b505b506145739291506145c3565b5090565b8260028101928215614567579160200282015b8281111561456757825182559160200191906001019061458a565b60405180604001604052806002906020820280368337509192915050565b5b80821115614573575f81556001016145c4565b6001600160a01b0381168114610acc575f5ffd5b5f602082840312156145fb575f5ffd5b8135613ae6816145d7565b5f60208284031215614616575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b80356004811061464c575f5ffd5b919050565b5f5f60408385031215614662575f5ffd5b61466b8361463e565b946020939093013593505050565b5f60608284031215610f13575f5ffd5b5f60608284031215614699575f5ffd5b613ae68383614679565b634e487b7160e01b5f52602160045260245ffd5b600e81106146c7576146c76146a3565b9052565b6020810161397282846146b7565b600481106146c7576146c76146a3565b600281106146c7576146c76146a3565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e8152614737602082018f6146d9565b8c60408201528b6060820152614750608082018c61461d565b61475d60a082018b6146e9565b6101c060c08201525f6147746101c083018b6146f9565b61478160e084018b61461d565b61478f61010084018a61461d565b87610120840152866101408401528281036101608401526147b081876146f9565b9150506147c161018083018561461d565b8215156101a08301529f9e505050505050505050505050505050565b805f5b60028110156142d15781518452602093840193909101906001016147e0565b805182525f602082015161481660208501826146d9565b5060408201516040840152606082015161483360608501826147dd565b50608082015160a084015260a082015161485060c085018261461d565b5060c082015161486360e08501826146e9565b5060e08201516102006101008501526148806102008501826146f9565b905061010083015161489661012086018261461d565b506101208301516148ab61014086018261461d565b506101408301516101608501526101608301516101808501526101808301518482036101a08601526148dd82826146f9565b9150506101a08301516148f46101c086018261461d565b506101c08301518015156101e0860152613a6e565b602081525f613ae660208301846147ff565b803561464c816145d7565b5f5f5f5f5f5f5f610120888a03121561493d575f5ffd5b8735614948816145d7565b96506020880135614958816145d7565b95506040880135614968816145d7565b94506060880135614978816145d7565b93506080880135614988816145d7565b925060a0880135915061499e8960c08a01614679565b905092959891949750929550565b80356002811061464c575f5ffd5b5f602082840312156149ca575f5ffd5b613ae6826149ac565b602081525f613ae660208301846146f9565b5f5f604083850312156149f6575f5ffd5b823591506020830135614a08816145d7565b809150509250929050565b5f5f60408385031215614a24575f5ffd5b50508035926020909101359150565b5f5f83601f840112614a43575f5ffd5b5081356001600160401b03811115614a59575f5ffd5b602083019150836020828501011115613ccb575f5ffd5b5f5f5f60408486031215614a82575f5ffd5b614a8b846149ac565b925060208401356001600160401b03811115614aa5575f5ffd5b614ab186828701614a33565b9497909650939450505050565b81518152602080830151908201526040808301519082015260608101613972565b821515815260408101613ae660208301846146b7565b5f5f5f5f5f60608688031215614b09575f5ffd5b8535945060208601356001600160401b03811115614b25575f5ffd5b614b3188828901614a33565b90955093505060408601356001600160401b03811115614b4f575f5ffd5b614b5b88828901614a33565b969995985093965092949392505050565b5f60208284031215614b7c575f5ffd5b81356001600160401b03811115614b91575f5ffd5b82016101008185031215613ae6575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614bfd60e084018261461d565b50610100830151614c1561010084018261ffff169052565b50610120830151614c2d61012084018261ffff169052565b50610140830151614c4561014084018261ffff169052565b50610160830151614c5d61016084018261ffff169052565b50610180830151614c7561018084018261ffff169052565b506101a0830151614c8f6101a084018263ffffffff169052565b506101c0830151614ca96101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614cc6575f5ffd5b8735965060208801356001600160401b03811115614ce2575f5ffd5b614cee8a828b01614a33565b90975095505060408801356001600160401b03811115614d0c575f5ffd5b614d188a828b01614a33565b90955093505060608801356001600160401b03811115614d36575f5ffd5b614d428a828b01614a33565b989b979a50959850939692959293505050565b5f5f60408385031215614d66575f5ffd5b82359150602083013560ff81168114614a08575f5ffd5b600781106146c7576146c76146a3565b602081016139728284614d7d565b5f6101e0828403128015614dad575f5ffd5b509092915050565b5f5f60608385031215614dc6575f5ffd5b614dcf8361463e565b915083606084011115614de0575f5ffd5b50926020919091019150565b828152604060208201525f614e0460408301846147ff565b949350505050565b600181811c90821680614e2057607f821691505b602082108103610f1357634e487b7160e01b5f52602260045260245ffd5b83815260608101614e526020830185614d7d565b614e046040830184614d7d565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561397257613972614e5f565b60408101614e948285614d7d565b613ae66020830184614d7d565b634e487b7160e01b5f52604160045260245ffd5b601f821115613b4557805f5260205f20601f840160051c81016020851015614eda5750805b601f840160051c820191505b81811015614ef9575f8155600101614ee6565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614f2b57614f2b614ea1565b614f3f83614f398354614e0c565b83614eb5565b5f601f841160018114614f6b575f8515614f595750838201355b614f638682614f00565b845550614ef9565b5f83815260208120601f198716915b82811015614f9a5786850135825560209485019460019092019101614f7a565b5086821015614fb6575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b614ffa81856146e9565b604060208201525f615010604083018486614fc8565b95945050505050565b5f8151808452602084019350602083015f5b828110156150525781516001600160a01b031686526020958601959091019060010161502b565b5093949350505050565b848152836020820152608060408201525f61507a6080830185615019565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f61444f606083018486614fc8565b8015158114610acc575f5ffd5b5f602082840312156150f2575f5ffd5b8151613ae6816150d5565b602081525f614e04602083018486614fc8565b5f60208284031215615120575f5ffd5b613ae68261463e565b6020810161397282846146d9565b808202811582820484141761397257613972614e5f565b5f8261516857634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561517d575f5ffd5b5051919050565b8181038181111561397257613972614e5f565b858152606060208201525f6151b0606083018688614fc8565b82810360408401526151c3818587614fc8565b98975050505050505050565b604081525f6151e2604083018688614fc8565b82810360208401526151f5818587614fc8565b979650505050505050565b61ffff81168114610acc575f5ffd5b803561464c81615200565b5f6020828403121561522a575f5ffd5b8135613ae681615200565b63ffffffff81168114610acc575f5ffd5b803561464c81615235565b5f60208284031215615261575f5ffd5b8135613ae681615235565b5f8135613972816145d7565b5f813561397281615200565b5f813561397281615235565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c08201356006820155600781016153006152e360e0850161526c565b82546001600160a01b0319166001600160a01b0391909116178255565b6153306153106101008501615278565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6153606153406101208501615278565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b6153906153706101408501615278565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b6153c06153a06101608501615278565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6153f06153d06101808501615278565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b506008810161541c6154056101a08501615284565b825463ffffffff191663ffffffff91909116178255565b613b4561542c6101c08501615284565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e0810161549f60e0840161491b565b6154ac60e084018261461d565b506154ba610100840161520f565b61ffff166101008301526154d1610120840161520f565b61ffff166101208301526154e8610140840161520f565b61ffff166101408301526154ff610160840161520f565b61ffff16610160830152615516610180840161520f565b61ffff1661018083015261552d6101a08401615246565b63ffffffff166101a08301526155466101c08401615246565b63ffffffff81166101c0840152614ca9565b6040810181835f5b600281101561558f57813561557481615235565b63ffffffff1683526020928301929190910190600101615560565b50505092915050565b5f600182016155a9576155a9614e5f565b5060010190565b5f5f8335601e198436030181126155c5575f5ffd5b8301803591506001600160401b038211156155de575f5ffd5b602001915036819003821315613ccb575f5ffd5b5f60208284031215615602575f5ffd5b8135613ae6816150d5565b87815286602082015260a060408201525f61562b60a08301886146f9565b828103606084015261563e818789614fc8565b90508281036080840152615653818587614fc8565b9a9950505050505050505050565b81516001600160401b0381111561567a5761567a614ea1565b61568e816156888454614e0c565b84614eb5565b6020601f8211600181146156bb575f83156156a95750848201515b6156b38482614f00565b855550614ef9565b5f84815260208120601f198516915b828110156156ea57878501518255602094850194600190920191016156ca565b508482101561570757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561575057815163ffffffff1683526020928301929091019060010161572b565b505050949350505050565b604081016157698285614d7d565b613ae660208301846146b7565b805161464c816145d7565b5f60208284031215615791575f5ffd5b81516001600160401b038111156157a6575f5ffd5b8201601f810184136157b6575f5ffd5b80516001600160401b038111156157cf576157cf614ea1565b8060051b604051601f19603f83011681018181106001600160401b03821117156157fb576157fb614ea1565b604052918252602081840181019290810187841115615818575f5ffd5b6020850194505b8385101561583e5761583085615776565b81526020948501940161581f565b509695505050505050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f61587a6060830185615019565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b828110156150525781518652602095860195909101906001016158a4565b6001600160a01b03841681526060602082018190525f906158e590830185615019565b828103604084015261444f8185615892565b604081525f6159096040830185615019565b8281036020840152615010818561589256fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", - "deployedBytecode": "0x608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e03660046145eb565b61092e565b005b61030f6102f5366004614606565b5f908152600960205260409020546001600160a01b031690565b60405161031c919061462a565b60405180910390f35b61030f610333366004614606565b60096020525f90815260409020546001600160a01b031681565b61036061035b366004614651565b6109da565b60405163ffffffff909116815260200161031c565b6102e56103833660046145eb565b610a16565b6102e5610396366004614689565b610abb565b6103bd6103a9366004614606565b5f908152600f602052604090205460ff1690565b60405161031c91906146cb565b6103dd6103d8366004614606565b610acf565b60405161031c9e9d9c9b9a99989796959493929190614727565b61040a610405366004614606565b610c7a565b60405161031c9190614909565b610436610425366004614606565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e5610452366004614926565b610f19565b6102e5610465366004614606565b611156565b6102e56104783660046145eb565b6111e5565b61049061048b3660046149ba565b611278565b60405161031c91906149d3565b60045461030f906001600160a01b031681565b61043660055481565b6102e561130f565b6102e56104cf3660046149e5565b611322565b6102e56104e2366004614606565b6113ab565b6102e56104f5366004614a13565b6114aa565b6102e5610508366004614a70565b61159e565b60015461030f906001600160a01b031681565b61030f611665565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b610555611693565b60405161031c9190614abe565b6102e5610570366004614606565b6116d9565b610555610583366004614606565b611847565b61059b610596366004614606565b6118a0565b60405161031c929190614adf565b61030f6105b7366004614606565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614af5565b6118c7565b604051901515815260200161031c565b610436610602366004614b6c565b611b5f565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614ba3565b61030f610767366004614606565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614cb0565b6120e3565b6102e56107a2366004614d55565b612313565b6102e56107b53660046145eb565b6123cf565b6102e56107c8366004614a13565b612476565b6105e46107db3660046145eb565b60076020525f908152604090205460ff1681565b61043660065481565b6102e56108063660046149e5565b612533565b6102e5610819366004614606565b6125ed565b61084061082c366004614606565b5f908152600d602052604090205460ff1690565b60405161031c9190614d8d565b6102e561085b366004614d9b565b61262a565b6102e561086e3660046145eb565b6128b7565b6102e5610881366004614db5565b612951565b60025461030f906001600160a01b031681565b6102e56108a73660046145eb565b612bfe565b6108bf6108ba366004614b6c565b612c38565b60405161031c929190614dec565b6103bd6108db366004614606565b61359e565b6102e56108ee3660046145eb565b613738565b61030f610901366004614606565b600a6020525f90815260409020546001600160a01b031681565b6102e56109293660046145eb565b6137d0565b61093661385f565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e61385f565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b8152600401610988919061462a565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab090839061462a565b60405180910390a150565b610ac361385f565b610acc81613891565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614e0c565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614e0c565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c82614459565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf6146a3565b6003811115610cd057610cd06146a3565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152606090910190600160a01b900460ff166001811115610d4f57610d4f6146a3565b6001811115610d6057610d606146a3565b8152602001600782018054610d7490614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610da090614e0c565b8015610deb5780601f10610dc257610100808354040283529160200191610deb565b820191905f5260205f20905b815481529060010190602001808311610dce57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e3c90614e0c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6890614e0c565b8015610eb35780601f10610e8a57610100808354040283529160200191610eb3565b820191905f5260205f20905b815481529060010190602001808311610e9657829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610f135760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f2261394e565b805490915060ff600160401b82041615906001600160401b03165f81158015610f485750825b90505f826001600160401b03166001148015610f635750303b155b905081158015610f71575080155b15610f8f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610fb957845460ff60401b1916600160401b1785555b610fc233613978565b610fcb876125ed565b610fd48b613738565b610fdd8a6128b7565b610fe68961092e565b610fef88610a16565b610ff886613891565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110e1611665565b6001600160a01b03168c6001600160a01b031614611102576111028c612bfe565b831561114857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61115e61385f565b5f8181526009602052604090205481906001600160a01b0316611197576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111ed61385f565b6001600160a01b0381165f90815260076020526040902054819060ff16611228576040516321ac7c5f60e01b8152600401610988919061462a565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab090839061462a565b600b6020525f90815260409020805461129090614e0c565b80601f01602080910402602001604051908101604052809291908181526020018280546112bc90614e0c565b80156113075780601f106112de57610100808354040283529160200191611307565b820191905f5260205f20905b8154815290600101906020018083116112ea57829003601f168201915b505050505081565b61131761385f565b6113205f613989565b565b61132a61385f565b6001600160a01b0381161580159061135b57505f828152600a60205260409020546001600160a01b03828116911614155b829061137d576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113d55760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113fa576113fa6146a3565b1461141f57816001826040516337e1404160e01b815260040161098893929190614e3e565b5f828152600d60205260409020805460ff191660021790556015546114449042614e73565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f51602061591c5f395f51905f526001600260405161149e929190614e86565b60405180910390a25050565b5f546001600160a01b031633146114d45760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff166002816006811115611504576115046146a3565b1461152957836002826040516337e1404160e01b815260040161098893929190614e3e565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f51602061591c5f395f51905f5260026003604051611590929190614e86565b60405180910390a250505050565b6115a661385f565b806115e25760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b8181600b5f8660018111156115f9576115f96146a3565b600181111561160a5761160a6146a3565b81526020019081526020015f209182611624929190614f14565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161165893929190614ff0565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6116b460405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff1660068160068111156116fe576116fe6146a3565b14829061172157604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c60205260409020548281611752576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c6020526040812081905561176c846139f9565b5f858152601160205260409020546002549192506001600160a01b03908116916117999183911685613aed565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b697906117cf90889087908790879060040161505c565b5f604051808303815f87803b1580156117e6575f5ffd5b505af11580156117f8573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a07317848451604051611838929190918252602082015260400190565b60405180910390a25050505050565b61186860405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118bd8482613b4a565b9250925050915091565b5f5f6118d287610c7a565b5f888152600d602052604090205490915060ff1660038160068111156118fa576118fa6146a3565b1488600383909192611922576040516337e1404160e01b815260040161098893929190614e3e565b5050505f888152600e6020908152604091829020825160608101845281548152600182015492810183905260029091015492810192909252899042811015611986576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119bd5760405163017e35e560e71b815260048101929092526024820152604401610988565b50506101608301518990156119e857604051637eb9cea960e11b815260040161098891815260200190565b505f88886040516119fa9291906150a7565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff19166004179055601754909150611a3c9042614e73565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611a89908d9085908c908c906004016150b6565b6020604051808303815f875af1158015611aa5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac991906150e2565b9450888886611aed57604051632f9f8ab960e01b81526004016109889291906150fd565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611b219291906150fd565b60405180910390a2895f51602061591c5f395f51905f5260036004604051611b4a929190614e86565b60405180910390a25050505095945050505050565b5f80601281611b716020860186615110565b6003811115611b8257611b826146a3565b6003811115611b9357611b936146a3565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611bba579050505050505090505f81600160028110611c1157611c11615093565b602002015163ffffffff1611835f016020810190611c2f9190615110565b90611c4e5760405163286c068d60e11b81526004016109889190615129565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d79576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d589190615110565b90611d775760405163010b971d60e31b81526004016109889190615129565b505b6101c081015163ffffffff1615611dc8576101c081015184519063ffffffff9081169082161015611dc657604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611df55760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611e139161ffff1690615137565b611e1d919061514e565b61271061ffff1683610160015161ffff16601560010154611e3e9190615137565b611e48919061514e565b61271061ffff1684610140015161ffff1660155f0154611e689190615137565b611e72919061514e565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611ebe573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ee2919061516d565b611eec9190614e73565b611ef69190615184565b611f009190614e73565b611f0a9190614e73565b611f149190614e73565b90505f611f22600186615184565b611f2d906002615137565b611f38906002615137565b611f43906006614e73565b90505f85845f0151611f559190615137565b905081868560200151611f689190615137565b611f729190615137565b611f7c9082614e73565b90506001861115611fc4576002611f94600188615184565b611f9e9088615137565b8560400151611fad9190615137565b611fb7919061514e565b611fc19082614e73565b90505b81868560c00151611fd59190615137565b611fdf9190615137565b611fe99082614e73565b905082868560600151611ffc9190615137565b6120069190615137565b6120109082614e73565b90508484608001516120229190615137565b61202c9082614e73565b90506001851115612074576002612044600187615184565b61204e9087615137565b856040015161205d9190615137565b612067919061514e565b6120719082614e73565b90505b60a08401516120839082614e73565b6101008501519091506127109061209e9061ffff1682614e73565b6120a89083615137565b6120b2919061514e565b975087806120d657604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f6120ee89610c7a565b5f8a8152600d602052604090205490915060ff166004816006811115612116576121166146a3565b148a60048390919261213e576040516337e1404160e01b815260040161098893929190614e3e565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b90428110156121a1576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121be8a8c83614f14565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b6040516122029291906150a7565b6040519081900381206001600160e01b031960e084901b168252612230918c908c908c908c90600401615197565b602060405180830381865afa15801561224b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061226f91906150e2565b935089898561229357604051632f9f8ab960e01b81526004016109889291906150fd565b505061229e8b613cd2565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b6040516122d494939291906151cf565b60405180910390a28a5f51602061591c5f395f51905f52600460056040516122fd929190614e86565b60405180910390a2505050979650505050505050565b5f546001600160a01b031633148061233557506003546001600160a01b031633145b61235257604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156123685750600d60ff821611155b6123ad5760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b6123cb828260ff16600d8111156123c6576123c66146a3565b61413d565b5050565b6123d761385f565b6001600160a01b03811661242d5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b031633146124a1576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b1580156124eb575f5ffd5b505af11580156124fd573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161149e91815260200190565b61253b61385f565b6001600160a01b0381161580159061256c57505f828152600960205260409020546001600160a01b03828116911614155b829061258e576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b6125f561385f565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b61263261385f565b6127106126476101208301610100840161521a565b61ffff16111561265f6101208301610100840161521a565b90612684576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061269a6101408301610120840161521a565b61ffff1611156126b26101408301610120840161521a565b906126d7576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126ed6101608301610140840161521a565b61ffff1611156127056101608301610140840161521a565b9061272a57604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127406101808301610160840161521a565b61ffff1611156127586101808301610160840161521a565b9061277d57604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127936101a08301610180840161521a565b61ffff1611156127ab6101a08301610180840161521a565b906127d057604051633239953960e01b815261ffff9091166004820152602401610988565b506127e36101408201610120830161521a565b61ffff16158061280c57505f612800610100830160e084016145eb565b6001600160a01b031614155b6128295760405163015f92ff60e51b815260040160405180910390fd5b61283b6101e082016101c08301615251565b63ffffffff166128536101c083016101a08401615251565b63ffffffff161015612878576040516392f55c6560e01b815260040160405180910390fd5b8060186128858282615290565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab0919061544e565b6128bf61385f565b6001600160a01b038116158015906128e557506001546001600160a01b03828116911614155b8190612905576040516320252f0b60e01b8152600401610988919061462a565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab090839061462a565b61295961385f565b6129666020820182615251565b63ffffffff1661297c6040830160208401615251565b63ffffffff16101580156129a157505f6129996020830183615251565b63ffffffff16115b6129be57604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612af7576101a081015163ffffffff16612aa76040840160208501615251565b63ffffffff161015612abf6040840160208501615251565b826101a001519091612af457604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b6e576101c081015163ffffffff16612b216020840184615251565b63ffffffff161015612b366020840184615251565b826101c001519091612b6b5760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612b8457612b846146a3565b6003811115612b9557612b956146a3565b815260208101919091526040015f20612baf9160026144d6565b50826003811115612bc257612bc26146a3565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612bf19190615558565b60405180910390a2505050565b612c0661385f565b6001600160a01b038116612c2f575f604051631e4fbdf760e01b8152600401610988919061462a565b610acc81613989565b5f612c41614459565b5f601281612c526020870187615110565b6003811115612c6357612c636146a3565b6003811115612c7457612c746146a3565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612c9b579050505050505090505f81600160028110612cf257612cf2615093565b602002015163ffffffff1611845f016020810190612d109190615110565b90612d2f5760405163286c068d60e11b81526004016109889190615129565b50602084013542811015612d5957604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612d875760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612d9f426040890135615184565b612da99190614e73565b612db39190614e73565b905060055481108190612ddc576040516313b783af60e21b815260040161098891815260200190565b5060075f612df060808801606089016145eb565b6001600160a01b0316815260208101919091526040015f205460ff16612e1c60808701606088016145eb565b90612e3b5760405163295a6a6f60e11b8152600401610988919061462a565b505f612e4686611b5f565b60068054965090915085905f612e5b83615598565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612f369190890135614e73565b5f878152600e6020908152604090912060010191909155818652612f5c90880188615110565b85602001906003811115612f7257612f726146a3565b90816003811115612f8557612f856146a3565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612fcd90608089019089016145eb565b6001600160a01b031660a080870191909152612fee908801608089016149ba565b8560c001906001811115613004576130046146a3565b90816001811115613017576130176146a3565b90525061302760c08801886155b0565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526130749061010089019089016155f2565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a086018190526004546130c4916001600160a01b03909116903085614298565b5f600b816130d860a08b0160808c016149ba565b60018111156130e9576130e96146a3565b60018111156130fa576130fa6146a3565b81526020019081526020015f20805461311290614e0c565b80601f016020809104026020016040519081016040528092919081815260200182805461313e90614e0c565b80156131895780601f1061316057610100808354040283529160200191613189565b820191905f5260205f20905b81548152906001019060200180831161316c57829003601f168201915b505050505090505f8151116131e05760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f6131f160808a0160608b016145eb565b6001600160a01b031663fefd9a8b89858561320f60a08f018f6155b0565b8f8060c0019061321f91906155b0565b6040518863ffffffff1660e01b8152600401613241979695949392919061560d565b6020604051808303815f875af115801561325d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613281919061516d565b5f818152600960205260409020549091506001600160a01b031681816132bd576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b031682816132f7576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff199190911690836003811115613355576133556146a3565b02179055506040820151816002015560608201518160030190600261337b929190614577565b506080820151600582015560a08201516006820180546001600160a01b039092166001600160a01b031983168117825560c0850151926001600160a81b03191617600160a01b8360018111156133d3576133d36146a3565b021790555060e082015160078201906133ec9082615661565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906134549082615661565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b906134ba908d9089908d90600401615716565b6020604051808303815f875af11580156134d6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134fa91906150e2565b61351757604051630d8dbe2560e01b815260040160405180910390fd5b61352760808c0160608d016145eb565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b604051613561929190614dec565b60405180910390a2895f51602061591c5f395f51905f525f6001604051613589929190614e86565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff16818160068111156135c2576135c26146a3565b036135e757826001826040516337e1404160e01b815260040161098893929190614e3e565b60058160068111156135fb576135fb6146a3565b0361361c5760405163462c7bed60e01b815260048101849052602401610988565b6006816006811115613630576136306146a3565b0361365157604051633de16e3560e11b815260048101849052602401610988565b5f61365c8483613b4a565b935090508061368157604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d8111156136ca576136ca6146a3565b0217905550835f51602061591c5f395f51905f528360066040516136ef929190614e86565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb838560405161372992919061575b565b60405180910390a25050919050565b61374061385f565b6001600160a01b0381161580159061376557505f546001600160a01b03828116911614155b8190613785576040516375ac4eb760e11b8152600401610988919061462a565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab090839061462a565b6001600160a01b0381165f90815260076020526040902054819060ff161561380c5760405163b29d459560e01b8152600401610988919061462a565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab090839061462a565b33613868611665565b6001600160a01b031614611320573360405163118cdaa760e01b8152600401610988919061462a565b80356138b05760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138d45760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138f85760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b6139806142d7565b610acc816142fc565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d811115613a2157613a216146a3565b1480613a3e5750600281600d811115613a3c57613a3c6146a3565b145b15613a76575f5b604051908082528060200260200182016040528015613a6e578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613adc57506040513d5f823e601f3d908101601f19168201604052613ad99190810190615781565b60015b613ae6575f613a45565b9392505050565b613b4583846001600160a01b031663a9059cbb8585604051602401613b13929190615849565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614304565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613bc4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613be8919061516d565b90506001856006811115613bfe57613bfe6146a3565b148015613c0a57508042115b15613c1d57600180935093505050613ccb565b6002856006811115613c3157613c316146a3565b148015613c3e5750815142115b15613c525760016003935093505050613ccb565b6003856006811115613c6657613c666146a3565b148015613c765750816020015142115b15613c8a5760016006935093505050613ccb565b6004856006811115613c9e57613c9e6146a3565b148015613cae5750816040015142115b15613cc2576001600a935093505050613ccb565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613d17573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d3e9190810190615781565b80515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613ddc576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613da890889088908690600401615862565b5f604051808303815f87803b158015613dbf575f5ffd5b505af1158015613dd1573d5f5f3e3d5ffd5b505050505050505050565b825f03613e7d575f858152601060205260409020546001600160a01b03168015613e1457613e146001600160a01b0383168285613aed565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e4890899089908790600401615862565b5f604051808303815f87803b158015613e5f575f5ffd5b505af1158015613e71573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613ebd57506001600160a01b03811615155b15613ef957612710613ed361ffff841687615137565b613edd919061514e565b92508215613ef957613ef96001600160a01b0385168285613aed565b5f613f048487615184565b90505f876001600160401b03811115613f1f57613f1f614ea1565b604051908082528060200260200182016040528015613f48578160200160208202803683370190505b5090505f613f56898461514e565b90505f805b8a811015613f955782848281518110613f7657613f76615093565b6020908102919091010152613f8b8383614e73565b9150600101613f5b565b505f613fa18286615184565b90508015613fde578084613fb660018e615184565b81518110613fc657613fc6615093565b60200260200101818151613fda9190614e73565b9052505b600154613ff8906001600160a01b038b8116911687614367565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b815260040161403c939291906158c2565b5f604051808303815f87803b158015614053575f5ffd5b505af1158015614065573d5f5f3e3d5ffd5b505060015461408392506001600160a01b038c81169250165f614367565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d866040516140b59291906158f7565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b815260040161410193929190615862565b5f604051808303815f87803b158015614118575f5ffd5b505af115801561412a573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff1690816006811115614161576141616146a3565b0361418657826001826040516337e1404160e01b815260040161098893929190614e3e565b600581600681111561419a5761419a6146a3565b036141bb5760405163462c7bed60e01b815260048101849052602401610988565b60068160068111156141cf576141cf6146a3565b036141f057604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d811115614239576142396146a3565b0217905550825f51602061591c5f395f51905f5282600660405161425e929190614e86565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612bf192919061575b565b6040516001600160a01b0384811660248301528381166044830152606482018390526142d19186918216906323b872dd90608401613b13565b50505050565b6142df6143f7565b61132057604051631afcd79f60e31b815260040160405180910390fd5b612c066142d7565b5f5f60205f8451602086015f885af180614323576040513d5f823e3d81fd5b50505f513d9150811561433a578060011415614347565b6001600160a01b0384163b155b156142d15783604051635274afe760e01b8152600401610988919061462a565b5f836001600160a01b031663095ea7b3848460405160240161438a929190615849565b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505090506143c38482614410565b6142d1576143ed84856001600160a01b031663095ea7b3865f604051602401613b13929190615849565b6142d18482614304565b5f61440061394e565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f51905082801561444f57508115614441578060011461444f565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f81526020016144816145a5565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b600183019183908215614567579160200282015f5b8382111561453557833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144eb565b80156145655782816101000a81549063ffffffff0219169055600401602081600301049283019260010302614535565b505b506145739291506145c3565b5090565b8260028101928215614567579160200282015b8281111561456757825182559160200191906001019061458a565b60405180604001604052806002906020820280368337509192915050565b5b80821115614573575f81556001016145c4565b6001600160a01b0381168114610acc575f5ffd5b5f602082840312156145fb575f5ffd5b8135613ae6816145d7565b5f60208284031215614616575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b80356004811061464c575f5ffd5b919050565b5f5f60408385031215614662575f5ffd5b61466b8361463e565b946020939093013593505050565b5f60608284031215610f13575f5ffd5b5f60608284031215614699575f5ffd5b613ae68383614679565b634e487b7160e01b5f52602160045260245ffd5b600e81106146c7576146c76146a3565b9052565b6020810161397282846146b7565b600481106146c7576146c76146a3565b600281106146c7576146c76146a3565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e8152614737602082018f6146d9565b8c60408201528b6060820152614750608082018c61461d565b61475d60a082018b6146e9565b6101c060c08201525f6147746101c083018b6146f9565b61478160e084018b61461d565b61478f61010084018a61461d565b87610120840152866101408401528281036101608401526147b081876146f9565b9150506147c161018083018561461d565b8215156101a08301529f9e505050505050505050505050505050565b805f5b60028110156142d15781518452602093840193909101906001016147e0565b805182525f602082015161481660208501826146d9565b5060408201516040840152606082015161483360608501826147dd565b50608082015160a084015260a082015161485060c085018261461d565b5060c082015161486360e08501826146e9565b5060e08201516102006101008501526148806102008501826146f9565b905061010083015161489661012086018261461d565b506101208301516148ab61014086018261461d565b506101408301516101608501526101608301516101808501526101808301518482036101a08601526148dd82826146f9565b9150506101a08301516148f46101c086018261461d565b506101c08301518015156101e0860152613a6e565b602081525f613ae660208301846147ff565b803561464c816145d7565b5f5f5f5f5f5f5f610120888a03121561493d575f5ffd5b8735614948816145d7565b96506020880135614958816145d7565b95506040880135614968816145d7565b94506060880135614978816145d7565b93506080880135614988816145d7565b925060a0880135915061499e8960c08a01614679565b905092959891949750929550565b80356002811061464c575f5ffd5b5f602082840312156149ca575f5ffd5b613ae6826149ac565b602081525f613ae660208301846146f9565b5f5f604083850312156149f6575f5ffd5b823591506020830135614a08816145d7565b809150509250929050565b5f5f60408385031215614a24575f5ffd5b50508035926020909101359150565b5f5f83601f840112614a43575f5ffd5b5081356001600160401b03811115614a59575f5ffd5b602083019150836020828501011115613ccb575f5ffd5b5f5f5f60408486031215614a82575f5ffd5b614a8b846149ac565b925060208401356001600160401b03811115614aa5575f5ffd5b614ab186828701614a33565b9497909650939450505050565b81518152602080830151908201526040808301519082015260608101613972565b821515815260408101613ae660208301846146b7565b5f5f5f5f5f60608688031215614b09575f5ffd5b8535945060208601356001600160401b03811115614b25575f5ffd5b614b3188828901614a33565b90955093505060408601356001600160401b03811115614b4f575f5ffd5b614b5b88828901614a33565b969995985093965092949392505050565b5f60208284031215614b7c575f5ffd5b81356001600160401b03811115614b91575f5ffd5b82016101008185031215613ae6575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614bfd60e084018261461d565b50610100830151614c1561010084018261ffff169052565b50610120830151614c2d61012084018261ffff169052565b50610140830151614c4561014084018261ffff169052565b50610160830151614c5d61016084018261ffff169052565b50610180830151614c7561018084018261ffff169052565b506101a0830151614c8f6101a084018263ffffffff169052565b506101c0830151614ca96101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614cc6575f5ffd5b8735965060208801356001600160401b03811115614ce2575f5ffd5b614cee8a828b01614a33565b90975095505060408801356001600160401b03811115614d0c575f5ffd5b614d188a828b01614a33565b90955093505060608801356001600160401b03811115614d36575f5ffd5b614d428a828b01614a33565b989b979a50959850939692959293505050565b5f5f60408385031215614d66575f5ffd5b82359150602083013560ff81168114614a08575f5ffd5b600781106146c7576146c76146a3565b602081016139728284614d7d565b5f6101e0828403128015614dad575f5ffd5b509092915050565b5f5f60608385031215614dc6575f5ffd5b614dcf8361463e565b915083606084011115614de0575f5ffd5b50926020919091019150565b828152604060208201525f614e0460408301846147ff565b949350505050565b600181811c90821680614e2057607f821691505b602082108103610f1357634e487b7160e01b5f52602260045260245ffd5b83815260608101614e526020830185614d7d565b614e046040830184614d7d565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561397257613972614e5f565b60408101614e948285614d7d565b613ae66020830184614d7d565b634e487b7160e01b5f52604160045260245ffd5b601f821115613b4557805f5260205f20601f840160051c81016020851015614eda5750805b601f840160051c820191505b81811015614ef9575f8155600101614ee6565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614f2b57614f2b614ea1565b614f3f83614f398354614e0c565b83614eb5565b5f601f841160018114614f6b575f8515614f595750838201355b614f638682614f00565b845550614ef9565b5f83815260208120601f198716915b82811015614f9a5786850135825560209485019460019092019101614f7a565b5086821015614fb6575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b614ffa81856146e9565b604060208201525f615010604083018486614fc8565b95945050505050565b5f8151808452602084019350602083015f5b828110156150525781516001600160a01b031686526020958601959091019060010161502b565b5093949350505050565b848152836020820152608060408201525f61507a6080830185615019565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f61444f606083018486614fc8565b8015158114610acc575f5ffd5b5f602082840312156150f2575f5ffd5b8151613ae6816150d5565b602081525f614e04602083018486614fc8565b5f60208284031215615120575f5ffd5b613ae68261463e565b6020810161397282846146d9565b808202811582820484141761397257613972614e5f565b5f8261516857634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561517d575f5ffd5b5051919050565b8181038181111561397257613972614e5f565b858152606060208201525f6151b0606083018688614fc8565b82810360408401526151c3818587614fc8565b98975050505050505050565b604081525f6151e2604083018688614fc8565b82810360208401526151f5818587614fc8565b979650505050505050565b61ffff81168114610acc575f5ffd5b803561464c81615200565b5f6020828403121561522a575f5ffd5b8135613ae681615200565b63ffffffff81168114610acc575f5ffd5b803561464c81615235565b5f60208284031215615261575f5ffd5b8135613ae681615235565b5f8135613972816145d7565b5f813561397281615200565b5f813561397281615235565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c08201356006820155600781016153006152e360e0850161526c565b82546001600160a01b0319166001600160a01b0391909116178255565b6153306153106101008501615278565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6153606153406101208501615278565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b6153906153706101408501615278565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b6153c06153a06101608501615278565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6153f06153d06101808501615278565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b506008810161541c6154056101a08501615284565b825463ffffffff191663ffffffff91909116178255565b613b4561542c6101c08501615284565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e0810161549f60e0840161491b565b6154ac60e084018261461d565b506154ba610100840161520f565b61ffff166101008301526154d1610120840161520f565b61ffff166101208301526154e8610140840161520f565b61ffff166101408301526154ff610160840161520f565b61ffff16610160830152615516610180840161520f565b61ffff1661018083015261552d6101a08401615246565b63ffffffff166101a08301526155466101c08401615246565b63ffffffff81166101c0840152614ca9565b6040810181835f5b600281101561558f57813561557481615235565b63ffffffff1683526020928301929190910190600101615560565b50505092915050565b5f600182016155a9576155a9614e5f565b5060010190565b5f5f8335601e198436030181126155c5575f5ffd5b8301803591506001600160401b038211156155de575f5ffd5b602001915036819003821315613ccb575f5ffd5b5f60208284031215615602575f5ffd5b8135613ae6816150d5565b87815286602082015260a060408201525f61562b60a08301886146f9565b828103606084015261563e818789614fc8565b90508281036080840152615653818587614fc8565b9a9950505050505050505050565b81516001600160401b0381111561567a5761567a614ea1565b61568e816156888454614e0c565b84614eb5565b6020601f8211600181146156bb575f83156156a95750848201515b6156b38482614f00565b855550614ef9565b5f84815260208120601f198516915b828110156156ea57878501518255602094850194600190920191016156ca565b508482101561570757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561575057815163ffffffff1683526020928301929091019060010161572b565b505050949350505050565b604081016157698285614d7d565b613ae660208301846146b7565b805161464c816145d7565b5f60208284031215615791575f5ffd5b81516001600160401b038111156157a6575f5ffd5b8201601f810184136157b6575f5ffd5b80516001600160401b038111156157cf576157cf614ea1565b8060051b604051601f19603f83011681018181106001600160401b03821117156157fb576157fb614ea1565b604052918252602081840181019290810187841115615818575f5ffd5b6020850194505b8385101561583e5761583085615776565b81526020948501940161581f565b509695505050505050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f61587a6060830185615019565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b828110156150525781518652602095860195909101906001016158a4565b6001600160a01b03841681526060602082018190525f906158e590830185615019565b828103604084015261444f8185615892565b604081525f6159096040830185615019565b8281036020840152615010818561589256fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", + "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615942806100d65f395ff3fe608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e0366004614548565b61092e565b005b61030f6102f536600461456a565b5f908152600960205260409020546001600160a01b031690565b60405161031c919061458e565b60405180910390f35b61030f61033336600461456a565b60096020525f90815260409020546001600160a01b031681565b61036061035b3660046145b5565b6109da565b60405163ffffffff909116815260200161031c565b6102e5610383366004614548565b610a16565b6102e56103963660046145ed565b610abb565b6103bd6103a936600461456a565b5f908152600f602052604090205460ff1690565b60405161031c919061462f565b6103dd6103d836600461456a565b610acf565b60405161031c9e9d9c9b9a9998979695949392919061467b565b61040a61040536600461456a565b610c7a565b60405161031c9190614855565b61043661042536600461456a565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e5610452366004614872565b610ef7565b6102e561046536600461456a565b611134565b6102e5610478366004614548565b6111c3565b61049061048b366004614908565b611256565b60405161031c9190614921565b60045461030f906001600160a01b031681565b61043660055481565b6102e56112ed565b6102e56104cf366004614933565b611300565b6102e56104e236600461456a565b611389565b6102e56104f5366004614961565b611488565b6102e56105083660046149be565b61157c565b60015461030f906001600160a01b031681565b61030f61161d565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b61055561164b565b60405161031c9190614a0c565b6102e561057036600461456a565b611691565b61055561058336600461456a565b6117ff565b61059b61059636600461456a565b611858565b60405161031c929190614a2d565b61030f6105b736600461456a565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614a43565b61187f565b604051901515815260200161031c565b610436610602366004614aba565b611b17565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614af1565b61030f61076736600461456a565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614bfe565b61209b565b6102e56107a2366004614ca3565b6122cb565b6102e56107b5366004614548565b612387565b6102e56107c8366004614961565b61242e565b6105e46107db366004614548565b60076020525f908152604090205460ff1681565b61043660065481565b6102e5610806366004614933565b6124eb565b6102e561081936600461456a565b6125a5565b61084061082c36600461456a565b5f908152600d602052604090205460ff1690565b60405161031c9190614cdd565b6102e561085b366004614ceb565b6125e2565b6102e561086e366004614548565b61286f565b6102e5610881366004614d05565b612909565b60025461030f906001600160a01b031681565b6102e56108a7366004614548565b612bb6565b6108bf6108ba366004614aba565b612bf0565b60405161031c929190614d3c565b6103bd6108db36600461456a565b613501565b6102e56108ee366004614548565b61369b565b61030f61090136600461456a565b600a6020525f90815260409020546001600160a01b031681565b6102e5610929366004614548565b613733565b6109366137c2565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e6137c2565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b8152600401610988919061458e565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab090839061458e565b60405180910390a150565b610ac36137c2565b610acc816137f4565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614d5c565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614d5c565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c826143b6565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf614607565b6003811115610cd057610cd0614607565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152600160a01b900460ff166060820152600782018054608090920191610d5290614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90614d5c565b8015610dc95780601f10610da057610100808354040283529160200191610dc9565b820191905f5260205f20905b815481529060010190602001808311610dac57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e1a90614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690614d5c565b8015610e915780601f10610e6857610100808354040283529160200191610e91565b820191905f5260205f20905b815481529060010190602001808311610e7457829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610ef15760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f006138b1565b805490915060ff600160401b82041615906001600160401b03165f81158015610f265750825b90505f826001600160401b03166001148015610f415750303b155b905081158015610f4f575080155b15610f6d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f9757845460ff60401b1916600160401b1785555b610fa0336138db565b610fa9876125a5565b610fb28b61369b565b610fbb8a61286f565b610fc48961092e565b610fcd88610a16565b610fd6866137f4565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110bf61161d565b6001600160a01b03168c6001600160a01b0316146110e0576110e08c612bb6565b831561112657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61113c6137c2565b5f8181526009602052604090205481906001600160a01b0316611175576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111cb6137c2565b6001600160a01b0381165f90815260076020526040902054819060ff16611206576040516321ac7c5f60e01b8152600401610988919061458e565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab090839061458e565b600b6020525f90815260409020805461126e90614d5c565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90614d5c565b80156112e55780601f106112bc576101008083540402835291602001916112e5565b820191905f5260205f20905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b6112f56137c2565b6112fe5f6138ec565b565b6113086137c2565b6001600160a01b0381161580159061133957505f828152600a60205260409020546001600160a01b03828116911614155b829061135b576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113b35760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113d8576113d8614607565b146113fd57816001826040516337e1404160e01b815260040161098893929190614d8e565b5f828152600d60205260409020805460ff191660021790556015546114229042614dc3565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f5160206159165f395f51905f526001600260405161147c929190614dd6565b60405180910390a25050565b5f546001600160a01b031633146114b25760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff1660028160068111156114e2576114e2614607565b1461150757836002826040516337e1404160e01b815260040161098893929190614d8e565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f5160206159165f395f51905f526002600360405161156e929190614dd6565b60405180910390a250505050565b6115846137c2565b806115c05760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b60ff83165f908152600b602052604090206115dc828483614e64565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161161093929190614f40565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b61166c60405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff1660068160068111156116b6576116b6614607565b1482906116d957604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c6020526040902054828161170a576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c602052604081208190556117248461395c565b5f858152601160205260409020546002549192506001600160a01b03908116916117519183911685613a49565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b69790611787908890879087908790600401614fa8565b5f604051808303815f87803b15801561179e575f5ffd5b505af11580156117b0573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a073178484516040516117f0929190918252602082015260400190565b60405180910390a25050505050565b61182060405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118758482613aa6565b9250925050915091565b5f5f61188a87610c7a565b5f888152600d602052604090205490915060ff1660038160068111156118b2576118b2614607565b14886003839091926118da576040516337e1404160e01b815260040161098893929190614d8e565b5050505f888152600e602090815260409182902082516060810184528154815260018201549281018390526002909101549281019290925289904281101561193e576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119755760405163017e35e560e71b815260048101929092526024820152604401610988565b50506101608301518990156119a057604051637eb9cea960e11b815260040161098891815260200190565b505f88886040516119b2929190614ff3565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff191660041790556017549091506119f49042614dc3565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611a41908d9085908c908c90600401615002565b6020604051808303815f875af1158015611a5d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a81919061502e565b9450888886611aa557604051632f9f8ab960e01b8152600401610988929190615049565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611ad9929190615049565b60405180910390a2895f5160206159165f395f51905f5260036004604051611b02929190614dd6565b60405180910390a25050505095945050505050565b5f80601281611b29602086018661505c565b6003811115611b3a57611b3a614607565b6003811115611b4b57611b4b614607565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611b72579050505050505090505f81600160028110611bc957611bc9614fdf565b602002015163ffffffff1611835f016020810190611be7919061505c565b90611c065760405163286c068d60e11b81526004016109889190615075565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d31576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d10919061505c565b90611d2f5760405163010b971d60e31b81526004016109889190615075565b505b6101c081015163ffffffff1615611d80576101c081015184519063ffffffff9081169082161015611d7e57604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611dad5760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611dcb9161ffff1690615083565b611dd5919061509a565b61271061ffff1683610160015161ffff16601560010154611df69190615083565b611e00919061509a565b61271061ffff1684610140015161ffff1660155f0154611e209190615083565b611e2a919061509a565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611e76573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9a91906150b9565b611ea49190614dc3565b611eae91906150d0565b611eb89190614dc3565b611ec29190614dc3565b611ecc9190614dc3565b90505f611eda6001866150d0565b611ee5906002615083565b611ef0906002615083565b611efb906006614dc3565b90505f85845f0151611f0d9190615083565b905081868560200151611f209190615083565b611f2a9190615083565b611f349082614dc3565b90506001861115611f7c576002611f4c6001886150d0565b611f569088615083565b8560400151611f659190615083565b611f6f919061509a565b611f799082614dc3565b90505b81868560c00151611f8d9190615083565b611f979190615083565b611fa19082614dc3565b905082868560600151611fb49190615083565b611fbe9190615083565b611fc89082614dc3565b9050848460800151611fda9190615083565b611fe49082614dc3565b9050600185111561202c576002611ffc6001876150d0565b6120069087615083565b85604001516120159190615083565b61201f919061509a565b6120299082614dc3565b90505b60a084015161203b9082614dc3565b610100850151909150612710906120569061ffff1682614dc3565b6120609083615083565b61206a919061509a565b9750878061208e57604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f6120a689610c7a565b5f8a8152600d602052604090205490915060ff1660048160068111156120ce576120ce614607565b148a6004839091926120f6576040516337e1404160e01b815260040161098893929190614d8e565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b9042811015612159576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121768a8c83614e64565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b6040516121ba929190614ff3565b6040519081900381206001600160e01b031960e084901b1682526121e8918c908c908c908c906004016150e3565b602060405180830381865afa158015612203573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612227919061502e565b935089898561224b57604051632f9f8ab960e01b8152600401610988929190615049565b50506122568b613c2e565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b60405161228c949392919061511b565b60405180910390a28a5f5160206159165f395f51905f52600460056040516122b5929190614dd6565b60405180910390a2505050979650505050505050565b5f546001600160a01b03163314806122ed57506003546001600160a01b031633145b61230a57604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156123205750600d60ff821611155b6123655760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b612383828260ff16600d81111561237e5761237e614607565b61409a565b5050565b61238f6137c2565b6001600160a01b0381166123e55760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b03163314612459576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b1580156124a3575f5ffd5b505af11580156124b5573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161147c91815260200190565b6124f36137c2565b6001600160a01b0381161580159061252457505f828152600960205260409020546001600160a01b03828116911614155b8290612546576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b6125ad6137c2565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b6125ea6137c2565b6127106125ff61012083016101008401615166565b61ffff16111561261761012083016101008401615166565b9061263c576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061265261014083016101208401615166565b61ffff16111561266a61014083016101208401615166565b9061268f576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126a561016083016101408401615166565b61ffff1611156126bd61016083016101408401615166565b906126e257604051633239953960e01b815261ffff9091166004820152602401610988565b506127106126f861018083016101608401615166565b61ffff16111561271061018083016101608401615166565b9061273557604051633239953960e01b815261ffff9091166004820152602401610988565b5061271061274b6101a083016101808401615166565b61ffff1611156127636101a083016101808401615166565b9061278857604051633239953960e01b815261ffff9091166004820152602401610988565b5061279b61014082016101208301615166565b61ffff1615806127c457505f6127b8610100830160e08401614548565b6001600160a01b031614155b6127e15760405163015f92ff60e51b815260040160405180910390fd5b6127f36101e082016101c0830161519d565b63ffffffff1661280b6101c083016101a0840161519d565b63ffffffff161015612830576040516392f55c6560e01b815260040160405180910390fd5b80601861283d82826151dc565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab0919061539a565b6128776137c2565b6001600160a01b0381161580159061289d57506001546001600160a01b03828116911614155b81906128bd576040516320252f0b60e01b8152600401610988919061458e565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab090839061458e565b6129116137c2565b61291e602082018261519d565b63ffffffff16612934604083016020840161519d565b63ffffffff161015801561295957505f612951602083018361519d565b63ffffffff16115b61297657604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612aaf576101a081015163ffffffff16612a5f604084016020850161519d565b63ffffffff161015612a77604084016020850161519d565b826101a001519091612aac57604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b26576101c081015163ffffffff16612ad9602084018461519d565b63ffffffff161015612aee602084018461519d565b826101c001519091612b235760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612b3c57612b3c614607565b6003811115612b4d57612b4d614607565b815260208101919091526040015f20612b67916002614433565b50826003811115612b7a57612b7a614607565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612ba991906154a4565b60405180910390a2505050565b612bbe6137c2565b6001600160a01b038116612be7575f604051631e4fbdf760e01b8152600401610988919061458e565b610acc816138ec565b5f612bf96143b6565b5f601281612c0a602087018761505c565b6003811115612c1b57612c1b614607565b6003811115612c2c57612c2c614607565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612c53579050505050505090505f81600160028110612caa57612caa614fdf565b602002015163ffffffff1611845f016020810190612cc8919061505c565b90612ce75760405163286c068d60e11b81526004016109889190615075565b50602084013542811015612d1157604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612d3f5760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612d574260408901356150d0565b612d619190614dc3565b612d6b9190614dc3565b905060055481108190612d94576040516313b783af60e21b815260040161098891815260200190565b5060075f612da86080880160608901614548565b6001600160a01b0316815260208101919091526040015f205460ff16612dd46080870160608801614548565b90612df35760405163295a6a6f60e11b8152600401610988919061458e565b505f612dfe86611b17565b60068054965090915085905f612e13836154e4565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612eee9190890135614dc3565b5f878152600e6020908152604090912060010191909155818652612f149088018861505c565b85602001906003811115612f2a57612f2a614607565b90816003811115612f3d57612f3d614607565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612f859060808901908901614548565b6001600160a01b031660a080870191909152612fa690880160808901614908565b60ff1660c080870191909152612fbe908801886154fc565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e08087019190915261300b90610100890190890161553e565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a0860181905260045461305b916001600160a01b039091169030856141f5565b5f600b8161306f60a08b0160808c01614908565b60ff1660ff1681526020019081526020015f20805461308d90614d5c565b80601f01602080910402602001604051908101604052809291908181526020018280546130b990614d5c565b80156131045780601f106130db57610100808354040283529160200191613104565b820191905f5260205f20905b8154815290600101906020018083116130e757829003601f168201915b505050505090505f81511161315b5760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f61316c60808a0160608b01614548565b6001600160a01b031663fefd9a8b89858561318a60a08f018f6154fc565b8f8060c0019061319a91906154fc565b6040518863ffffffff1660e01b81526004016131bc9796959493929190615559565b6020604051808303815f875af11580156131d8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131fc91906150b9565b5f818152600960205260409020549091506001600160a01b03168181613238576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b03168281613272576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff1991909116908360038111156132d0576132d0614607565b0217905550604082015181600201556060820151816003019060026132f69291906144d4565b506080820151600582015560a082015160068201805460c085015160ff16600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560e0820151600782019061334f90826155ad565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906133b790826155ad565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b9061341d908d9089908d90600401615662565b6020604051808303815f875af1158015613439573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061345d919061502e565b61347a57604051630d8dbe2560e01b815260040160405180910390fd5b61348a60808c0160608d01614548565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b6040516134c4929190614d3c565b60405180910390a2895f5160206159165f395f51905f525f60016040516134ec929190614dd6565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff168181600681111561352557613525614607565b0361354a57826001826040516337e1404160e01b815260040161098893929190614d8e565b600581600681111561355e5761355e614607565b0361357f5760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561359357613593614607565b036135b457604051633de16e3560e11b815260048101849052602401610988565b5f6135bf8483613aa6565b93509050806135e457604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d81111561362d5761362d614607565b0217905550835f5160206159165f395f51905f52836006604051613652929190614dd6565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb838560405161368c9291906156a7565b60405180910390a25050919050565b6136a36137c2565b6001600160a01b038116158015906136c857505f546001600160a01b03828116911614155b81906136e8576040516375ac4eb760e11b8152600401610988919061458e565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab090839061458e565b6001600160a01b0381165f90815260076020526040902054819060ff161561376f5760405163b29d459560e01b8152600401610988919061458e565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab090839061458e565b336137cb61161d565b6001600160a01b0316146112fe573360405163118cdaa760e01b8152600401610988919061458e565b80356138135760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138375760405163055f269d60e01b815260040160405180910390fd5b5f81604001351161385b5760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b6138e3614234565b610acc81614259565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d81111561398457613984614607565b14806139a15750600281600d81111561399f5761399f614607565b145b156139d9575f5b6040519080825280602002602001820160405280156139d1578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613a3f57506040513d5f823e601f3d908101601f19168201604052613a3c919081019061577e565b60015b6139d1575f6139a8565b613aa183846001600160a01b031663a9059cbb8585604051602401613a6f929190615843565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614261565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613b20573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b4491906150b9565b90506001856006811115613b5a57613b5a614607565b148015613b6657508042115b15613b7957600180935093505050613c27565b6002856006811115613b8d57613b8d614607565b148015613b9a5750815142115b15613bae5760016003935093505050613c27565b6003856006811115613bc257613bc2614607565b148015613bd25750816020015142115b15613be65760016006935093505050613c27565b6004856006811115613bfa57613bfa614607565b148015613c0a5750816040015142115b15613c1e576001600a935093505050613c27565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613c73573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613c9a919081019061577e565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613d39576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d059088908890869060040161585c565b5f604051808303815f87803b158015613d1c575f5ffd5b505af1158015613d2e573d5f5f3e3d5ffd5b505050505050505050565b825f03613dda575f858152601060205260409020546001600160a01b03168015613d7157613d716001600160a01b0383168285613a49565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613da59089908990879060040161585c565b5f604051808303815f87803b158015613dbc575f5ffd5b505af1158015613dce573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613e1a57506001600160a01b03811615155b15613e5657612710613e3061ffff841687615083565b613e3a919061509a565b92508215613e5657613e566001600160a01b0385168285613a49565b5f613e6184876150d0565b90505f876001600160401b03811115613e7c57613e7c614df1565b604051908082528060200260200182016040528015613ea5578160200160208202803683370190505b5090505f613eb3898461509a565b90505f805b8a811015613ef25782848281518110613ed357613ed3614fdf565b6020908102919091010152613ee88383614dc3565b9150600101613eb8565b505f613efe82866150d0565b90508015613f3b578084613f1360018e6150d0565b81518110613f2357613f23614fdf565b60200260200101818151613f379190614dc3565b9052505b600154613f55906001600160a01b038b81169116876142c4565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b8152600401613f99939291906158bc565b5f604051808303815f87803b158015613fb0575f5ffd5b505af1158015613fc2573d5f5f3e3d5ffd5b5050600154613fe092506001600160a01b038c81169250165f6142c4565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d866040516140129291906158f1565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b815260040161405e9392919061585c565b5f604051808303815f87803b158015614075575f5ffd5b505af1158015614087573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff16908160068111156140be576140be614607565b036140e357826001826040516337e1404160e01b815260040161098893929190614d8e565b60058160068111156140f7576140f7614607565b036141185760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561412c5761412c614607565b0361414d57604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561419657614196614607565b0217905550825f5160206159165f395f51905f528260066040516141bb929190614dd6565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612ba99291906156a7565b6040516001600160a01b03848116602483015283811660448301526064820183905261422e9186918216906323b872dd90608401613a6f565b50505050565b61423c614354565b6112fe57604051631afcd79f60e31b815260040160405180910390fd5b612bbe614234565b5f5f60205f8451602086015f885af180614280576040513d5f823e3d81fd5b50505f513d915081156142975780600114156142a4565b6001600160a01b0384163b155b1561422e5783604051635274afe760e01b8152600401610988919061458e565b5f836001600160a01b031663095ea7b384846040516024016142e7929190615843565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050509050614320848261436d565b61422e5761434a84856001600160a01b031663095ea7b3865f604051602401613a6f929190615843565b61422e8482614261565b5f61435d6138b1565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f5190508280156143ac5750811561439e57806001146143ac565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f81526020016143de614502565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b6001830191839082156144c4579160200282015f5b8382111561449257833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff1602179055509260200192600401602081600301049283019260010302614448565b80156144c25782816101000a81549063ffffffff0219169055600401602081600301049283019260010302614492565b505b506144d0929150614520565b5090565b82600281019282156144c4579160200282015b828111156144c45782518255916020019190600101906144e7565b60405180604001604052806002906020820280368337509192915050565b5b808211156144d0575f8155600101614521565b6001600160a01b0381168114610acc575f5ffd5b5f60208284031215614558575f5ffd5b813561456381614534565b9392505050565b5f6020828403121561457a575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b8035600481106145b0575f5ffd5b919050565b5f5f604083850312156145c6575f5ffd5b6145cf836145a2565b946020939093013593505050565b5f60608284031215610ef1575f5ffd5b5f606082840312156145fd575f5ffd5b61456383836145dd565b634e487b7160e01b5f52602160045260245ffd5b600e811061462b5761462b614607565b9052565b602081016138d5828461461b565b6004811061462b5761462b614607565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e815261468b602082018f61463d565b8c60408201528b60608201526146a4608082018c614581565b60ff8a1660a08201526101c060c08201525f6146c46101c083018b61464d565b6146d160e084018b614581565b6146df61010084018a614581565b8761012084015286610140840152828103610160840152614700818761464d565b915050614711610180830185614581565b8215156101a08301529f9e505050505050505050505050505050565b805f5b600281101561422e578151845260209384019390910190600101614730565b805182525f6020820151614766602085018261463d565b50604082015160408401526060820151614783606085018261472d565b50608082015160a084015260a08201516147a060c0850182614581565b5060c082015160ff811660e08501525060e08201516102006101008501526147cc61020085018261464d565b90506101008301516147e2610120860182614581565b506101208301516147f7610140860182614581565b506101408301516101608501526101608301516101808501526101808301518482036101a0860152614829828261464d565b9150506101a08301516148406101c0860182614581565b506101c08301518015156101e08601526139d1565b602081525f614563602083018461474f565b80356145b081614534565b5f5f5f5f5f5f5f610120888a031215614889575f5ffd5b873561489481614534565b965060208801356148a481614534565b955060408801356148b481614534565b945060608801356148c481614534565b935060808801356148d481614534565b925060a088013591506148ea8960c08a016145dd565b905092959891949750929550565b803560ff811681146145b0575f5ffd5b5f60208284031215614918575f5ffd5b614563826148f8565b602081525f614563602083018461464d565b5f5f60408385031215614944575f5ffd5b82359150602083013561495681614534565b809150509250929050565b5f5f60408385031215614972575f5ffd5b50508035926020909101359150565b5f5f83601f840112614991575f5ffd5b5081356001600160401b038111156149a7575f5ffd5b602083019150836020828501011115613c27575f5ffd5b5f5f5f604084860312156149d0575f5ffd5b6149d9846148f8565b925060208401356001600160401b038111156149f3575f5ffd5b6149ff86828701614981565b9497909650939450505050565b815181526020808301519082015260408083015190820152606081016138d5565b821515815260408101614563602083018461461b565b5f5f5f5f5f60608688031215614a57575f5ffd5b8535945060208601356001600160401b03811115614a73575f5ffd5b614a7f88828901614981565b90955093505060408601356001600160401b03811115614a9d575f5ffd5b614aa988828901614981565b969995985093965092949392505050565b5f60208284031215614aca575f5ffd5b81356001600160401b03811115614adf575f5ffd5b82016101008185031215614563575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614b4b60e0840182614581565b50610100830151614b6361010084018261ffff169052565b50610120830151614b7b61012084018261ffff169052565b50610140830151614b9361014084018261ffff169052565b50610160830151614bab61016084018261ffff169052565b50610180830151614bc361018084018261ffff169052565b506101a0830151614bdd6101a084018263ffffffff169052565b506101c0830151614bf76101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614c14575f5ffd5b8735965060208801356001600160401b03811115614c30575f5ffd5b614c3c8a828b01614981565b90975095505060408801356001600160401b03811115614c5a575f5ffd5b614c668a828b01614981565b90955093505060608801356001600160401b03811115614c84575f5ffd5b614c908a828b01614981565b989b979a50959850939692959293505050565b5f5f60408385031215614cb4575f5ffd5b82359150614cc4602084016148f8565b90509250929050565b6007811061462b5761462b614607565b602081016138d58284614ccd565b5f6101e0828403128015614cfd575f5ffd5b509092915050565b5f5f60608385031215614d16575f5ffd5b614d1f836145a2565b915083606084011115614d30575f5ffd5b50926020919091019150565b828152604060208201525f614d54604083018461474f565b949350505050565b600181811c90821680614d7057607f821691505b602082108103610ef157634e487b7160e01b5f52602260045260245ffd5b83815260608101614da26020830185614ccd565b614d546040830184614ccd565b634e487b7160e01b5f52601160045260245ffd5b808201808211156138d5576138d5614daf565b60408101614de48285614ccd565b6145636020830184614ccd565b634e487b7160e01b5f52604160045260245ffd5b601f821115613aa157805f5260205f20601f840160051c81016020851015614e2a5750805b601f840160051c820191505b81811015614e49575f8155600101614e36565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614e7b57614e7b614df1565b614e8f83614e898354614d5c565b83614e05565b5f601f841160018114614ebb575f8515614ea95750838201355b614eb38682614e50565b845550614e49565b5f83815260208120601f198716915b82811015614eea5786850135825560209485019460019092019101614eca565b5086821015614f06575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60ff84168152604060208201525f614f5c604083018486614f18565b95945050505050565b5f8151808452602084019350602083015f5b82811015614f9e5781516001600160a01b0316865260209586019590910190600101614f77565b5093949350505050565b848152836020820152608060408201525f614fc66080830185614f65565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f6143ac606083018486614f18565b8015158114610acc575f5ffd5b5f6020828403121561503e575f5ffd5b815161456381615021565b602081525f614d54602083018486614f18565b5f6020828403121561506c575f5ffd5b614563826145a2565b602081016138d5828461463d565b80820281158282048414176138d5576138d5614daf565b5f826150b457634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156150c9575f5ffd5b5051919050565b818103818111156138d5576138d5614daf565b858152606060208201525f6150fc606083018688614f18565b828103604084015261510f818587614f18565b98975050505050505050565b604081525f61512e604083018688614f18565b8281036020840152615141818587614f18565b979650505050505050565b61ffff81168114610acc575f5ffd5b80356145b08161514c565b5f60208284031215615176575f5ffd5b81356145638161514c565b63ffffffff81168114610acc575f5ffd5b80356145b081615181565b5f602082840312156151ad575f5ffd5b813561456381615181565b5f81356138d581614534565b5f81356138d58161514c565b5f81356138d581615181565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c082013560068201556007810161524c61522f60e085016151b8565b82546001600160a01b0319166001600160a01b0391909116178255565b61527c61525c61010085016151c4565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6152ac61528c61012085016151c4565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b6152dc6152bc61014085016151c4565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b61530c6152ec61016085016151c4565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b61533c61531c61018085016151c4565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b50600881016153686153516101a085016151d0565b825463ffffffff191663ffffffff91909116178255565b613aa16153786101c085016151d0565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e081016153eb60e08401614867565b6153f860e0840182614581565b50615406610100840161515b565b61ffff1661010083015261541d610120840161515b565b61ffff16610120830152615434610140840161515b565b61ffff1661014083015261544b610160840161515b565b61ffff16610160830152615462610180840161515b565b61ffff166101808301526154796101a08401615192565b63ffffffff166101a08301526154926101c08401615192565b63ffffffff81166101c0840152614bf7565b6040810181835f5b60028110156154db5781356154c081615181565b63ffffffff16835260209283019291909101906001016154ac565b50505092915050565b5f600182016154f5576154f5614daf565b5060010190565b5f5f8335601e19843603018112615511575f5ffd5b8301803591506001600160401b0382111561552a575f5ffd5b602001915036819003821315613c27575f5ffd5b5f6020828403121561554e575f5ffd5b813561456381615021565b87815286602082015260a060408201525f61557760a083018861464d565b828103606084015261558a818789614f18565b9050828103608084015261559f818587614f18565b9a9950505050505050505050565b81516001600160401b038111156155c6576155c6614df1565b6155da816155d48454614d5c565b84614e05565b6020601f821160018114615607575f83156155f55750848201515b6155ff8482614e50565b855550614e49565b5f84815260208120601f198516915b828110156156365787850151825560209485019460019092019101615616565b508482101561565357868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561569c57815163ffffffff16835260209283019290910190600101615677565b505050949350505050565b604081016156b58285614ccd565b614563602083018461461b565b604051601f8201601f191681016001600160401b03811182821017156156ea576156ea614df1565b604052919050565b5f6001600160401b0382111561570a5761570a614df1565b5060051b60200190565b5f82601f830112615723575f5ffd5b8151615736615731826156f2565b6156c2565b8082825260208201915060208360051b860101925085831115615757575f5ffd5b602085015b8381101561577457805183526020928301920161575c565b5095945050505050565b5f5f6040838503121561578f575f5ffd5b82516001600160401b038111156157a4575f5ffd5b8301601f810185136157b4575f5ffd5b80516157c2615731826156f2565b8082825260208201915060208360051b8501019250878311156157e3575f5ffd5b6020840193505b8284101561580e5783516157fd81614534565b8252602093840193909101906157ea565b8095505050505060208301516001600160401b0381111561582d575f5ffd5b61583985828601615714565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f6158746060830185614f65565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b82811015614f9e57815186526020958601959091019060010161589e565b6001600160a01b03841681526060602082018190525f906158df90830185614f65565b82810360408401526143ac818561588c565b604081525f6159036040830185614f65565b8281036020840152614f5c818561588c56fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", + "deployedBytecode": "0x608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e0366004614548565b61092e565b005b61030f6102f536600461456a565b5f908152600960205260409020546001600160a01b031690565b60405161031c919061458e565b60405180910390f35b61030f61033336600461456a565b60096020525f90815260409020546001600160a01b031681565b61036061035b3660046145b5565b6109da565b60405163ffffffff909116815260200161031c565b6102e5610383366004614548565b610a16565b6102e56103963660046145ed565b610abb565b6103bd6103a936600461456a565b5f908152600f602052604090205460ff1690565b60405161031c919061462f565b6103dd6103d836600461456a565b610acf565b60405161031c9e9d9c9b9a9998979695949392919061467b565b61040a61040536600461456a565b610c7a565b60405161031c9190614855565b61043661042536600461456a565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e5610452366004614872565b610ef7565b6102e561046536600461456a565b611134565b6102e5610478366004614548565b6111c3565b61049061048b366004614908565b611256565b60405161031c9190614921565b60045461030f906001600160a01b031681565b61043660055481565b6102e56112ed565b6102e56104cf366004614933565b611300565b6102e56104e236600461456a565b611389565b6102e56104f5366004614961565b611488565b6102e56105083660046149be565b61157c565b60015461030f906001600160a01b031681565b61030f61161d565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b61055561164b565b60405161031c9190614a0c565b6102e561057036600461456a565b611691565b61055561058336600461456a565b6117ff565b61059b61059636600461456a565b611858565b60405161031c929190614a2d565b61030f6105b736600461456a565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614a43565b61187f565b604051901515815260200161031c565b610436610602366004614aba565b611b17565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614af1565b61030f61076736600461456a565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614bfe565b61209b565b6102e56107a2366004614ca3565b6122cb565b6102e56107b5366004614548565b612387565b6102e56107c8366004614961565b61242e565b6105e46107db366004614548565b60076020525f908152604090205460ff1681565b61043660065481565b6102e5610806366004614933565b6124eb565b6102e561081936600461456a565b6125a5565b61084061082c36600461456a565b5f908152600d602052604090205460ff1690565b60405161031c9190614cdd565b6102e561085b366004614ceb565b6125e2565b6102e561086e366004614548565b61286f565b6102e5610881366004614d05565b612909565b60025461030f906001600160a01b031681565b6102e56108a7366004614548565b612bb6565b6108bf6108ba366004614aba565b612bf0565b60405161031c929190614d3c565b6103bd6108db36600461456a565b613501565b6102e56108ee366004614548565b61369b565b61030f61090136600461456a565b600a6020525f90815260409020546001600160a01b031681565b6102e5610929366004614548565b613733565b6109366137c2565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e6137c2565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b8152600401610988919061458e565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab090839061458e565b60405180910390a150565b610ac36137c2565b610acc816137f4565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614d5c565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614d5c565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c826143b6565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf614607565b6003811115610cd057610cd0614607565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152600160a01b900460ff166060820152600782018054608090920191610d5290614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90614d5c565b8015610dc95780601f10610da057610100808354040283529160200191610dc9565b820191905f5260205f20905b815481529060010190602001808311610dac57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e1a90614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690614d5c565b8015610e915780601f10610e6857610100808354040283529160200191610e91565b820191905f5260205f20905b815481529060010190602001808311610e7457829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610ef15760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f006138b1565b805490915060ff600160401b82041615906001600160401b03165f81158015610f265750825b90505f826001600160401b03166001148015610f415750303b155b905081158015610f4f575080155b15610f6d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f9757845460ff60401b1916600160401b1785555b610fa0336138db565b610fa9876125a5565b610fb28b61369b565b610fbb8a61286f565b610fc48961092e565b610fcd88610a16565b610fd6866137f4565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110bf61161d565b6001600160a01b03168c6001600160a01b0316146110e0576110e08c612bb6565b831561112657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61113c6137c2565b5f8181526009602052604090205481906001600160a01b0316611175576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111cb6137c2565b6001600160a01b0381165f90815260076020526040902054819060ff16611206576040516321ac7c5f60e01b8152600401610988919061458e565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab090839061458e565b600b6020525f90815260409020805461126e90614d5c565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90614d5c565b80156112e55780601f106112bc576101008083540402835291602001916112e5565b820191905f5260205f20905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b6112f56137c2565b6112fe5f6138ec565b565b6113086137c2565b6001600160a01b0381161580159061133957505f828152600a60205260409020546001600160a01b03828116911614155b829061135b576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113b35760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113d8576113d8614607565b146113fd57816001826040516337e1404160e01b815260040161098893929190614d8e565b5f828152600d60205260409020805460ff191660021790556015546114229042614dc3565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f5160206159165f395f51905f526001600260405161147c929190614dd6565b60405180910390a25050565b5f546001600160a01b031633146114b25760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff1660028160068111156114e2576114e2614607565b1461150757836002826040516337e1404160e01b815260040161098893929190614d8e565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f5160206159165f395f51905f526002600360405161156e929190614dd6565b60405180910390a250505050565b6115846137c2565b806115c05760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b60ff83165f908152600b602052604090206115dc828483614e64565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161161093929190614f40565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b61166c60405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff1660068160068111156116b6576116b6614607565b1482906116d957604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c6020526040902054828161170a576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c602052604081208190556117248461395c565b5f858152601160205260409020546002549192506001600160a01b03908116916117519183911685613a49565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b69790611787908890879087908790600401614fa8565b5f604051808303815f87803b15801561179e575f5ffd5b505af11580156117b0573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a073178484516040516117f0929190918252602082015260400190565b60405180910390a25050505050565b61182060405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118758482613aa6565b9250925050915091565b5f5f61188a87610c7a565b5f888152600d602052604090205490915060ff1660038160068111156118b2576118b2614607565b14886003839091926118da576040516337e1404160e01b815260040161098893929190614d8e565b5050505f888152600e602090815260409182902082516060810184528154815260018201549281018390526002909101549281019290925289904281101561193e576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119755760405163017e35e560e71b815260048101929092526024820152604401610988565b50506101608301518990156119a057604051637eb9cea960e11b815260040161098891815260200190565b505f88886040516119b2929190614ff3565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff191660041790556017549091506119f49042614dc3565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611a41908d9085908c908c90600401615002565b6020604051808303815f875af1158015611a5d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a81919061502e565b9450888886611aa557604051632f9f8ab960e01b8152600401610988929190615049565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611ad9929190615049565b60405180910390a2895f5160206159165f395f51905f5260036004604051611b02929190614dd6565b60405180910390a25050505095945050505050565b5f80601281611b29602086018661505c565b6003811115611b3a57611b3a614607565b6003811115611b4b57611b4b614607565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611b72579050505050505090505f81600160028110611bc957611bc9614fdf565b602002015163ffffffff1611835f016020810190611be7919061505c565b90611c065760405163286c068d60e11b81526004016109889190615075565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d31576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d10919061505c565b90611d2f5760405163010b971d60e31b81526004016109889190615075565b505b6101c081015163ffffffff1615611d80576101c081015184519063ffffffff9081169082161015611d7e57604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611dad5760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611dcb9161ffff1690615083565b611dd5919061509a565b61271061ffff1683610160015161ffff16601560010154611df69190615083565b611e00919061509a565b61271061ffff1684610140015161ffff1660155f0154611e209190615083565b611e2a919061509a565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611e76573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9a91906150b9565b611ea49190614dc3565b611eae91906150d0565b611eb89190614dc3565b611ec29190614dc3565b611ecc9190614dc3565b90505f611eda6001866150d0565b611ee5906002615083565b611ef0906002615083565b611efb906006614dc3565b90505f85845f0151611f0d9190615083565b905081868560200151611f209190615083565b611f2a9190615083565b611f349082614dc3565b90506001861115611f7c576002611f4c6001886150d0565b611f569088615083565b8560400151611f659190615083565b611f6f919061509a565b611f799082614dc3565b90505b81868560c00151611f8d9190615083565b611f979190615083565b611fa19082614dc3565b905082868560600151611fb49190615083565b611fbe9190615083565b611fc89082614dc3565b9050848460800151611fda9190615083565b611fe49082614dc3565b9050600185111561202c576002611ffc6001876150d0565b6120069087615083565b85604001516120159190615083565b61201f919061509a565b6120299082614dc3565b90505b60a084015161203b9082614dc3565b610100850151909150612710906120569061ffff1682614dc3565b6120609083615083565b61206a919061509a565b9750878061208e57604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f6120a689610c7a565b5f8a8152600d602052604090205490915060ff1660048160068111156120ce576120ce614607565b148a6004839091926120f6576040516337e1404160e01b815260040161098893929190614d8e565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b9042811015612159576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121768a8c83614e64565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b6040516121ba929190614ff3565b6040519081900381206001600160e01b031960e084901b1682526121e8918c908c908c908c906004016150e3565b602060405180830381865afa158015612203573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612227919061502e565b935089898561224b57604051632f9f8ab960e01b8152600401610988929190615049565b50506122568b613c2e565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b60405161228c949392919061511b565b60405180910390a28a5f5160206159165f395f51905f52600460056040516122b5929190614dd6565b60405180910390a2505050979650505050505050565b5f546001600160a01b03163314806122ed57506003546001600160a01b031633145b61230a57604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156123205750600d60ff821611155b6123655760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b612383828260ff16600d81111561237e5761237e614607565b61409a565b5050565b61238f6137c2565b6001600160a01b0381166123e55760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b03163314612459576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b1580156124a3575f5ffd5b505af11580156124b5573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161147c91815260200190565b6124f36137c2565b6001600160a01b0381161580159061252457505f828152600960205260409020546001600160a01b03828116911614155b8290612546576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b6125ad6137c2565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b6125ea6137c2565b6127106125ff61012083016101008401615166565b61ffff16111561261761012083016101008401615166565b9061263c576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061265261014083016101208401615166565b61ffff16111561266a61014083016101208401615166565b9061268f576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126a561016083016101408401615166565b61ffff1611156126bd61016083016101408401615166565b906126e257604051633239953960e01b815261ffff9091166004820152602401610988565b506127106126f861018083016101608401615166565b61ffff16111561271061018083016101608401615166565b9061273557604051633239953960e01b815261ffff9091166004820152602401610988565b5061271061274b6101a083016101808401615166565b61ffff1611156127636101a083016101808401615166565b9061278857604051633239953960e01b815261ffff9091166004820152602401610988565b5061279b61014082016101208301615166565b61ffff1615806127c457505f6127b8610100830160e08401614548565b6001600160a01b031614155b6127e15760405163015f92ff60e51b815260040160405180910390fd5b6127f36101e082016101c0830161519d565b63ffffffff1661280b6101c083016101a0840161519d565b63ffffffff161015612830576040516392f55c6560e01b815260040160405180910390fd5b80601861283d82826151dc565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab0919061539a565b6128776137c2565b6001600160a01b0381161580159061289d57506001546001600160a01b03828116911614155b81906128bd576040516320252f0b60e01b8152600401610988919061458e565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab090839061458e565b6129116137c2565b61291e602082018261519d565b63ffffffff16612934604083016020840161519d565b63ffffffff161015801561295957505f612951602083018361519d565b63ffffffff16115b61297657604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612aaf576101a081015163ffffffff16612a5f604084016020850161519d565b63ffffffff161015612a77604084016020850161519d565b826101a001519091612aac57604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b26576101c081015163ffffffff16612ad9602084018461519d565b63ffffffff161015612aee602084018461519d565b826101c001519091612b235760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612b3c57612b3c614607565b6003811115612b4d57612b4d614607565b815260208101919091526040015f20612b67916002614433565b50826003811115612b7a57612b7a614607565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612ba991906154a4565b60405180910390a2505050565b612bbe6137c2565b6001600160a01b038116612be7575f604051631e4fbdf760e01b8152600401610988919061458e565b610acc816138ec565b5f612bf96143b6565b5f601281612c0a602087018761505c565b6003811115612c1b57612c1b614607565b6003811115612c2c57612c2c614607565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612c53579050505050505090505f81600160028110612caa57612caa614fdf565b602002015163ffffffff1611845f016020810190612cc8919061505c565b90612ce75760405163286c068d60e11b81526004016109889190615075565b50602084013542811015612d1157604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612d3f5760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612d574260408901356150d0565b612d619190614dc3565b612d6b9190614dc3565b905060055481108190612d94576040516313b783af60e21b815260040161098891815260200190565b5060075f612da86080880160608901614548565b6001600160a01b0316815260208101919091526040015f205460ff16612dd46080870160608801614548565b90612df35760405163295a6a6f60e11b8152600401610988919061458e565b505f612dfe86611b17565b60068054965090915085905f612e13836154e4565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612eee9190890135614dc3565b5f878152600e6020908152604090912060010191909155818652612f149088018861505c565b85602001906003811115612f2a57612f2a614607565b90816003811115612f3d57612f3d614607565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612f859060808901908901614548565b6001600160a01b031660a080870191909152612fa690880160808901614908565b60ff1660c080870191909152612fbe908801886154fc565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e08087019190915261300b90610100890190890161553e565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a0860181905260045461305b916001600160a01b039091169030856141f5565b5f600b8161306f60a08b0160808c01614908565b60ff1660ff1681526020019081526020015f20805461308d90614d5c565b80601f01602080910402602001604051908101604052809291908181526020018280546130b990614d5c565b80156131045780601f106130db57610100808354040283529160200191613104565b820191905f5260205f20905b8154815290600101906020018083116130e757829003601f168201915b505050505090505f81511161315b5760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f61316c60808a0160608b01614548565b6001600160a01b031663fefd9a8b89858561318a60a08f018f6154fc565b8f8060c0019061319a91906154fc565b6040518863ffffffff1660e01b81526004016131bc9796959493929190615559565b6020604051808303815f875af11580156131d8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131fc91906150b9565b5f818152600960205260409020549091506001600160a01b03168181613238576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b03168281613272576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff1991909116908360038111156132d0576132d0614607565b0217905550604082015181600201556060820151816003019060026132f69291906144d4565b506080820151600582015560a082015160068201805460c085015160ff16600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560e0820151600782019061334f90826155ad565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906133b790826155ad565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b9061341d908d9089908d90600401615662565b6020604051808303815f875af1158015613439573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061345d919061502e565b61347a57604051630d8dbe2560e01b815260040160405180910390fd5b61348a60808c0160608d01614548565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b6040516134c4929190614d3c565b60405180910390a2895f5160206159165f395f51905f525f60016040516134ec929190614dd6565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff168181600681111561352557613525614607565b0361354a57826001826040516337e1404160e01b815260040161098893929190614d8e565b600581600681111561355e5761355e614607565b0361357f5760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561359357613593614607565b036135b457604051633de16e3560e11b815260048101849052602401610988565b5f6135bf8483613aa6565b93509050806135e457604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d81111561362d5761362d614607565b0217905550835f5160206159165f395f51905f52836006604051613652929190614dd6565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb838560405161368c9291906156a7565b60405180910390a25050919050565b6136a36137c2565b6001600160a01b038116158015906136c857505f546001600160a01b03828116911614155b81906136e8576040516375ac4eb760e11b8152600401610988919061458e565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab090839061458e565b6001600160a01b0381165f90815260076020526040902054819060ff161561376f5760405163b29d459560e01b8152600401610988919061458e565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab090839061458e565b336137cb61161d565b6001600160a01b0316146112fe573360405163118cdaa760e01b8152600401610988919061458e565b80356138135760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138375760405163055f269d60e01b815260040160405180910390fd5b5f81604001351161385b5760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b6138e3614234565b610acc81614259565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d81111561398457613984614607565b14806139a15750600281600d81111561399f5761399f614607565b145b156139d9575f5b6040519080825280602002602001820160405280156139d1578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613a3f57506040513d5f823e601f3d908101601f19168201604052613a3c919081019061577e565b60015b6139d1575f6139a8565b613aa183846001600160a01b031663a9059cbb8585604051602401613a6f929190615843565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614261565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613b20573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b4491906150b9565b90506001856006811115613b5a57613b5a614607565b148015613b6657508042115b15613b7957600180935093505050613c27565b6002856006811115613b8d57613b8d614607565b148015613b9a5750815142115b15613bae5760016003935093505050613c27565b6003856006811115613bc257613bc2614607565b148015613bd25750816020015142115b15613be65760016006935093505050613c27565b6004856006811115613bfa57613bfa614607565b148015613c0a5750816040015142115b15613c1e576001600a935093505050613c27565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613c73573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613c9a919081019061577e565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613d39576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d059088908890869060040161585c565b5f604051808303815f87803b158015613d1c575f5ffd5b505af1158015613d2e573d5f5f3e3d5ffd5b505050505050505050565b825f03613dda575f858152601060205260409020546001600160a01b03168015613d7157613d716001600160a01b0383168285613a49565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613da59089908990879060040161585c565b5f604051808303815f87803b158015613dbc575f5ffd5b505af1158015613dce573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613e1a57506001600160a01b03811615155b15613e5657612710613e3061ffff841687615083565b613e3a919061509a565b92508215613e5657613e566001600160a01b0385168285613a49565b5f613e6184876150d0565b90505f876001600160401b03811115613e7c57613e7c614df1565b604051908082528060200260200182016040528015613ea5578160200160208202803683370190505b5090505f613eb3898461509a565b90505f805b8a811015613ef25782848281518110613ed357613ed3614fdf565b6020908102919091010152613ee88383614dc3565b9150600101613eb8565b505f613efe82866150d0565b90508015613f3b578084613f1360018e6150d0565b81518110613f2357613f23614fdf565b60200260200101818151613f379190614dc3565b9052505b600154613f55906001600160a01b038b81169116876142c4565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b8152600401613f99939291906158bc565b5f604051808303815f87803b158015613fb0575f5ffd5b505af1158015613fc2573d5f5f3e3d5ffd5b5050600154613fe092506001600160a01b038c81169250165f6142c4565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d866040516140129291906158f1565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b815260040161405e9392919061585c565b5f604051808303815f87803b158015614075575f5ffd5b505af1158015614087573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff16908160068111156140be576140be614607565b036140e357826001826040516337e1404160e01b815260040161098893929190614d8e565b60058160068111156140f7576140f7614607565b036141185760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561412c5761412c614607565b0361414d57604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561419657614196614607565b0217905550825f5160206159165f395f51905f528260066040516141bb929190614dd6565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612ba99291906156a7565b6040516001600160a01b03848116602483015283811660448301526064820183905261422e9186918216906323b872dd90608401613a6f565b50505050565b61423c614354565b6112fe57604051631afcd79f60e31b815260040160405180910390fd5b612bbe614234565b5f5f60205f8451602086015f885af180614280576040513d5f823e3d81fd5b50505f513d915081156142975780600114156142a4565b6001600160a01b0384163b155b1561422e5783604051635274afe760e01b8152600401610988919061458e565b5f836001600160a01b031663095ea7b384846040516024016142e7929190615843565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050509050614320848261436d565b61422e5761434a84856001600160a01b031663095ea7b3865f604051602401613a6f929190615843565b61422e8482614261565b5f61435d6138b1565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f5190508280156143ac5750811561439e57806001146143ac565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f81526020016143de614502565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b6001830191839082156144c4579160200282015f5b8382111561449257833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff1602179055509260200192600401602081600301049283019260010302614448565b80156144c25782816101000a81549063ffffffff0219169055600401602081600301049283019260010302614492565b505b506144d0929150614520565b5090565b82600281019282156144c4579160200282015b828111156144c45782518255916020019190600101906144e7565b60405180604001604052806002906020820280368337509192915050565b5b808211156144d0575f8155600101614521565b6001600160a01b0381168114610acc575f5ffd5b5f60208284031215614558575f5ffd5b813561456381614534565b9392505050565b5f6020828403121561457a575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b8035600481106145b0575f5ffd5b919050565b5f5f604083850312156145c6575f5ffd5b6145cf836145a2565b946020939093013593505050565b5f60608284031215610ef1575f5ffd5b5f606082840312156145fd575f5ffd5b61456383836145dd565b634e487b7160e01b5f52602160045260245ffd5b600e811061462b5761462b614607565b9052565b602081016138d5828461461b565b6004811061462b5761462b614607565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e815261468b602082018f61463d565b8c60408201528b60608201526146a4608082018c614581565b60ff8a1660a08201526101c060c08201525f6146c46101c083018b61464d565b6146d160e084018b614581565b6146df61010084018a614581565b8761012084015286610140840152828103610160840152614700818761464d565b915050614711610180830185614581565b8215156101a08301529f9e505050505050505050505050505050565b805f5b600281101561422e578151845260209384019390910190600101614730565b805182525f6020820151614766602085018261463d565b50604082015160408401526060820151614783606085018261472d565b50608082015160a084015260a08201516147a060c0850182614581565b5060c082015160ff811660e08501525060e08201516102006101008501526147cc61020085018261464d565b90506101008301516147e2610120860182614581565b506101208301516147f7610140860182614581565b506101408301516101608501526101608301516101808501526101808301518482036101a0860152614829828261464d565b9150506101a08301516148406101c0860182614581565b506101c08301518015156101e08601526139d1565b602081525f614563602083018461474f565b80356145b081614534565b5f5f5f5f5f5f5f610120888a031215614889575f5ffd5b873561489481614534565b965060208801356148a481614534565b955060408801356148b481614534565b945060608801356148c481614534565b935060808801356148d481614534565b925060a088013591506148ea8960c08a016145dd565b905092959891949750929550565b803560ff811681146145b0575f5ffd5b5f60208284031215614918575f5ffd5b614563826148f8565b602081525f614563602083018461464d565b5f5f60408385031215614944575f5ffd5b82359150602083013561495681614534565b809150509250929050565b5f5f60408385031215614972575f5ffd5b50508035926020909101359150565b5f5f83601f840112614991575f5ffd5b5081356001600160401b038111156149a7575f5ffd5b602083019150836020828501011115613c27575f5ffd5b5f5f5f604084860312156149d0575f5ffd5b6149d9846148f8565b925060208401356001600160401b038111156149f3575f5ffd5b6149ff86828701614981565b9497909650939450505050565b815181526020808301519082015260408083015190820152606081016138d5565b821515815260408101614563602083018461461b565b5f5f5f5f5f60608688031215614a57575f5ffd5b8535945060208601356001600160401b03811115614a73575f5ffd5b614a7f88828901614981565b90955093505060408601356001600160401b03811115614a9d575f5ffd5b614aa988828901614981565b969995985093965092949392505050565b5f60208284031215614aca575f5ffd5b81356001600160401b03811115614adf575f5ffd5b82016101008185031215614563575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614b4b60e0840182614581565b50610100830151614b6361010084018261ffff169052565b50610120830151614b7b61012084018261ffff169052565b50610140830151614b9361014084018261ffff169052565b50610160830151614bab61016084018261ffff169052565b50610180830151614bc361018084018261ffff169052565b506101a0830151614bdd6101a084018263ffffffff169052565b506101c0830151614bf76101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614c14575f5ffd5b8735965060208801356001600160401b03811115614c30575f5ffd5b614c3c8a828b01614981565b90975095505060408801356001600160401b03811115614c5a575f5ffd5b614c668a828b01614981565b90955093505060608801356001600160401b03811115614c84575f5ffd5b614c908a828b01614981565b989b979a50959850939692959293505050565b5f5f60408385031215614cb4575f5ffd5b82359150614cc4602084016148f8565b90509250929050565b6007811061462b5761462b614607565b602081016138d58284614ccd565b5f6101e0828403128015614cfd575f5ffd5b509092915050565b5f5f60608385031215614d16575f5ffd5b614d1f836145a2565b915083606084011115614d30575f5ffd5b50926020919091019150565b828152604060208201525f614d54604083018461474f565b949350505050565b600181811c90821680614d7057607f821691505b602082108103610ef157634e487b7160e01b5f52602260045260245ffd5b83815260608101614da26020830185614ccd565b614d546040830184614ccd565b634e487b7160e01b5f52601160045260245ffd5b808201808211156138d5576138d5614daf565b60408101614de48285614ccd565b6145636020830184614ccd565b634e487b7160e01b5f52604160045260245ffd5b601f821115613aa157805f5260205f20601f840160051c81016020851015614e2a5750805b601f840160051c820191505b81811015614e49575f8155600101614e36565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614e7b57614e7b614df1565b614e8f83614e898354614d5c565b83614e05565b5f601f841160018114614ebb575f8515614ea95750838201355b614eb38682614e50565b845550614e49565b5f83815260208120601f198716915b82811015614eea5786850135825560209485019460019092019101614eca565b5086821015614f06575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60ff84168152604060208201525f614f5c604083018486614f18565b95945050505050565b5f8151808452602084019350602083015f5b82811015614f9e5781516001600160a01b0316865260209586019590910190600101614f77565b5093949350505050565b848152836020820152608060408201525f614fc66080830185614f65565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f6143ac606083018486614f18565b8015158114610acc575f5ffd5b5f6020828403121561503e575f5ffd5b815161456381615021565b602081525f614d54602083018486614f18565b5f6020828403121561506c575f5ffd5b614563826145a2565b602081016138d5828461463d565b80820281158282048414176138d5576138d5614daf565b5f826150b457634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156150c9575f5ffd5b5051919050565b818103818111156138d5576138d5614daf565b858152606060208201525f6150fc606083018688614f18565b828103604084015261510f818587614f18565b98975050505050505050565b604081525f61512e604083018688614f18565b8281036020840152615141818587614f18565b979650505050505050565b61ffff81168114610acc575f5ffd5b80356145b08161514c565b5f60208284031215615176575f5ffd5b81356145638161514c565b63ffffffff81168114610acc575f5ffd5b80356145b081615181565b5f602082840312156151ad575f5ffd5b813561456381615181565b5f81356138d581614534565b5f81356138d58161514c565b5f81356138d581615181565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c082013560068201556007810161524c61522f60e085016151b8565b82546001600160a01b0319166001600160a01b0391909116178255565b61527c61525c61010085016151c4565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6152ac61528c61012085016151c4565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b6152dc6152bc61014085016151c4565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b61530c6152ec61016085016151c4565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b61533c61531c61018085016151c4565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b50600881016153686153516101a085016151d0565b825463ffffffff191663ffffffff91909116178255565b613aa16153786101c085016151d0565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e081016153eb60e08401614867565b6153f860e0840182614581565b50615406610100840161515b565b61ffff1661010083015261541d610120840161515b565b61ffff16610120830152615434610140840161515b565b61ffff1661014083015261544b610160840161515b565b61ffff16610160830152615462610180840161515b565b61ffff166101808301526154796101a08401615192565b63ffffffff166101a08301526154926101c08401615192565b63ffffffff81166101c0840152614bf7565b6040810181835f5b60028110156154db5781356154c081615181565b63ffffffff16835260209283019291909101906001016154ac565b50505092915050565b5f600182016154f5576154f5614daf565b5060010190565b5f5f8335601e19843603018112615511575f5ffd5b8301803591506001600160401b0382111561552a575f5ffd5b602001915036819003821315613c27575f5ffd5b5f6020828403121561554e575f5ffd5b813561456381615021565b87815286602082015260a060408201525f61557760a083018861464d565b828103606084015261558a818789614f18565b9050828103608084015261559f818587614f18565b9a9950505050505050505050565b81516001600160401b038111156155c6576155c6614df1565b6155da816155d48454614d5c565b84614e05565b6020601f821160018114615607575f83156155f55750848201515b6155ff8482614e50565b855550614e49565b5f84815260208120601f198516915b828110156156365787850151825560209485019460019092019101615616565b508482101561565357868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561569c57815163ffffffff16835260209283019290910190600101615677565b505050949350505050565b604081016156b58285614ccd565b614563602083018461461b565b604051601f8201601f191681016001600160401b03811182821017156156ea576156ea614df1565b604052919050565b5f6001600160401b0382111561570a5761570a614df1565b5060051b60200190565b5f82601f830112615723575f5ffd5b8151615736615731826156f2565b6156c2565b8082825260208201915060208360051b860101925085831115615757575f5ffd5b602085015b8381101561577457805183526020928301920161575c565b5095945050505050565b5f5f6040838503121561578f575f5ffd5b82516001600160401b038111156157a4575f5ffd5b8301601f810185136157b4575f5ffd5b80516157c2615731826156f2565b8082825260208201915060208360051b8501019250878311156157e3575f5ffd5b6020840193505b8284101561580e5783516157fd81614534565b8252602093840193909101906157ea565b8095505050505060208301516001600160401b0381111561582d575f5ffd5b61583985828601615714565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f6158746060830185614f65565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b82811015614f9e57815186526020958601959091019060010161589e565b6001600160a01b03841681526060602082018190525f906158df90830185614f65565b82810360408401526143ac818561588c565b604081525f6159036040830185614f65565b8281036020840152614f5c818561588c56fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", "linkReferences": {}, "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/Enclave.sol", - "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" + "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json b/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json index cd9e02252b..50b72f1e09 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json @@ -940,5 +940,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/IBondingRegistry.sol", - "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" + "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json b/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json index 1a54de2ed8..2e343c9f86 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json @@ -568,6 +568,11 @@ "internalType": "address[]", "name": "nodes", "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "scores", + "type": "uint256[]" } ], "stateMutability": "view", @@ -960,5 +965,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/ICiphernodeRegistry.sol", - "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" + "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json b/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json index e18082ff7d..65a13c5bbc 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json @@ -646,7 +646,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -819,7 +819,7 @@ "inputs": [ { "indexed": false, - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -1240,7 +1240,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -1313,7 +1313,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -1709,7 +1709,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -1774,7 +1774,7 @@ "type": "address" }, { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -1918,7 +1918,7 @@ { "inputs": [ { - "internalType": "enum IEnclave.ParamSet", + "internalType": "uint8", "name": "paramSet", "type": "uint8" }, @@ -2078,5 +2078,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/IEnclave.sol", - "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" + "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json b/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json index d5374087fb..24346a4165 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json @@ -954,5 +954,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/ISlashingManager.sol", - "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" + "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json b/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json index 08296ba9d8..3942281caf 100644 --- a/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json +++ b/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json @@ -743,8 +743,13 @@ "outputs": [ { "internalType": "address[]", - "name": "", + "name": "nodes", "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "scores", + "type": "uint256[]" } ], "stateMutability": "view", @@ -1259,30 +1264,30 @@ "type": "function" } ], - "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613e22806100d65f395ff3fe608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80639f0f874a11610135578063e59e4695116100b4578063f26ef74e11610079578063f26ef74e14610571578063f2fde38b14610584578063f379b0df14610597578063f52fd803146105d1578063f6fc05d514610643575f5ffd5b8063e59e469514610516578063e6745e1314610529578063e82f3b701461053c578063ebf0c7171461054f578063f165053614610557575f5ffd5b8063c3a0ec30116100fa578063c3a0ec30146104ae578063ca2869a0146104bf578063cd6dc687146104de578063da881e5a146104f1578063dbb06c9314610504575f5ffd5b80639f0f874a1461044d578063a016493014610456578063a8a4d69b14610469578063bff232c11461047c578063c2b40ae41461048f575f5ffd5b8063715018a6116101c15780638d1ddfb1116101865780638d1ddfb1146103cd5780638da5cb5b146103e35780638e5ce3ad146103eb5780639015d371146103fe5780639a7a2ffc14610411575f5ffd5b8063715018a6146103465780637c92f5241461034e578063858142431461037b5780638a78bb151461039b5780638cb89ecb146103ae575f5ffd5b80632e7b716d116102075780632e7b716d146102d85780634d6861a6146102eb57806350e6d94c146102fe5780635d5047761461032057806370e36bbe14610333575f5ffd5b8063096b810a146102435780630f3e34121461025857806317d611201461026b5780632800d82914610294578063291a691b146102b5575b5f5ffd5b61025661025136600461323c565b61064c565b005b610256610266366004613257565b610798565b61027e610279366004613257565b6107db565b60405161028b919061326e565b60405180910390f35b6102a76102a2366004613257565b61091d565b60405190815260200161028b565b6102c86102c33660046132b9565b610969565b604051901515815260200161028b565b6102c86102e636600461323c565b610b43565b6102c86102f9366004613257565b610bf6565b6102c861030c36600461323c565b60066020525f908152604090205460ff1681565b6102c861032e3660046132f2565b610c35565b61025661034136600461323c565b610c79565b610256610cef565b61036161035c366004613320565b610d02565b6040805192835263ffffffff90911660208301520161028b565b60015461038e906001600160a01b031681565b60405161028b9190613355565b6102566103a936600461323c565b610ea9565b6102a76103bc366004613257565b60096020525f908152604090205481565b600454600160281b900464ffffffffff166102a7565b61038e610fe7565b600b5461038e906001600160a01b031681565b6102c861040c36600461323c565b611015565b61043761041f36600461323c565b60076020525f908152604090205464ffffffffff1681565b60405164ffffffffff909116815260200161028b565b6102a760035481565b61027e610464366004613257565b611032565b6102c86104773660046132f2565b6110c8565b61025661048a36600461323c565b61110c565b6102a761049d366004613257565b60086020525f908152604090205481565b6001546001600160a01b031661038e565b6102a76104cd366004613257565b5f9081526008602052604090205490565b6102566104ec366004613369565b61115d565b6102c86104ff366004613257565b6112ba565b5f5461038e906001600160a01b031681565b61025661052436600461323c565b611594565b610256610537366004613393565b61160c565b6102a761054a366004613257565b6117cf565b6102a7611800565b61055f601481565b60405160ff909116815260200161028b565b61025661057f3660046133f7565b611812565b61025661059236600461323c565b611b0c565b6004546105b39064ffffffffff80821691600160281b90041682565b6040805164ffffffffff93841681529290911660208301520161028b565b6106146105df366004613257565b5f908152600a6020819052604090912090810154600590910154909163ffffffff80831692600160201b900416908284101590565b60405161028b949392919093845263ffffffff9283166020850152911660408301521515606082015260800190565b6102a760025481565b610654610fe7565b6001600160a01b0316336001600160a01b0316148061067d57506001546001600160a01b031633145b61069a57604051632864c4e160e01b815260040160405180910390fd5b6106a381611015565b81906106cc576040516381e5828960e01b81526004016106c39190613355565b60405180910390fd5b506001600160a01b0381165f9081526007602052604081205464ffffffffff16906106fa9060049083611b46565b6001600160a01b0382165f908152600660205260408120805460ff19169055600280549161072783613511565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f8c008e3835f6c79bfcdb89f0f6ca8705e0b01049ee84a90b0e4da1c7ba9405d5906060015b60405180910390a25050565b6107a0611de8565b60038190556040518181527fbe772dc189863d512fa01e489c8eac204975aef1a8662d8b5a333804b5207ab79060200160405180910390a150565b5f818152600a602081905260408220600681015491810154606093919291816001600160401b0381111561081157610811613526565b60405190808252806020026020018201604052801561083a578160200160208202803683370190505b5090505f805b84811015610911576001866009015f8860060184815481106108645761086461354e565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205460ff16600281111561089c5761089c61353a565b03610909578560060181815481106108b6576108b661354e565b905f5260205f20015f9054906101000a90046001600160a01b03168383815181106108e3576108e361354e565b6001600160a01b03909216602092830291909101909101528161090581613562565b9250505b600101610840565b50909695505050505050565b5f818152600a6020526040812081815460ff1660038111156109415761094161353a565b0361095f57604051630d4c1d9760e41b815260040160405180910390fd5b6003015492915050565b5f80546001600160a01b031633146109945760405163e4c2a7eb60e01b815260040160405180910390fd5b5f848152600a6020526040812090815460ff1660038111156109b8576109b861353a565b146109d6576040516374ff462560e11b815260040160405180910390fd5b60015460408051630cc37d8f60e11b815290515f926001600160a01b031691631986fb1e9160048083019260209291908290030181865afa158015610a1d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a41919061357a565b905080610a5460408601602087016135a4565b63ffffffff161115610a6c60408601602087016135a4565b829091610a9a576040516344ec930f60e01b815263ffffffff909216600483015260248201526044016106c3565b5050815460ff1916600190811783558201859055436002830155600354610ac190426135bd565b6003830155610ad560058301856002613173565b50610ade611800565b5f87815260086020526040908190209190915560028301546003840154915188927f381d281d32f95ef8fe4e5f3b263ea6a32d03d331e1a141ae1da996dc02a7a17092610b2f928a928a92916135d0565b60405180910390a250600195945050505050565b5f610b4d82611015565b610b5857505f919050565b6001546001600160a01b0316610b81576040516350ca893360e01b815260040160405180910390fd5b600154604051639f8a13d760e01b81526001600160a01b0390911690639f8a13d790610bb1908590600401613355565b602060405180830381865afa158015610bcc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf0919061362f565b92915050565b5f818152600a602052604081206001815460ff166003811115610c1b57610c1b61353a565b14610c2857505f92915050565b6003015442111592915050565b5f60015f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff166002811115610c7157610c7161353a565b149392505050565b610c81611de8565b6001600160a01b038116610ca85760405163d92e233d60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b038316908117825560405190917f2c8267accd82e977550ed2349c73311183cd22e306347be4453c8d130995e3c991a250565b610cf7611de8565b610d005f611e1a565b565b600b545f9081906001600160a01b03163314610d315760405163fcef374960e01b815260040160405180910390fd5b5f858152600a602052604090206002815460ff166003811115610d5657610d5661353a565b14610d7457604051634f4b461f60e11b815260040160405180910390fd5b60058101546001600160a01b0386165f90815260098301602052604090205463ffffffff909116925060019060ff166002811115610db457610db461353a565b14610dc457600a01549150610ea1565b6001600160a01b0385165f9081526009820160205260408120805460ff19166002179055600a8201805491610df883613511565b919050555080600a01549250846001600160a01b0316867f6c783b92374361b4d6efaf29673b89437ee969bb3c9d2d5d86b143ad5447b8498686604051610e49929190918252602082015260400190565b60405180910390a36040805184815263ffffffff84166020820181905285101591810182905287907f119cb11dd0a68c257d6dc9b06dcb37dd422ce276eb8bf3cd0b7079a116b8e2989060600160405180910390a250505b935093915050565b610eb1610fe7565b6001600160a01b0316336001600160a01b03161480610eda57506001546001600160a01b031633145b610ef757604051632864c4e160e01b815260040160405180910390fd5b610f0081611015565b610fe45760048054600160281b900464ffffffffff1690610f2a906001600160a01b038416611e8a565b6001600160a01b0382165f908152600660209081526040808320805460ff1916600117905560079091528120805464ffffffffff841664ffffffffff199091161790556002805491610f7b83613562565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f3318d261fe14a5761d2d1e21555652f623d2134c430a9883c9ad6e958bb0db539060600161078c565b50565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b03165f9081526006602052604090205460ff1690565b5f818152600a60205260409020600481015460609190611065576040516322e679e360e11b815260040160405180910390fd5b806006018054806020026020016040519081016040528092919081815260200182805480156110bb57602002820191905f5260205f20905b81546001600160a01b0316815260019091019060200180831161109d575b5050505050915050919050565b5f805f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff1660028111156111035761110361353a565b14159392505050565b611114611de8565b6001600160a01b03811661113b5760405163d92e233d60e01b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b5f611166612060565b805490915060ff600160401b82041615906001600160401b03165f8115801561118c5750825b90505f826001600160401b031660011480156111a75750303b155b9050811580156111b5575080155b156111d35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156111fd57845460ff60401b1916600160401b1785555b6001600160a01b0387166112245760405163d92e233d60e01b815260040160405180910390fd5b61122d33612088565b61123960046014612099565b61124286610798565b61124a610fe7565b6001600160a01b0316876001600160a01b03161461126b5761126b87611b0c565b83156112b157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f818152600a6020526040812081815460ff1660038111156112de576112de61353a565b036112fc57604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156113145761131461353a565b1461133257604051631860f69960e31b815260040160405180910390fd5b8060030154421161135657604051632f021e8d60e11b815260040160405180910390fd5b60058101546006820154600160201b90910463ffffffff1611158061143b578154600360ff199091161782556006820154600583015460408051928352600160201b90910463ffffffff16602083015285917fecc4a9fb7e28d074cba7f5b227e9b5827823c850a385539b9a2f98a08f8c203d910160405180910390a25f54604051635d968dc160e11b815260048101869052600260248201526001600160a01b039091169063bb2d1b82906044015f604051808303815f87803b15801561141c575f5ffd5b505af115801561142e573d5f5f3e3d5ffd5b505f979650505050505050565b815460ff191660021782556006820154600a83018190555f816001600160401b0381111561146b5761146b613526565b604051908082528060200260200182016040528015611494578160200160208202803683370190505b5090505f5b8281101561150657846008015f8660060183815481106114bb576114bb61354e565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205482518390839081106114f3576114f361354e565b6020908102919091010152600101611499565b505f54604051631f3ea75d60e21b8152600481018890526001600160a01b0390911690637cfa9d74906024015f604051808303815f87803b158015611549575f5ffd5b505af115801561155b573d5f5f3e3d5ffd5b50505050857f4f1f5b329c741a8ba15e9645e301061294d0c1fdd455448ffd5e76ff255929d78560060183604051610b2f929190613648565b61159c611de8565b6001600160a01b0381166115c35760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a7905f90a250565b5f828152600a6020526040812090815460ff1660038111156116305761163061353a565b0361164e57604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156116665761166661353a565b1461168457604051631860f69960e31b815260040160405180910390fd5b80600301544211156116a957604051639a19114d60e01b815260040160405180910390fd5b335f90815260078201602052604090205460ff16156116db5760405163257309f160e11b815260040160405180910390fd5b6116e433610b43565b6117015760405163149fbcfd60e11b815260040160405180910390fd5b61170c338385612118565b6001810154604080516bffffffffffffffffffffffff193360601b16602080830191909152603482018690526054820187905260748083019490945282518083039094018452609490910190915281519101205f90335f8181526007850160205260409020805460ff1916600117905590915061178b908390836122e9565b506040805184815260208101839052339186917f52999628fb1cb05707e842278833b22e511f11746202cecdf221968b0b89e8bd910160405180910390a350505050565b5f81815260096020526040902054806117fb576040516322e679e360e11b815260040160405180910390fd5b919050565b5f61180d600460146124ea565b905090565b61181a611de8565b5f898152600a602052604090206002815460ff16600381111561183f5761183f61353a565b1461185d57604051634f4b461f60e11b815260040160405180910390fd5b6004810154156118805760405163632a22bb60e01b815260040160405180910390fd5b600681015488146118c95760405162461bcd60e51b815260206004820152601360248201527209cdec8ca40c6deeadce840dad2e6dac2e8c6d606b1b60448201526064016106c3565b5f6118d6858701876137d2565b9150505f8151116119205760405162461bcd60e51b815260206004820152601460248201527343353a206e6f207075626c696320696e7075747360601b60448201526064016106c3565b5f81600183516119309190613875565b815181106119405761194061354e565b602002602001015190505f5f5f9054906101000a90046001600160a01b03166001600160a01b031663406ed35c8e6040518263ffffffff1660e01b815260040161198c91815260200190565b5f60405180830381865afa1580156119a6573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526119cd9190810190613968565b610120810151604051637bf41d7760e11b81529192506001600160a01b03169063f7e83aee90611a07908b908b908b908b90600401613aee565b602060405180830381865afa158015611a22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a46919061357a565b5060048085018390555f8e815260096020526040808220859055905490516340a3b76160e11b81529182018f9052602482018490526001600160a01b0316906381476ec2906044015f604051808303815f87803b158015611aa5575f5ffd5b505af1158015611ab7573d5f5f3e3d5ffd5b505050508c7f49ac1dd411942113d1c5e6799c6379ce341afe85a4175fb562cf2a5fb886c27d8d8d8d8d8d8d604051611af596959493929190613b1f565b60405180910390a250505050505050505050505050565b611b14611de8565b6001600160a01b038116611b3d575f604051631e4fbdf760e01b81526004016106c39190613355565b610fe481611e1a565b7f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611b855760405162461bcd60e51b81526004016106c390613b98565b825464ffffffffff600160281b90910481169082168111611be35760405162461bcd60e51b815260206004820152601860248201527713185e9e5253550e881b195859881b5d5cdd08195e1a5cdd60421b60448201526064016106c3565b825f5b81866001015f611bf684886125e3565b64ffffffffff1681526020019081526020015f20819055505f816001611c1c9190613be2565b60ff168464ffffffffff16901c64ffffffffff16905060018564ffffffffff16901c64ffffffffff168111611c515750611de0565b600185165f03611d18575f611c7083611c6b886001613bfb565b6125e3565b60408051808201825286815264ffffffffff83165f90815260018c0160209081529083902054908201529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611cd191600401613c18565b602060405180830381865af4158015611cec573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d10919061357a565b935050611dcc565b5f611d2883611c6b600189613c48565b60408051808201825264ffffffffff83165f90815260018c0160209081529083902054825281018790529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611d8991600401613c18565b602060405180830381865af4158015611da4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc8919061357a565b9350505b50647fffffffff600194851c169301611be6565b505050505050565b33611df1610fe7565b6001600160a01b031614610d00573360405163118cdaa760e01b81526004016106c39190613355565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b8154600160281b900464ffffffffff167f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611ed95760405162461bcd60e51b81526004016106c390613b98565b825464ffffffffff90811690821610611f2c5760405162461bcd60e51b815260206004820152601560248201527413185e9e5253550e881d1c9959481a5cc8199d5b1b605a1b60448201526064016106c3565b611f37816001613bfb565b835464ffffffffff91909116600160281b0269ffffffffff000000000019909116178355815f5b81856001015f611f6e84876125e3565b64ffffffffff16815260208101919091526040015f20556001831615612059575f611f9e82611c6b600187613c48565b60408051808201825264ffffffffff83165f90815260018a0160209081529083902054825281018690529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611fff91600401613c18565b602060405180830381865af415801561201a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061203e919061357a565b647fffffffff600195861c1694909350919091019050611f5e565b5050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610bf0565b612090612600565b610fe481612625565b602060ff821611156120e75760405162461bcd60e51b81526020600482015260176024820152764c617a79494d543a205472656520746f6f206c6172676560481b60448201526064016106c3565b6120f8600160ff831681901b613875565b825469ffffffffffffffffffff191664ffffffffff919091161790915550565b5f82116121385760405163aeaddff160e01b815260040160405180910390fd5b6001546001600160a01b0316612161576040516350ca893360e01b815260040160405180910390fd5b5f818152600a602052604081206001805460028301549293926001600160a01b039091169163bb03bd7191889161219791613875565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa1580156121de573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612202919061357a565b90505f60015f9054906101000a90046001600160a01b03166001600160a01b0316631209b1f66040518163ffffffff1660e01b8152600401602060405180830381865afa158015612255573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612279919061357a565b90505f811161229b5760405163aeaddff160e01b815260040160405180910390fd5b5f6122a68284613c65565b90505f81116122c85760405163149fbcfd60e11b815260040160405180910390fd5b808611156112b15760405163aeaddff160e01b815260040160405180910390fd5b60058301546006840180545f92600160201b900463ffffffff169081111561236757508054600180820183555f928352602080842090920180546001600160a01b0319166001600160a01b03881690811790915583526008870182526040808420869055600988019092529120805460ff19168217905590506124e3565b5f5f90505f876008015f855f815481106123835761238361354e565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905060015b845481101561240b575f896008015f8784815481106123cd576123cd61354e565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905082811115612402578092508193505b506001016123ac565b5080861061241f575f9450505050506124e3565b5f886009015f8685815481106124375761243761354e565b5f9182526020808320909101546001600160a01b031683528201929092526040019020805460ff191660018360028111156124745761247461353a565b02179055508684838154811061248c5761248c61354e565b5f91825260208083209190910180546001600160a01b0319166001600160a01b03948516179055918916815260088a018252604080822089905560098b0190925220805460ff191660019081179091559450505050505b9392505050565b5f5f8260ff161161253d5760405162461bcd60e51b815260206004820152601a60248201527f4c617a79494d543a206465707468206d757374206265203e203000000000000060448201526064016106c3565b602060ff831611156125615760405162461bcd60e51b81526004016106c390613c84565b8254600160281b900464ffffffffff168061258060ff85166002613dd5565b64ffffffffff1610156125d05760405162461bcd60e51b8152602060048201526018602482015277098c2f4f2929aa87440c2dac4d2ceeadeeae640c8cae0e8d60431b60448201526064016106c3565b6125db84828561262d565b949350505050565b5f816125f660ff851663ffffffff613dee565b6124e39190613bfb565b6126086126f5565b610d0057604051631afcd79f60e31b815260040160405180910390fd5b611b14612600565b5f602060ff831611156126525760405162461bcd60e51b81526004016106c390613c84565b8264ffffffffff165f03612670576126698261270e565b90506124e3565b5f61267c836001613be2565b60ff166001600160401b0381111561269657612696613526565b6040519080825280602002602001820160405280156126bf578160200160208202803683370190505b5090506126ce85858584612da8565b808360ff16815181106126e3576126e361354e565b60200260200101519150509392505050565b5f6126fe612060565b54600160401b900460ff16919050565b5f8160ff165f0361272057505f919050565b8160ff1660010361275257507f2098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864919050565b8160ff1660020361278457507f1069673dcdb12263df301a6ff584a7ec261a44cb9dc68df067a4774460b1f1e1919050565b8160ff166003036127b657507f18f43331537ee2af2e3d758d50f72106467c6eea50371dd528d57eb2b856d238919050565b8160ff166004036127e857507f07f9d837cb17b0d36320ffe93ba52345f1b728571a568265caac97559dbc952a919050565b8160ff1660050361281a57507f2b94cf5e8746b3f5c9631f4c5df32907a699c58c94b2ad4d7b5cec1639183f55919050565b8160ff1660060361284c57507f2dee93c5a666459646ea7d22cca9e1bcfed71e6951b953611d11dda32ea09d78919050565b8160ff1660070361287e57507f078295e5a22b84e982cf601eb639597b8b0515a88cb5ac7fa8a4aabe3c87349d919050565b8160ff166008036128b057507f2fa5e5f18f6027a6501bec864564472a616b2e274a41211a444cbe3a99f3cc61919050565b8160ff166009036128e257507f0e884376d0d8fd21ecb780389e941f66e45e7acce3e228ab3e2156a614fcd747919050565b8160ff16600a0361291457507f1b7201da72494f1e28717ad1a52eb469f95892f957713533de6175e5da190af2919050565b8160ff16600b0361294657507f1f8d8822725e36385200c0b201249819a6e6e1e4650808b5bebc6bface7d7636919050565b8160ff16600c0361297857507f2c5d82f66c914bafb9701589ba8cfcfb6162b0a12acf88a8d0879a0471b5f85a919050565b8160ff16600d036129aa57507f14c54148a0940bb820957f5adf3fa1134ef5c4aaa113f4646458f270e0bfbfd0919050565b8160ff16600e036129dc57507f190d33b12f986f961e10c0ee44d8b9af11be25588cad89d416118e4bf4ebe80c919050565b8160ff16600f03612a0e57507f22f98aa9ce704152ac17354914ad73ed1167ae6596af510aa5b3649325e06c92919050565b8160ff16601003612a4057507f2a7c7c9b6ce5880b9f6f228d72bf6a575a526f29c66ecceef8b753d38bba7323919050565b8160ff16601103612a7257507f2e8186e558698ec1c67af9c14d463ffc470043c9c2988b954d75dd643f36b992919050565b8160ff16601203612aa457507f0f57c5571e9a4eab49e2c8cf050dae948aef6ead647392273546249d1c1ff10f919050565b8160ff16601303612ad657507f1830ee67b5fb554ad5f63d4388800e1cfe78e310697d46e43c9ce36134f72cca919050565b8160ff16601403612b0857507f2134e76ac5d21aab186c2be1dd8f84ee880a1e46eaf712f9d371b6df22191f3e919050565b8160ff16601503612b3a57507f19df90ec844ebc4ffeebd866f33859b0c051d8c958ee3aa88f8f8df3db91a5b1919050565b8160ff16601603612b6c57507f18cca2a66b5c0787981e69aefd84852d74af0e93ef4912b4648c05f722efe52b919050565b8160ff16601703612b9e57507f2388909415230d1b4d1304d2d54f473a628338f2efad83fadf05644549d2538d919050565b8160ff16601803612bd057507f27171fb4a97b6cc0e9e8f543b5294de866a2af2c9c8d0b1d96e673e4529ed540919050565b8160ff16601903612c0257507f2ff6650540f629fd5711a0bc74fc0d28dcb230b9392583e5f8d59696dde6ae21919050565b8160ff16601a03612c3457507f120c58f143d491e95902f7f5277778a2e0ad5168f6add75669932630ce611518919050565b8160ff16601b03612c6657507f1f21feb70d3f21b07bf853d5e5db03071ec495a0a565a21da2d665d279483795919050565b8160ff16601c03612c9857507f24be905fa71335e14c638cc0f66a8623a826e768068a9e968bb1a1dde18a72d2919050565b8160ff16601d03612cca57507f0f8666b62ed17491c50ceadead57d4cd597ef3821d65c328744c74e553dac26d919050565b8160ff16601e03612cfc57507f0918d46bf52d98b034413f4a1a1c41594e7a7a3f6ae08cb43d1a2a230e1959ef919050565b8160ff16601f03612d2e57507f1bbeb01b4c479ecde76917645e404dfa2e26f90d0afc5a65128513ad375c5ff2919050565b8160ff16602003612d6057507f2f68a1c58e257e42a17a6c61dff5551ed560b9922ab119d5ac8e184c9734ead9919050565b60405162461bcd60e51b815260206004820152601e60248201527f4c617a79494d543a2064656661756c745a65726f2062616420696e646578000060448201526064016106c3565b602060ff83161115612dcc5760405162461bcd60e51b81526004016106c390613c84565b5f8364ffffffffff1611612e305760405162461bcd60e51b815260206004820152602560248201527f4c617a79494d543a206e756d626572206f66206c6561766573206d7573742062604482015264065203e20360dc1b60648201526084016106c3565b5f612e3c600185613c48565b9050600181165f03612e8f57846001015f612e575f846125e3565b64ffffffffff1681526020019081526020015f2054825f81518110612e7e57612e7e61354e565b602002602001018181525050612eb7565b612e985f61270e565b825f81518110612eaa57612eaa61354e565b6020026020010181815250505b5f5b8360ff168160ff161015611de057600182165f03612faf5773__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280868560ff1681518110612f0b57612f0b61354e565b60200260200101518152602001612f218561270e565b8152506040518263ffffffff1660e01b8152600401612f409190613c18565b602060405180830381865af4158015612f5b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f7f919061357a565b83612f8b836001613be2565b60ff1681518110612f9e57612f9e61354e565b602002602001018181525050613160565b5f612fbb826001613be2565b60ff168664ffffffffff16901c64ffffffffff16905060018364ffffffffff16901c64ffffffffff1681111561305d575f876001015f6130128560016130019190613be2565b60018864ffffffffff16901c6125e3565b64ffffffffff1681526020019081526020015f2054905080858460016130389190613be2565b60ff168151811061304b5761304b61354e565b6020026020010181815250505061315e565b5f876001015f61307485600188611c6b9190613c48565b64ffffffffff1681526020019081526020015f2054905073__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280848152602001888760ff16815181106130cb576130cb61354e565b60200260200101518152506040518263ffffffff1660e01b81526004016130f29190613c18565b602060405180830381865af415801561310d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613131919061357a565b8561313d856001613be2565b60ff16815181106131505761315061354e565b602002602001018181525050505b505b647fffffffff600192831c169101612eb9565b600183019183908215613204579160200282015f5b838211156131d257833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff1602179055509260200192600401602081600301049283019260010302613188565b80156132025782816101000a81549063ffffffff02191690556004016020816003010492830192600103026131d2565b505b50613210929150613214565b5090565b5b80821115613210575f8155600101613215565b6001600160a01b0381168114610fe4575f5ffd5b5f6020828403121561324c575f5ffd5b81356124e381613228565b5f60208284031215613267575f5ffd5b5035919050565b602080825282518282018190525f918401906040840190835b818110156132ae5783516001600160a01b0316835260209384019390920191600101613287565b509095945050505050565b5f5f5f608084860312156132cb575f5ffd5b8335925060208401359150608084018510156132e5575f5ffd5b6040840190509250925092565b5f5f60408385031215613303575f5ffd5b82359150602083013561331581613228565b809150509250929050565b5f5f5f60608486031215613332575f5ffd5b83359250602084013561334481613228565b929592945050506040919091013590565b6001600160a01b0391909116815260200190565b5f5f6040838503121561337a575f5ffd5b823561338581613228565b946020939093013593505050565b5f5f604083850312156133a4575f5ffd5b50508035926020909101359150565b5f5f83601f8401126133c3575f5ffd5b5081356001600160401b038111156133d9575f5ffd5b6020830191508360208285010111156133f0575f5ffd5b9250929050565b5f5f5f5f5f5f5f5f5f60a08a8c03121561340f575f5ffd5b8935985060208a01356001600160401b0381111561342b575f5ffd5b8a01601f81018c1361343b575f5ffd5b80356001600160401b03811115613450575f5ffd5b8c60208260051b8401011115613464575f5ffd5b6020919091019850965060408a01356001600160401b03811115613486575f5ffd5b6134928c828d016133b3565b90975095505060608a01356001600160401b038111156134b0575f5ffd5b6134bc8c828d016133b3565b90955093505060808a01356001600160401b038111156134da575f5ffd5b6134e68c828d016133b3565b915080935050809150509295985092959850929598565b634e487b7160e01b5f52601160045260245ffd5b5f8161351f5761351f6134fd565b505f190190565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60018201613573576135736134fd565b5060010190565b5f6020828403121561358a575f5ffd5b5051919050565b803563ffffffff811681146117fb575f5ffd5b5f602082840312156135b4575f5ffd5b6124e382613591565b80820180821115610bf057610bf06134fd565b84815260a0810160208201855f5b600281101561360b5763ffffffff6135f583613591565b16835260209283019291909101906001016135de565b50505060608201939093526080015292915050565b805180151581146117fb575f5ffd5b5f6020828403121561363f575f5ffd5b6124e382613620565b604080825283549082018190525f8481526020812090916060840190835b8181101561368d5783546001600160a01b0316835260019384019360209093019201613666565b5050838103602080860191909152855180835291810192508501905f5b818110156136c85782518452602093840193909201916001016136aa565b50919695505050505050565b6040516101e081016001600160401b03811182821017156136f7576136f7613526565b60405290565b604051601f8201601f191681016001600160401b038111828210171561372557613725613526565b604052919050565b5f6001600160401b0382111561374557613745613526565b50601f01601f191660200190565b5f82601f830112613762575f5ffd5b81356001600160401b0381111561377b5761377b613526565b8060051b61378b602082016136fd565b918252602081850181019290810190868411156137a6575f5ffd5b6020860192505b838310156137c85782358252602092830192909101906137ad565b9695505050505050565b5f5f604083850312156137e3575f5ffd5b82356001600160401b038111156137f8575f5ffd5b8301601f81018513613808575f5ffd5b803561381b6138168261372d565b6136fd565b81815286602083850101111561382f575f5ffd5b816020840160208301375f6020838301015280945050505060208301356001600160401b0381111561385f575f5ffd5b61386b85828601613753565b9150509250929050565b81810381811115610bf057610bf06134fd565b8051600481106117fb575f5ffd5b5f82601f8301126138a5575f5ffd5b604080519081016001600160401b03811182821017156138c7576138c7613526565b80604052508060408401858111156138dd575f5ffd5b845b818110156138f75780518352602092830192016138df565b509195945050505050565b80516117fb81613228565b8051600281106117fb575f5ffd5b5f82601f83011261392a575f5ffd5b81516139386138168261372d565b81815284602083860101111561394c575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215613978575f5ffd5b81516001600160401b0381111561398d575f5ffd5b8201610200818503121561399f575f5ffd5b6139a76136d4565b815181526139b760208301613888565b6020820152604082810151908201526139d38560608401613896565b606082015260a082015160808201526139ee60c08301613902565b60a08201526139ff60e0830161390d565b60c08201526101008201516001600160401b03811115613a1d575f5ffd5b613a298682850161391b565b60e083015250613a3c6101208301613902565b610100820152613a4f6101408301613902565b61012082015261016082810151610140830152610180830151908201526101a08201516001600160401b03811115613a85575f5ffd5b613a918682850161391b565b61018083015250613aa56101c08301613902565b6101a0820152613ab86101e08301613620565b6101c0820152949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f613b01604083018688613ac6565b8281036020840152613b14818587613ac6565b979650505050505050565b606080825281018690525f8760808301825b89811015613b61578235613b4481613228565b6001600160a01b0316825260209283019290910190600101613b31565b508381036020850152613b7581888a613ac6565b9150508281036040840152613b8b818587613ac6565b9998505050505050505050565b6020808252602a908201527f4c617a79494d543a206c656166206d757374206265203c20534e41524b5f53436040820152691053105497d19251531160b21b606082015260800190565b60ff8181168382160190811115610bf057610bf06134fd565b64ffffffffff8181168382160190811115610bf057610bf06134fd565b6040810181835f5b6002811015613c3f578151835260209283019290910190600101613c20565b50505092915050565b64ffffffffff8281168282160390811115610bf057610bf06134fd565b5f82613c7f57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526023908201527f4c617a79494d543a206465707468206d757374206265203c3d204d41585f44456040820152620a0a8960eb1b606082015260800190565b6001815b6001841115610ea157808504811115613ce657613ce66134fd565b6001841615613cf457908102905b60019390931c928002613ccb565b5f82613d1057506001610bf0565b81613d1c57505f610bf0565b8160018114613d325760028114613d3c57613d6e565b6001915050610bf0565b60ff841115613d4d57613d4d6134fd565b6001841b915064ffffffffff821115613d6857613d686134fd565b50610bf0565b5060208310610133831016604e8410600b8410161715613da6575081810a64ffffffffff811115613da157613da16134fd565b610bf0565b613db664ffffffffff8484613cc7565b8064ffffffffff04821115613dcd57613dcd6134fd565b029392505050565b5f6124e364ffffffffff841664ffffffffff8416613d02565b64ffffffffff8181168382160290811690818114613e0e57613e0e6134fd565b509291505056fea164736f6c634300081c000a", - "deployedBytecode": "0x608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80639f0f874a11610135578063e59e4695116100b4578063f26ef74e11610079578063f26ef74e14610571578063f2fde38b14610584578063f379b0df14610597578063f52fd803146105d1578063f6fc05d514610643575f5ffd5b8063e59e469514610516578063e6745e1314610529578063e82f3b701461053c578063ebf0c7171461054f578063f165053614610557575f5ffd5b8063c3a0ec30116100fa578063c3a0ec30146104ae578063ca2869a0146104bf578063cd6dc687146104de578063da881e5a146104f1578063dbb06c9314610504575f5ffd5b80639f0f874a1461044d578063a016493014610456578063a8a4d69b14610469578063bff232c11461047c578063c2b40ae41461048f575f5ffd5b8063715018a6116101c15780638d1ddfb1116101865780638d1ddfb1146103cd5780638da5cb5b146103e35780638e5ce3ad146103eb5780639015d371146103fe5780639a7a2ffc14610411575f5ffd5b8063715018a6146103465780637c92f5241461034e578063858142431461037b5780638a78bb151461039b5780638cb89ecb146103ae575f5ffd5b80632e7b716d116102075780632e7b716d146102d85780634d6861a6146102eb57806350e6d94c146102fe5780635d5047761461032057806370e36bbe14610333575f5ffd5b8063096b810a146102435780630f3e34121461025857806317d611201461026b5780632800d82914610294578063291a691b146102b5575b5f5ffd5b61025661025136600461323c565b61064c565b005b610256610266366004613257565b610798565b61027e610279366004613257565b6107db565b60405161028b919061326e565b60405180910390f35b6102a76102a2366004613257565b61091d565b60405190815260200161028b565b6102c86102c33660046132b9565b610969565b604051901515815260200161028b565b6102c86102e636600461323c565b610b43565b6102c86102f9366004613257565b610bf6565b6102c861030c36600461323c565b60066020525f908152604090205460ff1681565b6102c861032e3660046132f2565b610c35565b61025661034136600461323c565b610c79565b610256610cef565b61036161035c366004613320565b610d02565b6040805192835263ffffffff90911660208301520161028b565b60015461038e906001600160a01b031681565b60405161028b9190613355565b6102566103a936600461323c565b610ea9565b6102a76103bc366004613257565b60096020525f908152604090205481565b600454600160281b900464ffffffffff166102a7565b61038e610fe7565b600b5461038e906001600160a01b031681565b6102c861040c36600461323c565b611015565b61043761041f36600461323c565b60076020525f908152604090205464ffffffffff1681565b60405164ffffffffff909116815260200161028b565b6102a760035481565b61027e610464366004613257565b611032565b6102c86104773660046132f2565b6110c8565b61025661048a36600461323c565b61110c565b6102a761049d366004613257565b60086020525f908152604090205481565b6001546001600160a01b031661038e565b6102a76104cd366004613257565b5f9081526008602052604090205490565b6102566104ec366004613369565b61115d565b6102c86104ff366004613257565b6112ba565b5f5461038e906001600160a01b031681565b61025661052436600461323c565b611594565b610256610537366004613393565b61160c565b6102a761054a366004613257565b6117cf565b6102a7611800565b61055f601481565b60405160ff909116815260200161028b565b61025661057f3660046133f7565b611812565b61025661059236600461323c565b611b0c565b6004546105b39064ffffffffff80821691600160281b90041682565b6040805164ffffffffff93841681529290911660208301520161028b565b6106146105df366004613257565b5f908152600a6020819052604090912090810154600590910154909163ffffffff80831692600160201b900416908284101590565b60405161028b949392919093845263ffffffff9283166020850152911660408301521515606082015260800190565b6102a760025481565b610654610fe7565b6001600160a01b0316336001600160a01b0316148061067d57506001546001600160a01b031633145b61069a57604051632864c4e160e01b815260040160405180910390fd5b6106a381611015565b81906106cc576040516381e5828960e01b81526004016106c39190613355565b60405180910390fd5b506001600160a01b0381165f9081526007602052604081205464ffffffffff16906106fa9060049083611b46565b6001600160a01b0382165f908152600660205260408120805460ff19169055600280549161072783613511565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f8c008e3835f6c79bfcdb89f0f6ca8705e0b01049ee84a90b0e4da1c7ba9405d5906060015b60405180910390a25050565b6107a0611de8565b60038190556040518181527fbe772dc189863d512fa01e489c8eac204975aef1a8662d8b5a333804b5207ab79060200160405180910390a150565b5f818152600a602081905260408220600681015491810154606093919291816001600160401b0381111561081157610811613526565b60405190808252806020026020018201604052801561083a578160200160208202803683370190505b5090505f805b84811015610911576001866009015f8860060184815481106108645761086461354e565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205460ff16600281111561089c5761089c61353a565b03610909578560060181815481106108b6576108b661354e565b905f5260205f20015f9054906101000a90046001600160a01b03168383815181106108e3576108e361354e565b6001600160a01b03909216602092830291909101909101528161090581613562565b9250505b600101610840565b50909695505050505050565b5f818152600a6020526040812081815460ff1660038111156109415761094161353a565b0361095f57604051630d4c1d9760e41b815260040160405180910390fd5b6003015492915050565b5f80546001600160a01b031633146109945760405163e4c2a7eb60e01b815260040160405180910390fd5b5f848152600a6020526040812090815460ff1660038111156109b8576109b861353a565b146109d6576040516374ff462560e11b815260040160405180910390fd5b60015460408051630cc37d8f60e11b815290515f926001600160a01b031691631986fb1e9160048083019260209291908290030181865afa158015610a1d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a41919061357a565b905080610a5460408601602087016135a4565b63ffffffff161115610a6c60408601602087016135a4565b829091610a9a576040516344ec930f60e01b815263ffffffff909216600483015260248201526044016106c3565b5050815460ff1916600190811783558201859055436002830155600354610ac190426135bd565b6003830155610ad560058301856002613173565b50610ade611800565b5f87815260086020526040908190209190915560028301546003840154915188927f381d281d32f95ef8fe4e5f3b263ea6a32d03d331e1a141ae1da996dc02a7a17092610b2f928a928a92916135d0565b60405180910390a250600195945050505050565b5f610b4d82611015565b610b5857505f919050565b6001546001600160a01b0316610b81576040516350ca893360e01b815260040160405180910390fd5b600154604051639f8a13d760e01b81526001600160a01b0390911690639f8a13d790610bb1908590600401613355565b602060405180830381865afa158015610bcc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf0919061362f565b92915050565b5f818152600a602052604081206001815460ff166003811115610c1b57610c1b61353a565b14610c2857505f92915050565b6003015442111592915050565b5f60015f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff166002811115610c7157610c7161353a565b149392505050565b610c81611de8565b6001600160a01b038116610ca85760405163d92e233d60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b038316908117825560405190917f2c8267accd82e977550ed2349c73311183cd22e306347be4453c8d130995e3c991a250565b610cf7611de8565b610d005f611e1a565b565b600b545f9081906001600160a01b03163314610d315760405163fcef374960e01b815260040160405180910390fd5b5f858152600a602052604090206002815460ff166003811115610d5657610d5661353a565b14610d7457604051634f4b461f60e11b815260040160405180910390fd5b60058101546001600160a01b0386165f90815260098301602052604090205463ffffffff909116925060019060ff166002811115610db457610db461353a565b14610dc457600a01549150610ea1565b6001600160a01b0385165f9081526009820160205260408120805460ff19166002179055600a8201805491610df883613511565b919050555080600a01549250846001600160a01b0316867f6c783b92374361b4d6efaf29673b89437ee969bb3c9d2d5d86b143ad5447b8498686604051610e49929190918252602082015260400190565b60405180910390a36040805184815263ffffffff84166020820181905285101591810182905287907f119cb11dd0a68c257d6dc9b06dcb37dd422ce276eb8bf3cd0b7079a116b8e2989060600160405180910390a250505b935093915050565b610eb1610fe7565b6001600160a01b0316336001600160a01b03161480610eda57506001546001600160a01b031633145b610ef757604051632864c4e160e01b815260040160405180910390fd5b610f0081611015565b610fe45760048054600160281b900464ffffffffff1690610f2a906001600160a01b038416611e8a565b6001600160a01b0382165f908152600660209081526040808320805460ff1916600117905560079091528120805464ffffffffff841664ffffffffff199091161790556002805491610f7b83613562565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f3318d261fe14a5761d2d1e21555652f623d2134c430a9883c9ad6e958bb0db539060600161078c565b50565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b03165f9081526006602052604090205460ff1690565b5f818152600a60205260409020600481015460609190611065576040516322e679e360e11b815260040160405180910390fd5b806006018054806020026020016040519081016040528092919081815260200182805480156110bb57602002820191905f5260205f20905b81546001600160a01b0316815260019091019060200180831161109d575b5050505050915050919050565b5f805f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff1660028111156111035761110361353a565b14159392505050565b611114611de8565b6001600160a01b03811661113b5760405163d92e233d60e01b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b5f611166612060565b805490915060ff600160401b82041615906001600160401b03165f8115801561118c5750825b90505f826001600160401b031660011480156111a75750303b155b9050811580156111b5575080155b156111d35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156111fd57845460ff60401b1916600160401b1785555b6001600160a01b0387166112245760405163d92e233d60e01b815260040160405180910390fd5b61122d33612088565b61123960046014612099565b61124286610798565b61124a610fe7565b6001600160a01b0316876001600160a01b03161461126b5761126b87611b0c565b83156112b157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f818152600a6020526040812081815460ff1660038111156112de576112de61353a565b036112fc57604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156113145761131461353a565b1461133257604051631860f69960e31b815260040160405180910390fd5b8060030154421161135657604051632f021e8d60e11b815260040160405180910390fd5b60058101546006820154600160201b90910463ffffffff1611158061143b578154600360ff199091161782556006820154600583015460408051928352600160201b90910463ffffffff16602083015285917fecc4a9fb7e28d074cba7f5b227e9b5827823c850a385539b9a2f98a08f8c203d910160405180910390a25f54604051635d968dc160e11b815260048101869052600260248201526001600160a01b039091169063bb2d1b82906044015f604051808303815f87803b15801561141c575f5ffd5b505af115801561142e573d5f5f3e3d5ffd5b505f979650505050505050565b815460ff191660021782556006820154600a83018190555f816001600160401b0381111561146b5761146b613526565b604051908082528060200260200182016040528015611494578160200160208202803683370190505b5090505f5b8281101561150657846008015f8660060183815481106114bb576114bb61354e565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205482518390839081106114f3576114f361354e565b6020908102919091010152600101611499565b505f54604051631f3ea75d60e21b8152600481018890526001600160a01b0390911690637cfa9d74906024015f604051808303815f87803b158015611549575f5ffd5b505af115801561155b573d5f5f3e3d5ffd5b50505050857f4f1f5b329c741a8ba15e9645e301061294d0c1fdd455448ffd5e76ff255929d78560060183604051610b2f929190613648565b61159c611de8565b6001600160a01b0381166115c35760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a7905f90a250565b5f828152600a6020526040812090815460ff1660038111156116305761163061353a565b0361164e57604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156116665761166661353a565b1461168457604051631860f69960e31b815260040160405180910390fd5b80600301544211156116a957604051639a19114d60e01b815260040160405180910390fd5b335f90815260078201602052604090205460ff16156116db5760405163257309f160e11b815260040160405180910390fd5b6116e433610b43565b6117015760405163149fbcfd60e11b815260040160405180910390fd5b61170c338385612118565b6001810154604080516bffffffffffffffffffffffff193360601b16602080830191909152603482018690526054820187905260748083019490945282518083039094018452609490910190915281519101205f90335f8181526007850160205260409020805460ff1916600117905590915061178b908390836122e9565b506040805184815260208101839052339186917f52999628fb1cb05707e842278833b22e511f11746202cecdf221968b0b89e8bd910160405180910390a350505050565b5f81815260096020526040902054806117fb576040516322e679e360e11b815260040160405180910390fd5b919050565b5f61180d600460146124ea565b905090565b61181a611de8565b5f898152600a602052604090206002815460ff16600381111561183f5761183f61353a565b1461185d57604051634f4b461f60e11b815260040160405180910390fd5b6004810154156118805760405163632a22bb60e01b815260040160405180910390fd5b600681015488146118c95760405162461bcd60e51b815260206004820152601360248201527209cdec8ca40c6deeadce840dad2e6dac2e8c6d606b1b60448201526064016106c3565b5f6118d6858701876137d2565b9150505f8151116119205760405162461bcd60e51b815260206004820152601460248201527343353a206e6f207075626c696320696e7075747360601b60448201526064016106c3565b5f81600183516119309190613875565b815181106119405761194061354e565b602002602001015190505f5f5f9054906101000a90046001600160a01b03166001600160a01b031663406ed35c8e6040518263ffffffff1660e01b815260040161198c91815260200190565b5f60405180830381865afa1580156119a6573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526119cd9190810190613968565b610120810151604051637bf41d7760e11b81529192506001600160a01b03169063f7e83aee90611a07908b908b908b908b90600401613aee565b602060405180830381865afa158015611a22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a46919061357a565b5060048085018390555f8e815260096020526040808220859055905490516340a3b76160e11b81529182018f9052602482018490526001600160a01b0316906381476ec2906044015f604051808303815f87803b158015611aa5575f5ffd5b505af1158015611ab7573d5f5f3e3d5ffd5b505050508c7f49ac1dd411942113d1c5e6799c6379ce341afe85a4175fb562cf2a5fb886c27d8d8d8d8d8d8d604051611af596959493929190613b1f565b60405180910390a250505050505050505050505050565b611b14611de8565b6001600160a01b038116611b3d575f604051631e4fbdf760e01b81526004016106c39190613355565b610fe481611e1a565b7f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611b855760405162461bcd60e51b81526004016106c390613b98565b825464ffffffffff600160281b90910481169082168111611be35760405162461bcd60e51b815260206004820152601860248201527713185e9e5253550e881b195859881b5d5cdd08195e1a5cdd60421b60448201526064016106c3565b825f5b81866001015f611bf684886125e3565b64ffffffffff1681526020019081526020015f20819055505f816001611c1c9190613be2565b60ff168464ffffffffff16901c64ffffffffff16905060018564ffffffffff16901c64ffffffffff168111611c515750611de0565b600185165f03611d18575f611c7083611c6b886001613bfb565b6125e3565b60408051808201825286815264ffffffffff83165f90815260018c0160209081529083902054908201529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611cd191600401613c18565b602060405180830381865af4158015611cec573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d10919061357a565b935050611dcc565b5f611d2883611c6b600189613c48565b60408051808201825264ffffffffff83165f90815260018c0160209081529083902054825281018790529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611d8991600401613c18565b602060405180830381865af4158015611da4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc8919061357a565b9350505b50647fffffffff600194851c169301611be6565b505050505050565b33611df1610fe7565b6001600160a01b031614610d00573360405163118cdaa760e01b81526004016106c39190613355565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b8154600160281b900464ffffffffff167f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611ed95760405162461bcd60e51b81526004016106c390613b98565b825464ffffffffff90811690821610611f2c5760405162461bcd60e51b815260206004820152601560248201527413185e9e5253550e881d1c9959481a5cc8199d5b1b605a1b60448201526064016106c3565b611f37816001613bfb565b835464ffffffffff91909116600160281b0269ffffffffff000000000019909116178355815f5b81856001015f611f6e84876125e3565b64ffffffffff16815260208101919091526040015f20556001831615612059575f611f9e82611c6b600187613c48565b60408051808201825264ffffffffff83165f90815260018a0160209081529083902054825281018690529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611fff91600401613c18565b602060405180830381865af415801561201a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061203e919061357a565b647fffffffff600195861c1694909350919091019050611f5e565b5050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610bf0565b612090612600565b610fe481612625565b602060ff821611156120e75760405162461bcd60e51b81526020600482015260176024820152764c617a79494d543a205472656520746f6f206c6172676560481b60448201526064016106c3565b6120f8600160ff831681901b613875565b825469ffffffffffffffffffff191664ffffffffff919091161790915550565b5f82116121385760405163aeaddff160e01b815260040160405180910390fd5b6001546001600160a01b0316612161576040516350ca893360e01b815260040160405180910390fd5b5f818152600a602052604081206001805460028301549293926001600160a01b039091169163bb03bd7191889161219791613875565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa1580156121de573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612202919061357a565b90505f60015f9054906101000a90046001600160a01b03166001600160a01b0316631209b1f66040518163ffffffff1660e01b8152600401602060405180830381865afa158015612255573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612279919061357a565b90505f811161229b5760405163aeaddff160e01b815260040160405180910390fd5b5f6122a68284613c65565b90505f81116122c85760405163149fbcfd60e11b815260040160405180910390fd5b808611156112b15760405163aeaddff160e01b815260040160405180910390fd5b60058301546006840180545f92600160201b900463ffffffff169081111561236757508054600180820183555f928352602080842090920180546001600160a01b0319166001600160a01b03881690811790915583526008870182526040808420869055600988019092529120805460ff19168217905590506124e3565b5f5f90505f876008015f855f815481106123835761238361354e565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905060015b845481101561240b575f896008015f8784815481106123cd576123cd61354e565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905082811115612402578092508193505b506001016123ac565b5080861061241f575f9450505050506124e3565b5f886009015f8685815481106124375761243761354e565b5f9182526020808320909101546001600160a01b031683528201929092526040019020805460ff191660018360028111156124745761247461353a565b02179055508684838154811061248c5761248c61354e565b5f91825260208083209190910180546001600160a01b0319166001600160a01b03948516179055918916815260088a018252604080822089905560098b0190925220805460ff191660019081179091559450505050505b9392505050565b5f5f8260ff161161253d5760405162461bcd60e51b815260206004820152601a60248201527f4c617a79494d543a206465707468206d757374206265203e203000000000000060448201526064016106c3565b602060ff831611156125615760405162461bcd60e51b81526004016106c390613c84565b8254600160281b900464ffffffffff168061258060ff85166002613dd5565b64ffffffffff1610156125d05760405162461bcd60e51b8152602060048201526018602482015277098c2f4f2929aa87440c2dac4d2ceeadeeae640c8cae0e8d60431b60448201526064016106c3565b6125db84828561262d565b949350505050565b5f816125f660ff851663ffffffff613dee565b6124e39190613bfb565b6126086126f5565b610d0057604051631afcd79f60e31b815260040160405180910390fd5b611b14612600565b5f602060ff831611156126525760405162461bcd60e51b81526004016106c390613c84565b8264ffffffffff165f03612670576126698261270e565b90506124e3565b5f61267c836001613be2565b60ff166001600160401b0381111561269657612696613526565b6040519080825280602002602001820160405280156126bf578160200160208202803683370190505b5090506126ce85858584612da8565b808360ff16815181106126e3576126e361354e565b60200260200101519150509392505050565b5f6126fe612060565b54600160401b900460ff16919050565b5f8160ff165f0361272057505f919050565b8160ff1660010361275257507f2098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864919050565b8160ff1660020361278457507f1069673dcdb12263df301a6ff584a7ec261a44cb9dc68df067a4774460b1f1e1919050565b8160ff166003036127b657507f18f43331537ee2af2e3d758d50f72106467c6eea50371dd528d57eb2b856d238919050565b8160ff166004036127e857507f07f9d837cb17b0d36320ffe93ba52345f1b728571a568265caac97559dbc952a919050565b8160ff1660050361281a57507f2b94cf5e8746b3f5c9631f4c5df32907a699c58c94b2ad4d7b5cec1639183f55919050565b8160ff1660060361284c57507f2dee93c5a666459646ea7d22cca9e1bcfed71e6951b953611d11dda32ea09d78919050565b8160ff1660070361287e57507f078295e5a22b84e982cf601eb639597b8b0515a88cb5ac7fa8a4aabe3c87349d919050565b8160ff166008036128b057507f2fa5e5f18f6027a6501bec864564472a616b2e274a41211a444cbe3a99f3cc61919050565b8160ff166009036128e257507f0e884376d0d8fd21ecb780389e941f66e45e7acce3e228ab3e2156a614fcd747919050565b8160ff16600a0361291457507f1b7201da72494f1e28717ad1a52eb469f95892f957713533de6175e5da190af2919050565b8160ff16600b0361294657507f1f8d8822725e36385200c0b201249819a6e6e1e4650808b5bebc6bface7d7636919050565b8160ff16600c0361297857507f2c5d82f66c914bafb9701589ba8cfcfb6162b0a12acf88a8d0879a0471b5f85a919050565b8160ff16600d036129aa57507f14c54148a0940bb820957f5adf3fa1134ef5c4aaa113f4646458f270e0bfbfd0919050565b8160ff16600e036129dc57507f190d33b12f986f961e10c0ee44d8b9af11be25588cad89d416118e4bf4ebe80c919050565b8160ff16600f03612a0e57507f22f98aa9ce704152ac17354914ad73ed1167ae6596af510aa5b3649325e06c92919050565b8160ff16601003612a4057507f2a7c7c9b6ce5880b9f6f228d72bf6a575a526f29c66ecceef8b753d38bba7323919050565b8160ff16601103612a7257507f2e8186e558698ec1c67af9c14d463ffc470043c9c2988b954d75dd643f36b992919050565b8160ff16601203612aa457507f0f57c5571e9a4eab49e2c8cf050dae948aef6ead647392273546249d1c1ff10f919050565b8160ff16601303612ad657507f1830ee67b5fb554ad5f63d4388800e1cfe78e310697d46e43c9ce36134f72cca919050565b8160ff16601403612b0857507f2134e76ac5d21aab186c2be1dd8f84ee880a1e46eaf712f9d371b6df22191f3e919050565b8160ff16601503612b3a57507f19df90ec844ebc4ffeebd866f33859b0c051d8c958ee3aa88f8f8df3db91a5b1919050565b8160ff16601603612b6c57507f18cca2a66b5c0787981e69aefd84852d74af0e93ef4912b4648c05f722efe52b919050565b8160ff16601703612b9e57507f2388909415230d1b4d1304d2d54f473a628338f2efad83fadf05644549d2538d919050565b8160ff16601803612bd057507f27171fb4a97b6cc0e9e8f543b5294de866a2af2c9c8d0b1d96e673e4529ed540919050565b8160ff16601903612c0257507f2ff6650540f629fd5711a0bc74fc0d28dcb230b9392583e5f8d59696dde6ae21919050565b8160ff16601a03612c3457507f120c58f143d491e95902f7f5277778a2e0ad5168f6add75669932630ce611518919050565b8160ff16601b03612c6657507f1f21feb70d3f21b07bf853d5e5db03071ec495a0a565a21da2d665d279483795919050565b8160ff16601c03612c9857507f24be905fa71335e14c638cc0f66a8623a826e768068a9e968bb1a1dde18a72d2919050565b8160ff16601d03612cca57507f0f8666b62ed17491c50ceadead57d4cd597ef3821d65c328744c74e553dac26d919050565b8160ff16601e03612cfc57507f0918d46bf52d98b034413f4a1a1c41594e7a7a3f6ae08cb43d1a2a230e1959ef919050565b8160ff16601f03612d2e57507f1bbeb01b4c479ecde76917645e404dfa2e26f90d0afc5a65128513ad375c5ff2919050565b8160ff16602003612d6057507f2f68a1c58e257e42a17a6c61dff5551ed560b9922ab119d5ac8e184c9734ead9919050565b60405162461bcd60e51b815260206004820152601e60248201527f4c617a79494d543a2064656661756c745a65726f2062616420696e646578000060448201526064016106c3565b602060ff83161115612dcc5760405162461bcd60e51b81526004016106c390613c84565b5f8364ffffffffff1611612e305760405162461bcd60e51b815260206004820152602560248201527f4c617a79494d543a206e756d626572206f66206c6561766573206d7573742062604482015264065203e20360dc1b60648201526084016106c3565b5f612e3c600185613c48565b9050600181165f03612e8f57846001015f612e575f846125e3565b64ffffffffff1681526020019081526020015f2054825f81518110612e7e57612e7e61354e565b602002602001018181525050612eb7565b612e985f61270e565b825f81518110612eaa57612eaa61354e565b6020026020010181815250505b5f5b8360ff168160ff161015611de057600182165f03612faf5773__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280868560ff1681518110612f0b57612f0b61354e565b60200260200101518152602001612f218561270e565b8152506040518263ffffffff1660e01b8152600401612f409190613c18565b602060405180830381865af4158015612f5b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f7f919061357a565b83612f8b836001613be2565b60ff1681518110612f9e57612f9e61354e565b602002602001018181525050613160565b5f612fbb826001613be2565b60ff168664ffffffffff16901c64ffffffffff16905060018364ffffffffff16901c64ffffffffff1681111561305d575f876001015f6130128560016130019190613be2565b60018864ffffffffff16901c6125e3565b64ffffffffff1681526020019081526020015f2054905080858460016130389190613be2565b60ff168151811061304b5761304b61354e565b6020026020010181815250505061315e565b5f876001015f61307485600188611c6b9190613c48565b64ffffffffff1681526020019081526020015f2054905073__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280848152602001888760ff16815181106130cb576130cb61354e565b60200260200101518152506040518263ffffffff1660e01b81526004016130f29190613c18565b602060405180830381865af415801561310d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613131919061357a565b8561313d856001613be2565b60ff16815181106131505761315061354e565b602002602001018181525050505b505b647fffffffff600192831c169101612eb9565b600183019183908215613204579160200282015f5b838211156131d257833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff1602179055509260200192600401602081600301049283019260010302613188565b80156132025782816101000a81549063ffffffff02191690556004016020816003010492830192600103026131d2565b505b50613210929150613214565b5090565b5b80821115613210575f8155600101613215565b6001600160a01b0381168114610fe4575f5ffd5b5f6020828403121561324c575f5ffd5b81356124e381613228565b5f60208284031215613267575f5ffd5b5035919050565b602080825282518282018190525f918401906040840190835b818110156132ae5783516001600160a01b0316835260209384019390920191600101613287565b509095945050505050565b5f5f5f608084860312156132cb575f5ffd5b8335925060208401359150608084018510156132e5575f5ffd5b6040840190509250925092565b5f5f60408385031215613303575f5ffd5b82359150602083013561331581613228565b809150509250929050565b5f5f5f60608486031215613332575f5ffd5b83359250602084013561334481613228565b929592945050506040919091013590565b6001600160a01b0391909116815260200190565b5f5f6040838503121561337a575f5ffd5b823561338581613228565b946020939093013593505050565b5f5f604083850312156133a4575f5ffd5b50508035926020909101359150565b5f5f83601f8401126133c3575f5ffd5b5081356001600160401b038111156133d9575f5ffd5b6020830191508360208285010111156133f0575f5ffd5b9250929050565b5f5f5f5f5f5f5f5f5f60a08a8c03121561340f575f5ffd5b8935985060208a01356001600160401b0381111561342b575f5ffd5b8a01601f81018c1361343b575f5ffd5b80356001600160401b03811115613450575f5ffd5b8c60208260051b8401011115613464575f5ffd5b6020919091019850965060408a01356001600160401b03811115613486575f5ffd5b6134928c828d016133b3565b90975095505060608a01356001600160401b038111156134b0575f5ffd5b6134bc8c828d016133b3565b90955093505060808a01356001600160401b038111156134da575f5ffd5b6134e68c828d016133b3565b915080935050809150509295985092959850929598565b634e487b7160e01b5f52601160045260245ffd5b5f8161351f5761351f6134fd565b505f190190565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60018201613573576135736134fd565b5060010190565b5f6020828403121561358a575f5ffd5b5051919050565b803563ffffffff811681146117fb575f5ffd5b5f602082840312156135b4575f5ffd5b6124e382613591565b80820180821115610bf057610bf06134fd565b84815260a0810160208201855f5b600281101561360b5763ffffffff6135f583613591565b16835260209283019291909101906001016135de565b50505060608201939093526080015292915050565b805180151581146117fb575f5ffd5b5f6020828403121561363f575f5ffd5b6124e382613620565b604080825283549082018190525f8481526020812090916060840190835b8181101561368d5783546001600160a01b0316835260019384019360209093019201613666565b5050838103602080860191909152855180835291810192508501905f5b818110156136c85782518452602093840193909201916001016136aa565b50919695505050505050565b6040516101e081016001600160401b03811182821017156136f7576136f7613526565b60405290565b604051601f8201601f191681016001600160401b038111828210171561372557613725613526565b604052919050565b5f6001600160401b0382111561374557613745613526565b50601f01601f191660200190565b5f82601f830112613762575f5ffd5b81356001600160401b0381111561377b5761377b613526565b8060051b61378b602082016136fd565b918252602081850181019290810190868411156137a6575f5ffd5b6020860192505b838310156137c85782358252602092830192909101906137ad565b9695505050505050565b5f5f604083850312156137e3575f5ffd5b82356001600160401b038111156137f8575f5ffd5b8301601f81018513613808575f5ffd5b803561381b6138168261372d565b6136fd565b81815286602083850101111561382f575f5ffd5b816020840160208301375f6020838301015280945050505060208301356001600160401b0381111561385f575f5ffd5b61386b85828601613753565b9150509250929050565b81810381811115610bf057610bf06134fd565b8051600481106117fb575f5ffd5b5f82601f8301126138a5575f5ffd5b604080519081016001600160401b03811182821017156138c7576138c7613526565b80604052508060408401858111156138dd575f5ffd5b845b818110156138f75780518352602092830192016138df565b509195945050505050565b80516117fb81613228565b8051600281106117fb575f5ffd5b5f82601f83011261392a575f5ffd5b81516139386138168261372d565b81815284602083860101111561394c575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215613978575f5ffd5b81516001600160401b0381111561398d575f5ffd5b8201610200818503121561399f575f5ffd5b6139a76136d4565b815181526139b760208301613888565b6020820152604082810151908201526139d38560608401613896565b606082015260a082015160808201526139ee60c08301613902565b60a08201526139ff60e0830161390d565b60c08201526101008201516001600160401b03811115613a1d575f5ffd5b613a298682850161391b565b60e083015250613a3c6101208301613902565b610100820152613a4f6101408301613902565b61012082015261016082810151610140830152610180830151908201526101a08201516001600160401b03811115613a85575f5ffd5b613a918682850161391b565b61018083015250613aa56101c08301613902565b6101a0820152613ab86101e08301613620565b6101c0820152949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f613b01604083018688613ac6565b8281036020840152613b14818587613ac6565b979650505050505050565b606080825281018690525f8760808301825b89811015613b61578235613b4481613228565b6001600160a01b0316825260209283019290910190600101613b31565b508381036020850152613b7581888a613ac6565b9150508281036040840152613b8b818587613ac6565b9998505050505050505050565b6020808252602a908201527f4c617a79494d543a206c656166206d757374206265203c20534e41524b5f53436040820152691053105497d19251531160b21b606082015260800190565b60ff8181168382160190811115610bf057610bf06134fd565b64ffffffffff8181168382160190811115610bf057610bf06134fd565b6040810181835f5b6002811015613c3f578151835260209283019290910190600101613c20565b50505092915050565b64ffffffffff8281168282160390811115610bf057610bf06134fd565b5f82613c7f57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526023908201527f4c617a79494d543a206465707468206d757374206265203c3d204d41585f44456040820152620a0a8960eb1b606082015260800190565b6001815b6001841115610ea157808504811115613ce657613ce66134fd565b6001841615613cf457908102905b60019390931c928002613ccb565b5f82613d1057506001610bf0565b81613d1c57505f610bf0565b8160018114613d325760028114613d3c57613d6e565b6001915050610bf0565b60ff841115613d4d57613d4d6134fd565b6001841b915064ffffffffff821115613d6857613d686134fd565b50610bf0565b5060208310610133831016604e8410600b8410161715613da6575081810a64ffffffffff811115613da157613da16134fd565b610bf0565b613db664ffffffffff8484613cc7565b8064ffffffffff04821115613dcd57613dcd6134fd565b029392505050565b5f6124e364ffffffffff841664ffffffffff8416613d02565b64ffffffffff8181168382160290811690818114613e0e57613e0e6134fd565b509291505056fea164736f6c634300081c000a", + "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613ec6806100d65f395ff3fe608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80639f0f874a11610135578063e59e4695116100b4578063f26ef74e11610079578063f26ef74e1461057f578063f2fde38b14610592578063f379b0df146105a5578063f52fd803146105df578063f6fc05d514610651575f5ffd5b8063e59e469514610524578063e6745e1314610537578063e82f3b701461054a578063ebf0c7171461055d578063f165053614610565575f5ffd5b8063c3a0ec30116100fa578063c3a0ec30146104bc578063ca2869a0146104cd578063cd6dc687146104ec578063da881e5a146104ff578063dbb06c9314610512575f5ffd5b80639f0f874a1461044e578063a016493014610457578063a8a4d69b14610477578063bff232c11461048a578063c2b40ae41461049d575f5ffd5b8063715018a6116101c15780638d1ddfb1116101865780638d1ddfb1146103ce5780638da5cb5b146103e45780638e5ce3ad146103ec5780639015d371146103ff5780639a7a2ffc14610412575f5ffd5b8063715018a6146103475780637c92f5241461034f578063858142431461037c5780638a78bb151461039c5780638cb89ecb146103af575f5ffd5b80632e7b716d116102075780632e7b716d146102d95780634d6861a6146102ec57806350e6d94c146102ff5780635d5047761461032157806370e36bbe14610334575f5ffd5b8063096b810a146102435780630f3e34121461025857806317d611201461026b5780632800d82914610295578063291a691b146102b6575b5f5ffd5b6102566102513660046132aa565b61065a565b005b6102566102663660046132c5565b6107a6565b61027e6102793660046132c5565b6107e9565b60405161028c92919061334f565b60405180910390f35b6102a86102a33660046132c5565b610993565b60405190815260200161028c565b6102c96102c436600461337c565b6109df565b604051901515815260200161028c565b6102c96102e73660046132aa565b610bb9565b6102c96102fa3660046132c5565b610c6c565b6102c961030d3660046132aa565b60066020525f908152604090205460ff1681565b6102c961032f3660046133b5565b610cab565b6102566103423660046132aa565b610cef565b610256610d65565b61036261035d3660046133e3565b610d78565b6040805192835263ffffffff90911660208301520161028c565b60015461038f906001600160a01b031681565b60405161028c9190613418565b6102566103aa3660046132aa565b610f1f565b6102a86103bd3660046132c5565b60096020525f908152604090205481565b600454600160281b900464ffffffffff166102a8565b61038f61105d565b600b5461038f906001600160a01b031681565b6102c961040d3660046132aa565b61108b565b6104386104203660046132aa565b60076020525f908152604090205464ffffffffff1681565b60405164ffffffffff909116815260200161028c565b6102a860035481565b61046a6104653660046132c5565b6110a8565b60405161028c919061342c565b6102c96104853660046133b5565b61113e565b6102566104983660046132aa565b611182565b6102a86104ab3660046132c5565b60086020525f908152604090205481565b6001546001600160a01b031661038f565b6102a86104db3660046132c5565b5f9081526008602052604090205490565b6102566104fa36600461343e565b6111d3565b6102c961050d3660046132c5565b611330565b5f5461038f906001600160a01b031681565b6102566105323660046132aa565b61160a565b610256610545366004613468565b611682565b6102a86105583660046132c5565b611845565b6102a8611876565b61056d601481565b60405160ff909116815260200161028c565b61025661058d3660046134cc565b611888565b6102566105a03660046132aa565b611b7a565b6004546105c19064ffffffffff80821691600160281b90041682565b6040805164ffffffffff93841681529290911660208301520161028c565b6106226105ed3660046132c5565b5f908152600a6020819052604090912090810154600590910154909163ffffffff80831692600160201b900416908284101590565b60405161028c949392919093845263ffffffff9283166020850152911660408301521515606082015260800190565b6102a860025481565b61066261105d565b6001600160a01b0316336001600160a01b0316148061068b57506001546001600160a01b031633145b6106a857604051632864c4e160e01b815260040160405180910390fd5b6106b18161108b565b81906106da576040516381e5828960e01b81526004016106d19190613418565b60405180910390fd5b506001600160a01b0381165f9081526007602052604081205464ffffffffff16906107089060049083611bb4565b6001600160a01b0382165f908152600660205260408120805460ff191690556002805491610735836135e6565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f8c008e3835f6c79bfcdb89f0f6ca8705e0b01049ee84a90b0e4da1c7ba9405d5906060015b60405180910390a25050565b6107ae611e56565b60038190556040518181527fbe772dc189863d512fa01e489c8eac204975aef1a8662d8b5a333804b5207ab79060200160405180910390a150565b5f818152600a60208190526040909120600681015491810154606092839291806001600160401b03811115610820576108206135fb565b604051908082528060200260200182016040528015610849578160200160208202803683370190505b509450806001600160401b03811115610864576108646135fb565b60405190808252806020026020018201604052801561088d578160200160208202803683370190505b5093505f805b83811015610989575f8560060182815481106108b1576108b161360f565b5f918252602090912001546001600160a01b0316905060016001600160a01b0382165f90815260098801602052604090205460ff1660028111156108f7576108f7613623565b03610980578088848151811061090f5761090f61360f565b60200260200101906001600160a01b031690816001600160a01b031681525050856008015f826001600160a01b03166001600160a01b031681526020019081526020015f20548784815181106109675761096761360f565b60209081029190910101528261097c81613637565b9350505b50600101610893565b5050505050915091565b5f818152600a6020526040812081815460ff1660038111156109b7576109b7613623565b036109d557604051630d4c1d9760e41b815260040160405180910390fd5b6003015492915050565b5f80546001600160a01b03163314610a0a5760405163e4c2a7eb60e01b815260040160405180910390fd5b5f848152600a6020526040812090815460ff166003811115610a2e57610a2e613623565b14610a4c576040516374ff462560e11b815260040160405180910390fd5b60015460408051630cc37d8f60e11b815290515f926001600160a01b031691631986fb1e9160048083019260209291908290030181865afa158015610a93573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab7919061364f565b905080610aca6040860160208701613679565b63ffffffff161115610ae26040860160208701613679565b829091610b10576040516344ec930f60e01b815263ffffffff909216600483015260248201526044016106d1565b5050815460ff1916600190811783558201859055436002830155600354610b379042613692565b6003830155610b4b600583018560026131e1565b50610b54611876565b5f87815260086020526040908190209190915560028301546003840154915188927f381d281d32f95ef8fe4e5f3b263ea6a32d03d331e1a141ae1da996dc02a7a17092610ba5928a928a92916136a5565b60405180910390a250600195945050505050565b5f610bc38261108b565b610bce57505f919050565b6001546001600160a01b0316610bf7576040516350ca893360e01b815260040160405180910390fd5b600154604051639f8a13d760e01b81526001600160a01b0390911690639f8a13d790610c27908590600401613418565b602060405180830381865afa158015610c42573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c669190613704565b92915050565b5f818152600a602052604081206001815460ff166003811115610c9157610c91613623565b14610c9e57505f92915050565b6003015442111592915050565b5f60015f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff166002811115610ce757610ce7613623565b149392505050565b610cf7611e56565b6001600160a01b038116610d1e5760405163d92e233d60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b038316908117825560405190917f2c8267accd82e977550ed2349c73311183cd22e306347be4453c8d130995e3c991a250565b610d6d611e56565b610d765f611e88565b565b600b545f9081906001600160a01b03163314610da75760405163fcef374960e01b815260040160405180910390fd5b5f858152600a602052604090206002815460ff166003811115610dcc57610dcc613623565b14610dea57604051634f4b461f60e11b815260040160405180910390fd5b60058101546001600160a01b0386165f90815260098301602052604090205463ffffffff909116925060019060ff166002811115610e2a57610e2a613623565b14610e3a57600a01549150610f17565b6001600160a01b0385165f9081526009820160205260408120805460ff19166002179055600a8201805491610e6e836135e6565b919050555080600a01549250846001600160a01b0316867f6c783b92374361b4d6efaf29673b89437ee969bb3c9d2d5d86b143ad5447b8498686604051610ebf929190918252602082015260400190565b60405180910390a36040805184815263ffffffff84166020820181905285101591810182905287907f119cb11dd0a68c257d6dc9b06dcb37dd422ce276eb8bf3cd0b7079a116b8e2989060600160405180910390a250505b935093915050565b610f2761105d565b6001600160a01b0316336001600160a01b03161480610f5057506001546001600160a01b031633145b610f6d57604051632864c4e160e01b815260040160405180910390fd5b610f768161108b565b61105a5760048054600160281b900464ffffffffff1690610fa0906001600160a01b038416611ef8565b6001600160a01b0382165f908152600660209081526040808320805460ff1916600117905560079091528120805464ffffffffff841664ffffffffff199091161790556002805491610ff183613637565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f3318d261fe14a5761d2d1e21555652f623d2134c430a9883c9ad6e958bb0db539060600161079a565b50565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b03165f9081526006602052604090205460ff1690565b5f818152600a602052604090206004810154606091906110db576040516322e679e360e11b815260040160405180910390fd5b8060060180548060200260200160405190810160405280929190818152602001828054801561113157602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311611113575b5050505050915050919050565b5f805f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff16600281111561117957611179613623565b14159392505050565b61118a611e56565b6001600160a01b0381166111b15760405163d92e233d60e01b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6111dc6120ce565b805490915060ff600160401b82041615906001600160401b03165f811580156112025750825b90505f826001600160401b0316600114801561121d5750303b155b90508115801561122b575080155b156112495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561127357845460ff60401b1916600160401b1785555b6001600160a01b03871661129a5760405163d92e233d60e01b815260040160405180910390fd5b6112a3336120f6565b6112af60046014612107565b6112b8866107a6565b6112c061105d565b6001600160a01b0316876001600160a01b0316146112e1576112e187611b7a565b831561132757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f818152600a6020526040812081815460ff16600381111561135457611354613623565b0361137257604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff16600381111561138a5761138a613623565b146113a857604051631860f69960e31b815260040160405180910390fd5b806003015442116113cc57604051632f021e8d60e11b815260040160405180910390fd5b60058101546006820154600160201b90910463ffffffff161115806114b1578154600360ff199091161782556006820154600583015460408051928352600160201b90910463ffffffff16602083015285917fecc4a9fb7e28d074cba7f5b227e9b5827823c850a385539b9a2f98a08f8c203d910160405180910390a25f54604051635d968dc160e11b815260048101869052600260248201526001600160a01b039091169063bb2d1b82906044015f604051808303815f87803b158015611492575f5ffd5b505af11580156114a4573d5f5f3e3d5ffd5b505f979650505050505050565b815460ff191660021782556006820154600a83018190555f816001600160401b038111156114e1576114e16135fb565b60405190808252806020026020018201604052801561150a578160200160208202803683370190505b5090505f5b8281101561157c57846008015f8660060183815481106115315761153161360f565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205482518390839081106115695761156961360f565b602090810291909101015260010161150f565b505f54604051631f3ea75d60e21b8152600481018890526001600160a01b0390911690637cfa9d74906024015f604051808303815f87803b1580156115bf575f5ffd5b505af11580156115d1573d5f5f3e3d5ffd5b50505050857f4f1f5b329c741a8ba15e9645e301061294d0c1fdd455448ffd5e76ff255929d78560060183604051610ba592919061371d565b611612611e56565b6001600160a01b0381166116395760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a7905f90a250565b5f828152600a6020526040812090815460ff1660038111156116a6576116a6613623565b036116c457604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156116dc576116dc613623565b146116fa57604051631860f69960e31b815260040160405180910390fd5b806003015442111561171f57604051639a19114d60e01b815260040160405180910390fd5b335f90815260078201602052604090205460ff16156117515760405163257309f160e11b815260040160405180910390fd5b61175a33610bb9565b6117775760405163149fbcfd60e11b815260040160405180910390fd5b611782338385612186565b6001810154604080516bffffffffffffffffffffffff193360601b16602080830191909152603482018690526054820187905260748083019490945282518083039094018452609490910190915281519101205f90335f8181526007850160205260409020805460ff1916600117905590915061180190839083612357565b506040805184815260208101839052339186917f52999628fb1cb05707e842278833b22e511f11746202cecdf221968b0b89e8bd910160405180910390a350505050565b5f8181526009602052604090205480611871576040516322e679e360e11b815260040160405180910390fd5b919050565b5f61188360046014612558565b905090565b5f898152600a602052604090206002815460ff1660038111156118ad576118ad613623565b146118cb57604051634f4b461f60e11b815260040160405180910390fd5b6004810154156118ee5760405163632a22bb60e01b815260040160405180910390fd5b600681015488146119375760405162461bcd60e51b815260206004820152601360248201527209cdec8ca40c6deeadce840dad2e6dac2e8c6d606b1b60448201526064016106d1565b5f61194485870187613874565b9150505f81511161198e5760405162461bcd60e51b815260206004820152601460248201527343353a206e6f207075626c696320696e7075747360601b60448201526064016106d1565b5f816001835161199e9190613917565b815181106119ae576119ae61360f565b602002602001015190505f5f5f9054906101000a90046001600160a01b03166001600160a01b031663406ed35c8e6040518263ffffffff1660e01b81526004016119fa91815260200190565b5f60405180830381865afa158015611a14573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a3b9190810190613a0c565b610120810151604051637bf41d7760e11b81529192506001600160a01b03169063f7e83aee90611a75908b908b908b908b90600401613b92565b602060405180830381865afa158015611a90573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ab4919061364f565b5060048085018390555f8e815260096020526040808220859055905490516340a3b76160e11b81529182018f9052602482018490526001600160a01b0316906381476ec2906044015f604051808303815f87803b158015611b13575f5ffd5b505af1158015611b25573d5f5f3e3d5ffd5b505050508c7f49ac1dd411942113d1c5e6799c6379ce341afe85a4175fb562cf2a5fb886c27d8d8d8d8d8d8d604051611b6396959493929190613bc3565b60405180910390a250505050505050505050505050565b611b82611e56565b6001600160a01b038116611bab575f604051631e4fbdf760e01b81526004016106d19190613418565b61105a81611e88565b7f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611bf35760405162461bcd60e51b81526004016106d190613c3c565b825464ffffffffff600160281b90910481169082168111611c515760405162461bcd60e51b815260206004820152601860248201527713185e9e5253550e881b195859881b5d5cdd08195e1a5cdd60421b60448201526064016106d1565b825f5b81866001015f611c648488612651565b64ffffffffff1681526020019081526020015f20819055505f816001611c8a9190613c86565b60ff168464ffffffffff16901c64ffffffffff16905060018564ffffffffff16901c64ffffffffff168111611cbf5750611e4e565b600185165f03611d86575f611cde83611cd9886001613c9f565b612651565b60408051808201825286815264ffffffffff83165f90815260018c0160209081529083902054908201529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611d3f91600401613cbc565b602060405180830381865af4158015611d5a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7e919061364f565b935050611e3a565b5f611d9683611cd9600189613cec565b60408051808201825264ffffffffff83165f90815260018c0160209081529083902054825281018790529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611df791600401613cbc565b602060405180830381865af4158015611e12573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e36919061364f565b9350505b50647fffffffff600194851c169301611c54565b505050505050565b33611e5f61105d565b6001600160a01b031614610d76573360405163118cdaa760e01b81526004016106d19190613418565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b8154600160281b900464ffffffffff167f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611f475760405162461bcd60e51b81526004016106d190613c3c565b825464ffffffffff90811690821610611f9a5760405162461bcd60e51b815260206004820152601560248201527413185e9e5253550e881d1c9959481a5cc8199d5b1b605a1b60448201526064016106d1565b611fa5816001613c9f565b835464ffffffffff91909116600160281b0269ffffffffff000000000019909116178355815f5b81856001015f611fdc8487612651565b64ffffffffff16815260208101919091526040015f205560018316156120c7575f61200c82611cd9600187613cec565b60408051808201825264ffffffffff83165f90815260018a0160209081529083902054825281018690529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe9161206d91600401613cbc565b602060405180830381865af4158015612088573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ac919061364f565b647fffffffff600195861c1694909350919091019050611fcc565b5050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610c66565b6120fe61266e565b61105a81612693565b602060ff821611156121555760405162461bcd60e51b81526020600482015260176024820152764c617a79494d543a205472656520746f6f206c6172676560481b60448201526064016106d1565b612166600160ff831681901b613917565b825469ffffffffffffffffffff191664ffffffffff919091161790915550565b5f82116121a65760405163aeaddff160e01b815260040160405180910390fd5b6001546001600160a01b03166121cf576040516350ca893360e01b815260040160405180910390fd5b5f818152600a602052604081206001805460028301549293926001600160a01b039091169163bb03bd7191889161220591613917565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa15801561224c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612270919061364f565b90505f60015f9054906101000a90046001600160a01b03166001600160a01b0316631209b1f66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122c3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122e7919061364f565b90505f81116123095760405163aeaddff160e01b815260040160405180910390fd5b5f6123148284613d09565b90505f81116123365760405163149fbcfd60e11b815260040160405180910390fd5b808611156113275760405163aeaddff160e01b815260040160405180910390fd5b60058301546006840180545f92600160201b900463ffffffff16908111156123d557508054600180820183555f928352602080842090920180546001600160a01b0319166001600160a01b03881690811790915583526008870182526040808420869055600988019092529120805460ff1916821790559050612551565b5f5f90505f876008015f855f815481106123f1576123f161360f565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905060015b8454811015612479575f896008015f87848154811061243b5761243b61360f565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905082811115612470578092508193505b5060010161241a565b5080861061248d575f945050505050612551565b5f886009015f8685815481106124a5576124a561360f565b5f9182526020808320909101546001600160a01b031683528201929092526040019020805460ff191660018360028111156124e2576124e2613623565b0217905550868483815481106124fa576124fa61360f565b5f91825260208083209190910180546001600160a01b0319166001600160a01b03948516179055918916815260088a018252604080822089905560098b0190925220805460ff191660019081179091559450505050505b9392505050565b5f5f8260ff16116125ab5760405162461bcd60e51b815260206004820152601a60248201527f4c617a79494d543a206465707468206d757374206265203e203000000000000060448201526064016106d1565b602060ff831611156125cf5760405162461bcd60e51b81526004016106d190613d28565b8254600160281b900464ffffffffff16806125ee60ff85166002613e79565b64ffffffffff16101561263e5760405162461bcd60e51b8152602060048201526018602482015277098c2f4f2929aa87440c2dac4d2ceeadeeae640c8cae0e8d60431b60448201526064016106d1565b61264984828561269b565b949350505050565b5f8161266460ff851663ffffffff613e92565b6125519190613c9f565b612676612763565b610d7657604051631afcd79f60e31b815260040160405180910390fd5b611b8261266e565b5f602060ff831611156126c05760405162461bcd60e51b81526004016106d190613d28565b8264ffffffffff165f036126de576126d78261277c565b9050612551565b5f6126ea836001613c86565b60ff166001600160401b03811115612704576127046135fb565b60405190808252806020026020018201604052801561272d578160200160208202803683370190505b50905061273c85858584612e16565b808360ff16815181106127515761275161360f565b60200260200101519150509392505050565b5f61276c6120ce565b54600160401b900460ff16919050565b5f8160ff165f0361278e57505f919050565b8160ff166001036127c057507f2098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864919050565b8160ff166002036127f257507f1069673dcdb12263df301a6ff584a7ec261a44cb9dc68df067a4774460b1f1e1919050565b8160ff1660030361282457507f18f43331537ee2af2e3d758d50f72106467c6eea50371dd528d57eb2b856d238919050565b8160ff1660040361285657507f07f9d837cb17b0d36320ffe93ba52345f1b728571a568265caac97559dbc952a919050565b8160ff1660050361288857507f2b94cf5e8746b3f5c9631f4c5df32907a699c58c94b2ad4d7b5cec1639183f55919050565b8160ff166006036128ba57507f2dee93c5a666459646ea7d22cca9e1bcfed71e6951b953611d11dda32ea09d78919050565b8160ff166007036128ec57507f078295e5a22b84e982cf601eb639597b8b0515a88cb5ac7fa8a4aabe3c87349d919050565b8160ff1660080361291e57507f2fa5e5f18f6027a6501bec864564472a616b2e274a41211a444cbe3a99f3cc61919050565b8160ff1660090361295057507f0e884376d0d8fd21ecb780389e941f66e45e7acce3e228ab3e2156a614fcd747919050565b8160ff16600a0361298257507f1b7201da72494f1e28717ad1a52eb469f95892f957713533de6175e5da190af2919050565b8160ff16600b036129b457507f1f8d8822725e36385200c0b201249819a6e6e1e4650808b5bebc6bface7d7636919050565b8160ff16600c036129e657507f2c5d82f66c914bafb9701589ba8cfcfb6162b0a12acf88a8d0879a0471b5f85a919050565b8160ff16600d03612a1857507f14c54148a0940bb820957f5adf3fa1134ef5c4aaa113f4646458f270e0bfbfd0919050565b8160ff16600e03612a4a57507f190d33b12f986f961e10c0ee44d8b9af11be25588cad89d416118e4bf4ebe80c919050565b8160ff16600f03612a7c57507f22f98aa9ce704152ac17354914ad73ed1167ae6596af510aa5b3649325e06c92919050565b8160ff16601003612aae57507f2a7c7c9b6ce5880b9f6f228d72bf6a575a526f29c66ecceef8b753d38bba7323919050565b8160ff16601103612ae057507f2e8186e558698ec1c67af9c14d463ffc470043c9c2988b954d75dd643f36b992919050565b8160ff16601203612b1257507f0f57c5571e9a4eab49e2c8cf050dae948aef6ead647392273546249d1c1ff10f919050565b8160ff16601303612b4457507f1830ee67b5fb554ad5f63d4388800e1cfe78e310697d46e43c9ce36134f72cca919050565b8160ff16601403612b7657507f2134e76ac5d21aab186c2be1dd8f84ee880a1e46eaf712f9d371b6df22191f3e919050565b8160ff16601503612ba857507f19df90ec844ebc4ffeebd866f33859b0c051d8c958ee3aa88f8f8df3db91a5b1919050565b8160ff16601603612bda57507f18cca2a66b5c0787981e69aefd84852d74af0e93ef4912b4648c05f722efe52b919050565b8160ff16601703612c0c57507f2388909415230d1b4d1304d2d54f473a628338f2efad83fadf05644549d2538d919050565b8160ff16601803612c3e57507f27171fb4a97b6cc0e9e8f543b5294de866a2af2c9c8d0b1d96e673e4529ed540919050565b8160ff16601903612c7057507f2ff6650540f629fd5711a0bc74fc0d28dcb230b9392583e5f8d59696dde6ae21919050565b8160ff16601a03612ca257507f120c58f143d491e95902f7f5277778a2e0ad5168f6add75669932630ce611518919050565b8160ff16601b03612cd457507f1f21feb70d3f21b07bf853d5e5db03071ec495a0a565a21da2d665d279483795919050565b8160ff16601c03612d0657507f24be905fa71335e14c638cc0f66a8623a826e768068a9e968bb1a1dde18a72d2919050565b8160ff16601d03612d3857507f0f8666b62ed17491c50ceadead57d4cd597ef3821d65c328744c74e553dac26d919050565b8160ff16601e03612d6a57507f0918d46bf52d98b034413f4a1a1c41594e7a7a3f6ae08cb43d1a2a230e1959ef919050565b8160ff16601f03612d9c57507f1bbeb01b4c479ecde76917645e404dfa2e26f90d0afc5a65128513ad375c5ff2919050565b8160ff16602003612dce57507f2f68a1c58e257e42a17a6c61dff5551ed560b9922ab119d5ac8e184c9734ead9919050565b60405162461bcd60e51b815260206004820152601e60248201527f4c617a79494d543a2064656661756c745a65726f2062616420696e646578000060448201526064016106d1565b602060ff83161115612e3a5760405162461bcd60e51b81526004016106d190613d28565b5f8364ffffffffff1611612e9e5760405162461bcd60e51b815260206004820152602560248201527f4c617a79494d543a206e756d626572206f66206c6561766573206d7573742062604482015264065203e20360dc1b60648201526084016106d1565b5f612eaa600185613cec565b9050600181165f03612efd57846001015f612ec55f84612651565b64ffffffffff1681526020019081526020015f2054825f81518110612eec57612eec61360f565b602002602001018181525050612f25565b612f065f61277c565b825f81518110612f1857612f1861360f565b6020026020010181815250505b5f5b8360ff168160ff161015611e4e57600182165f0361301d5773__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280868560ff1681518110612f7957612f7961360f565b60200260200101518152602001612f8f8561277c565b8152506040518263ffffffff1660e01b8152600401612fae9190613cbc565b602060405180830381865af4158015612fc9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fed919061364f565b83612ff9836001613c86565b60ff168151811061300c5761300c61360f565b6020026020010181815250506131ce565b5f613029826001613c86565b60ff168664ffffffffff16901c64ffffffffff16905060018364ffffffffff16901c64ffffffffff168111156130cb575f876001015f61308085600161306f9190613c86565b60018864ffffffffff16901c612651565b64ffffffffff1681526020019081526020015f2054905080858460016130a69190613c86565b60ff16815181106130b9576130b961360f565b602002602001018181525050506131cc565b5f876001015f6130e285600188611cd99190613cec565b64ffffffffff1681526020019081526020015f2054905073__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280848152602001888760ff16815181106131395761313961360f565b60200260200101518152506040518263ffffffff1660e01b81526004016131609190613cbc565b602060405180830381865af415801561317b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061319f919061364f565b856131ab856001613c86565b60ff16815181106131be576131be61360f565b602002602001018181525050505b505b647fffffffff600192831c169101612f27565b600183019183908215613272579160200282015f5b8382111561324057833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026131f6565b80156132705782816101000a81549063ffffffff0219169055600401602081600301049283019260010302613240565b505b5061327e929150613282565b5090565b5b8082111561327e575f8155600101613283565b6001600160a01b038116811461105a575f5ffd5b5f602082840312156132ba575f5ffd5b813561255181613296565b5f602082840312156132d5575f5ffd5b5035919050565b5f8151808452602084019350602083015f5b828110156133155781516001600160a01b03168652602095860195909101906001016132ee565b5093949350505050565b5f8151808452602084019350602083015f5b82811015613315578151865260209586019590910190600101613331565b604081525f61336160408301856132dc565b8281036020840152613373818561331f565b95945050505050565b5f5f5f6080848603121561338e575f5ffd5b8335925060208401359150608084018510156133a8575f5ffd5b6040840190509250925092565b5f5f604083850312156133c6575f5ffd5b8235915060208301356133d881613296565b809150509250929050565b5f5f5f606084860312156133f5575f5ffd5b83359250602084013561340781613296565b929592945050506040919091013590565b6001600160a01b0391909116815260200190565b602081525f61255160208301846132dc565b5f5f6040838503121561344f575f5ffd5b823561345a81613296565b946020939093013593505050565b5f5f60408385031215613479575f5ffd5b50508035926020909101359150565b5f5f83601f840112613498575f5ffd5b5081356001600160401b038111156134ae575f5ffd5b6020830191508360208285010111156134c5575f5ffd5b9250929050565b5f5f5f5f5f5f5f5f5f60a08a8c0312156134e4575f5ffd5b8935985060208a01356001600160401b03811115613500575f5ffd5b8a01601f81018c13613510575f5ffd5b80356001600160401b03811115613525575f5ffd5b8c60208260051b8401011115613539575f5ffd5b6020919091019850965060408a01356001600160401b0381111561355b575f5ffd5b6135678c828d01613488565b90975095505060608a01356001600160401b03811115613585575f5ffd5b6135918c828d01613488565b90955093505060808a01356001600160401b038111156135af575f5ffd5b6135bb8c828d01613488565b915080935050809150509295985092959850929598565b634e487b7160e01b5f52601160045260245ffd5b5f816135f4576135f46135d2565b505f190190565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b5f60018201613648576136486135d2565b5060010190565b5f6020828403121561365f575f5ffd5b5051919050565b803563ffffffff81168114611871575f5ffd5b5f60208284031215613689575f5ffd5b61255182613666565b80820180821115610c6657610c666135d2565b84815260a0810160208201855f5b60028110156136e05763ffffffff6136ca83613666565b16835260209283019291909101906001016136b3565b50505060608201939093526080015292915050565b80518015158114611871575f5ffd5b5f60208284031215613714575f5ffd5b612551826136f5565b604080825283549082018190525f8481526020812090916060840190835b818110156137625783546001600160a01b031683526001938401936020909301920161373b565b50508381036020850152613776818661331f565b9695505050505050565b6040516101e081016001600160401b03811182821017156137a3576137a36135fb565b60405290565b604051601f8201601f191681016001600160401b03811182821017156137d1576137d16135fb565b604052919050565b5f6001600160401b038211156137f1576137f16135fb565b50601f01601f191660200190565b5f82601f83011261380e575f5ffd5b81356001600160401b03811115613827576138276135fb565b8060051b613837602082016137a9565b91825260208185018101929081019086841115613852575f5ffd5b6020860192505b83831015613776578235825260209283019290910190613859565b5f5f60408385031215613885575f5ffd5b82356001600160401b0381111561389a575f5ffd5b8301601f810185136138aa575f5ffd5b80356138bd6138b8826137d9565b6137a9565b8181528660208385010111156138d1575f5ffd5b816020840160208301375f6020838301015280945050505060208301356001600160401b03811115613901575f5ffd5b61390d858286016137ff565b9150509250929050565b81810381811115610c6657610c666135d2565b805160048110611871575f5ffd5b5f82601f830112613947575f5ffd5b604080519081016001600160401b0381118282101715613969576139696135fb565b806040525080604084018581111561397f575f5ffd5b845b81811015613999578051835260209283019201613981565b509195945050505050565b805161187181613296565b805160ff81168114611871575f5ffd5b5f82601f8301126139ce575f5ffd5b81516139dc6138b8826137d9565b8181528460208386010111156139f0575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215613a1c575f5ffd5b81516001600160401b03811115613a31575f5ffd5b82016102008185031215613a43575f5ffd5b613a4b613780565b81518152613a5b6020830161392a565b602082015260408281015190820152613a778560608401613938565b606082015260a08201516080820152613a9260c083016139a4565b60a0820152613aa360e083016139af565b60c08201526101008201516001600160401b03811115613ac1575f5ffd5b613acd868285016139bf565b60e083015250613ae061012083016139a4565b610100820152613af361014083016139a4565b61012082015261016082810151610140830152610180830151908201526101a08201516001600160401b03811115613b29575f5ffd5b613b35868285016139bf565b61018083015250613b496101c083016139a4565b6101a0820152613b5c6101e083016136f5565b6101c0820152949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f613ba5604083018688613b6a565b8281036020840152613bb8818587613b6a565b979650505050505050565b606080825281018690525f8760808301825b89811015613c05578235613be881613296565b6001600160a01b0316825260209283019290910190600101613bd5565b508381036020850152613c1981888a613b6a565b9150508281036040840152613c2f818587613b6a565b9998505050505050505050565b6020808252602a908201527f4c617a79494d543a206c656166206d757374206265203c20534e41524b5f53436040820152691053105497d19251531160b21b606082015260800190565b60ff8181168382160190811115610c6657610c666135d2565b64ffffffffff8181168382160190811115610c6657610c666135d2565b6040810181835f5b6002811015613ce3578151835260209283019290910190600101613cc4565b50505092915050565b64ffffffffff8281168282160390811115610c6657610c666135d2565b5f82613d2357634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526023908201527f4c617a79494d543a206465707468206d757374206265203c3d204d41585f44456040820152620a0a8960eb1b606082015260800190565b6001815b6001841115610f1757808504811115613d8a57613d8a6135d2565b6001841615613d9857908102905b60019390931c928002613d6f565b5f82613db457506001610c66565b81613dc057505f610c66565b8160018114613dd65760028114613de057613e12565b6001915050610c66565b60ff841115613df157613df16135d2565b6001841b915064ffffffffff821115613e0c57613e0c6135d2565b50610c66565b5060208310610133831016604e8410600b8410161715613e4a575081810a64ffffffffff811115613e4557613e456135d2565b610c66565b613e5a64ffffffffff8484613d6b565b8064ffffffffff04821115613e7157613e716135d2565b029392505050565b5f61255164ffffffffff841664ffffffffff8416613da6565b64ffffffffff8181168382160290811690818114613eb257613eb26135d2565b509291505056fea164736f6c634300081c000a", + "deployedBytecode": "0x608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80639f0f874a11610135578063e59e4695116100b4578063f26ef74e11610079578063f26ef74e1461057f578063f2fde38b14610592578063f379b0df146105a5578063f52fd803146105df578063f6fc05d514610651575f5ffd5b8063e59e469514610524578063e6745e1314610537578063e82f3b701461054a578063ebf0c7171461055d578063f165053614610565575f5ffd5b8063c3a0ec30116100fa578063c3a0ec30146104bc578063ca2869a0146104cd578063cd6dc687146104ec578063da881e5a146104ff578063dbb06c9314610512575f5ffd5b80639f0f874a1461044e578063a016493014610457578063a8a4d69b14610477578063bff232c11461048a578063c2b40ae41461049d575f5ffd5b8063715018a6116101c15780638d1ddfb1116101865780638d1ddfb1146103ce5780638da5cb5b146103e45780638e5ce3ad146103ec5780639015d371146103ff5780639a7a2ffc14610412575f5ffd5b8063715018a6146103475780637c92f5241461034f578063858142431461037c5780638a78bb151461039c5780638cb89ecb146103af575f5ffd5b80632e7b716d116102075780632e7b716d146102d95780634d6861a6146102ec57806350e6d94c146102ff5780635d5047761461032157806370e36bbe14610334575f5ffd5b8063096b810a146102435780630f3e34121461025857806317d611201461026b5780632800d82914610295578063291a691b146102b6575b5f5ffd5b6102566102513660046132aa565b61065a565b005b6102566102663660046132c5565b6107a6565b61027e6102793660046132c5565b6107e9565b60405161028c92919061334f565b60405180910390f35b6102a86102a33660046132c5565b610993565b60405190815260200161028c565b6102c96102c436600461337c565b6109df565b604051901515815260200161028c565b6102c96102e73660046132aa565b610bb9565b6102c96102fa3660046132c5565b610c6c565b6102c961030d3660046132aa565b60066020525f908152604090205460ff1681565b6102c961032f3660046133b5565b610cab565b6102566103423660046132aa565b610cef565b610256610d65565b61036261035d3660046133e3565b610d78565b6040805192835263ffffffff90911660208301520161028c565b60015461038f906001600160a01b031681565b60405161028c9190613418565b6102566103aa3660046132aa565b610f1f565b6102a86103bd3660046132c5565b60096020525f908152604090205481565b600454600160281b900464ffffffffff166102a8565b61038f61105d565b600b5461038f906001600160a01b031681565b6102c961040d3660046132aa565b61108b565b6104386104203660046132aa565b60076020525f908152604090205464ffffffffff1681565b60405164ffffffffff909116815260200161028c565b6102a860035481565b61046a6104653660046132c5565b6110a8565b60405161028c919061342c565b6102c96104853660046133b5565b61113e565b6102566104983660046132aa565b611182565b6102a86104ab3660046132c5565b60086020525f908152604090205481565b6001546001600160a01b031661038f565b6102a86104db3660046132c5565b5f9081526008602052604090205490565b6102566104fa36600461343e565b6111d3565b6102c961050d3660046132c5565b611330565b5f5461038f906001600160a01b031681565b6102566105323660046132aa565b61160a565b610256610545366004613468565b611682565b6102a86105583660046132c5565b611845565b6102a8611876565b61056d601481565b60405160ff909116815260200161028c565b61025661058d3660046134cc565b611888565b6102566105a03660046132aa565b611b7a565b6004546105c19064ffffffffff80821691600160281b90041682565b6040805164ffffffffff93841681529290911660208301520161028c565b6106226105ed3660046132c5565b5f908152600a6020819052604090912090810154600590910154909163ffffffff80831692600160201b900416908284101590565b60405161028c949392919093845263ffffffff9283166020850152911660408301521515606082015260800190565b6102a860025481565b61066261105d565b6001600160a01b0316336001600160a01b0316148061068b57506001546001600160a01b031633145b6106a857604051632864c4e160e01b815260040160405180910390fd5b6106b18161108b565b81906106da576040516381e5828960e01b81526004016106d19190613418565b60405180910390fd5b506001600160a01b0381165f9081526007602052604081205464ffffffffff16906107089060049083611bb4565b6001600160a01b0382165f908152600660205260408120805460ff191690556002805491610735836135e6565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f8c008e3835f6c79bfcdb89f0f6ca8705e0b01049ee84a90b0e4da1c7ba9405d5906060015b60405180910390a25050565b6107ae611e56565b60038190556040518181527fbe772dc189863d512fa01e489c8eac204975aef1a8662d8b5a333804b5207ab79060200160405180910390a150565b5f818152600a60208190526040909120600681015491810154606092839291806001600160401b03811115610820576108206135fb565b604051908082528060200260200182016040528015610849578160200160208202803683370190505b509450806001600160401b03811115610864576108646135fb565b60405190808252806020026020018201604052801561088d578160200160208202803683370190505b5093505f805b83811015610989575f8560060182815481106108b1576108b161360f565b5f918252602090912001546001600160a01b0316905060016001600160a01b0382165f90815260098801602052604090205460ff1660028111156108f7576108f7613623565b03610980578088848151811061090f5761090f61360f565b60200260200101906001600160a01b031690816001600160a01b031681525050856008015f826001600160a01b03166001600160a01b031681526020019081526020015f20548784815181106109675761096761360f565b60209081029190910101528261097c81613637565b9350505b50600101610893565b5050505050915091565b5f818152600a6020526040812081815460ff1660038111156109b7576109b7613623565b036109d557604051630d4c1d9760e41b815260040160405180910390fd5b6003015492915050565b5f80546001600160a01b03163314610a0a5760405163e4c2a7eb60e01b815260040160405180910390fd5b5f848152600a6020526040812090815460ff166003811115610a2e57610a2e613623565b14610a4c576040516374ff462560e11b815260040160405180910390fd5b60015460408051630cc37d8f60e11b815290515f926001600160a01b031691631986fb1e9160048083019260209291908290030181865afa158015610a93573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab7919061364f565b905080610aca6040860160208701613679565b63ffffffff161115610ae26040860160208701613679565b829091610b10576040516344ec930f60e01b815263ffffffff909216600483015260248201526044016106d1565b5050815460ff1916600190811783558201859055436002830155600354610b379042613692565b6003830155610b4b600583018560026131e1565b50610b54611876565b5f87815260086020526040908190209190915560028301546003840154915188927f381d281d32f95ef8fe4e5f3b263ea6a32d03d331e1a141ae1da996dc02a7a17092610ba5928a928a92916136a5565b60405180910390a250600195945050505050565b5f610bc38261108b565b610bce57505f919050565b6001546001600160a01b0316610bf7576040516350ca893360e01b815260040160405180910390fd5b600154604051639f8a13d760e01b81526001600160a01b0390911690639f8a13d790610c27908590600401613418565b602060405180830381865afa158015610c42573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c669190613704565b92915050565b5f818152600a602052604081206001815460ff166003811115610c9157610c91613623565b14610c9e57505f92915050565b6003015442111592915050565b5f60015f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff166002811115610ce757610ce7613623565b149392505050565b610cf7611e56565b6001600160a01b038116610d1e5760405163d92e233d60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b038316908117825560405190917f2c8267accd82e977550ed2349c73311183cd22e306347be4453c8d130995e3c991a250565b610d6d611e56565b610d765f611e88565b565b600b545f9081906001600160a01b03163314610da75760405163fcef374960e01b815260040160405180910390fd5b5f858152600a602052604090206002815460ff166003811115610dcc57610dcc613623565b14610dea57604051634f4b461f60e11b815260040160405180910390fd5b60058101546001600160a01b0386165f90815260098301602052604090205463ffffffff909116925060019060ff166002811115610e2a57610e2a613623565b14610e3a57600a01549150610f17565b6001600160a01b0385165f9081526009820160205260408120805460ff19166002179055600a8201805491610e6e836135e6565b919050555080600a01549250846001600160a01b0316867f6c783b92374361b4d6efaf29673b89437ee969bb3c9d2d5d86b143ad5447b8498686604051610ebf929190918252602082015260400190565b60405180910390a36040805184815263ffffffff84166020820181905285101591810182905287907f119cb11dd0a68c257d6dc9b06dcb37dd422ce276eb8bf3cd0b7079a116b8e2989060600160405180910390a250505b935093915050565b610f2761105d565b6001600160a01b0316336001600160a01b03161480610f5057506001546001600160a01b031633145b610f6d57604051632864c4e160e01b815260040160405180910390fd5b610f768161108b565b61105a5760048054600160281b900464ffffffffff1690610fa0906001600160a01b038416611ef8565b6001600160a01b0382165f908152600660209081526040808320805460ff1916600117905560079091528120805464ffffffffff841664ffffffffff199091161790556002805491610ff183613637565b90915550506002546004546040805164ffffffffff80861682526020820194909452600160281b909204909216918101919091526001600160a01b038316907f3318d261fe14a5761d2d1e21555652f623d2134c430a9883c9ad6e958bb0db539060600161079a565b50565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b03165f9081526006602052604090205460ff1690565b5f818152600a602052604090206004810154606091906110db576040516322e679e360e11b815260040160405180910390fd5b8060060180548060200260200160405190810160405280929190818152602001828054801561113157602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311611113575b5050505050915050919050565b5f805f848152600a602090815260408083206001600160a01b038716845260090190915290205460ff16600281111561117957611179613623565b14159392505050565b61118a611e56565b6001600160a01b0381166111b15760405163d92e233d60e01b815260040160405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6111dc6120ce565b805490915060ff600160401b82041615906001600160401b03165f811580156112025750825b90505f826001600160401b0316600114801561121d5750303b155b90508115801561122b575080155b156112495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561127357845460ff60401b1916600160401b1785555b6001600160a01b03871661129a5760405163d92e233d60e01b815260040160405180910390fd5b6112a3336120f6565b6112af60046014612107565b6112b8866107a6565b6112c061105d565b6001600160a01b0316876001600160a01b0316146112e1576112e187611b7a565b831561132757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f818152600a6020526040812081815460ff16600381111561135457611354613623565b0361137257604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff16600381111561138a5761138a613623565b146113a857604051631860f69960e31b815260040160405180910390fd5b806003015442116113cc57604051632f021e8d60e11b815260040160405180910390fd5b60058101546006820154600160201b90910463ffffffff161115806114b1578154600360ff199091161782556006820154600583015460408051928352600160201b90910463ffffffff16602083015285917fecc4a9fb7e28d074cba7f5b227e9b5827823c850a385539b9a2f98a08f8c203d910160405180910390a25f54604051635d968dc160e11b815260048101869052600260248201526001600160a01b039091169063bb2d1b82906044015f604051808303815f87803b158015611492575f5ffd5b505af11580156114a4573d5f5f3e3d5ffd5b505f979650505050505050565b815460ff191660021782556006820154600a83018190555f816001600160401b038111156114e1576114e16135fb565b60405190808252806020026020018201604052801561150a578160200160208202803683370190505b5090505f5b8281101561157c57846008015f8660060183815481106115315761153161360f565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205482518390839081106115695761156961360f565b602090810291909101015260010161150f565b505f54604051631f3ea75d60e21b8152600481018890526001600160a01b0390911690637cfa9d74906024015f604051808303815f87803b1580156115bf575f5ffd5b505af11580156115d1573d5f5f3e3d5ffd5b50505050857f4f1f5b329c741a8ba15e9645e301061294d0c1fdd455448ffd5e76ff255929d78560060183604051610ba592919061371d565b611612611e56565b6001600160a01b0381166116395760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a7905f90a250565b5f828152600a6020526040812090815460ff1660038111156116a6576116a6613623565b036116c457604051630d4c1d9760e41b815260040160405180910390fd5b6001815460ff1660038111156116dc576116dc613623565b146116fa57604051631860f69960e31b815260040160405180910390fd5b806003015442111561171f57604051639a19114d60e01b815260040160405180910390fd5b335f90815260078201602052604090205460ff16156117515760405163257309f160e11b815260040160405180910390fd5b61175a33610bb9565b6117775760405163149fbcfd60e11b815260040160405180910390fd5b611782338385612186565b6001810154604080516bffffffffffffffffffffffff193360601b16602080830191909152603482018690526054820187905260748083019490945282518083039094018452609490910190915281519101205f90335f8181526007850160205260409020805460ff1916600117905590915061180190839083612357565b506040805184815260208101839052339186917f52999628fb1cb05707e842278833b22e511f11746202cecdf221968b0b89e8bd910160405180910390a350505050565b5f8181526009602052604090205480611871576040516322e679e360e11b815260040160405180910390fd5b919050565b5f61188360046014612558565b905090565b5f898152600a602052604090206002815460ff1660038111156118ad576118ad613623565b146118cb57604051634f4b461f60e11b815260040160405180910390fd5b6004810154156118ee5760405163632a22bb60e01b815260040160405180910390fd5b600681015488146119375760405162461bcd60e51b815260206004820152601360248201527209cdec8ca40c6deeadce840dad2e6dac2e8c6d606b1b60448201526064016106d1565b5f61194485870187613874565b9150505f81511161198e5760405162461bcd60e51b815260206004820152601460248201527343353a206e6f207075626c696320696e7075747360601b60448201526064016106d1565b5f816001835161199e9190613917565b815181106119ae576119ae61360f565b602002602001015190505f5f5f9054906101000a90046001600160a01b03166001600160a01b031663406ed35c8e6040518263ffffffff1660e01b81526004016119fa91815260200190565b5f60405180830381865afa158015611a14573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a3b9190810190613a0c565b610120810151604051637bf41d7760e11b81529192506001600160a01b03169063f7e83aee90611a75908b908b908b908b90600401613b92565b602060405180830381865afa158015611a90573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ab4919061364f565b5060048085018390555f8e815260096020526040808220859055905490516340a3b76160e11b81529182018f9052602482018490526001600160a01b0316906381476ec2906044015f604051808303815f87803b158015611b13575f5ffd5b505af1158015611b25573d5f5f3e3d5ffd5b505050508c7f49ac1dd411942113d1c5e6799c6379ce341afe85a4175fb562cf2a5fb886c27d8d8d8d8d8d8d604051611b6396959493929190613bc3565b60405180910390a250505050505050505050505050565b611b82611e56565b6001600160a01b038116611bab575f604051631e4fbdf760e01b81526004016106d19190613418565b61105a81611e88565b7f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611bf35760405162461bcd60e51b81526004016106d190613c3c565b825464ffffffffff600160281b90910481169082168111611c515760405162461bcd60e51b815260206004820152601860248201527713185e9e5253550e881b195859881b5d5cdd08195e1a5cdd60421b60448201526064016106d1565b825f5b81866001015f611c648488612651565b64ffffffffff1681526020019081526020015f20819055505f816001611c8a9190613c86565b60ff168464ffffffffff16901c64ffffffffff16905060018564ffffffffff16901c64ffffffffff168111611cbf5750611e4e565b600185165f03611d86575f611cde83611cd9886001613c9f565b612651565b60408051808201825286815264ffffffffff83165f90815260018c0160209081529083902054908201529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611d3f91600401613cbc565b602060405180830381865af4158015611d5a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7e919061364f565b935050611e3a565b5f611d9683611cd9600189613cec565b60408051808201825264ffffffffff83165f90815260018c0160209081529083902054825281018790529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe91611df791600401613cbc565b602060405180830381865af4158015611e12573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e36919061364f565b9350505b50647fffffffff600194851c169301611c54565b505050505050565b33611e5f61105d565b6001600160a01b031614610d76573360405163118cdaa760e01b81526004016106d19190613418565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b8154600160281b900464ffffffffff167f30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000018210611f475760405162461bcd60e51b81526004016106d190613c3c565b825464ffffffffff90811690821610611f9a5760405162461bcd60e51b815260206004820152601560248201527413185e9e5253550e881d1c9959481a5cc8199d5b1b605a1b60448201526064016106d1565b611fa5816001613c9f565b835464ffffffffff91909116600160281b0269ffffffffff000000000019909116178355815f5b81856001015f611fdc8487612651565b64ffffffffff16815260208101919091526040015f205560018316156120c7575f61200c82611cd9600187613cec565b60408051808201825264ffffffffff83165f90815260018a0160209081529083902054825281018690529051632b0aac7f60e11b815291925073__$078c82ddf6c95d34ea184ef1dd6130d136$__9163561558fe9161206d91600401613cbc565b602060405180830381865af4158015612088573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ac919061364f565b647fffffffff600195861c1694909350919091019050611fcc565b5050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610c66565b6120fe61266e565b61105a81612693565b602060ff821611156121555760405162461bcd60e51b81526020600482015260176024820152764c617a79494d543a205472656520746f6f206c6172676560481b60448201526064016106d1565b612166600160ff831681901b613917565b825469ffffffffffffffffffff191664ffffffffff919091161790915550565b5f82116121a65760405163aeaddff160e01b815260040160405180910390fd5b6001546001600160a01b03166121cf576040516350ca893360e01b815260040160405180910390fd5b5f818152600a602052604081206001805460028301549293926001600160a01b039091169163bb03bd7191889161220591613917565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa15801561224c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612270919061364f565b90505f60015f9054906101000a90046001600160a01b03166001600160a01b0316631209b1f66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122c3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122e7919061364f565b90505f81116123095760405163aeaddff160e01b815260040160405180910390fd5b5f6123148284613d09565b90505f81116123365760405163149fbcfd60e11b815260040160405180910390fd5b808611156113275760405163aeaddff160e01b815260040160405180910390fd5b60058301546006840180545f92600160201b900463ffffffff16908111156123d557508054600180820183555f928352602080842090920180546001600160a01b0319166001600160a01b03881690811790915583526008870182526040808420869055600988019092529120805460ff1916821790559050612551565b5f5f90505f876008015f855f815481106123f1576123f161360f565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905060015b8454811015612479575f896008015f87848154811061243b5761243b61360f565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054905082811115612470578092508193505b5060010161241a565b5080861061248d575f945050505050612551565b5f886009015f8685815481106124a5576124a561360f565b5f9182526020808320909101546001600160a01b031683528201929092526040019020805460ff191660018360028111156124e2576124e2613623565b0217905550868483815481106124fa576124fa61360f565b5f91825260208083209190910180546001600160a01b0319166001600160a01b03948516179055918916815260088a018252604080822089905560098b0190925220805460ff191660019081179091559450505050505b9392505050565b5f5f8260ff16116125ab5760405162461bcd60e51b815260206004820152601a60248201527f4c617a79494d543a206465707468206d757374206265203e203000000000000060448201526064016106d1565b602060ff831611156125cf5760405162461bcd60e51b81526004016106d190613d28565b8254600160281b900464ffffffffff16806125ee60ff85166002613e79565b64ffffffffff16101561263e5760405162461bcd60e51b8152602060048201526018602482015277098c2f4f2929aa87440c2dac4d2ceeadeeae640c8cae0e8d60431b60448201526064016106d1565b61264984828561269b565b949350505050565b5f8161266460ff851663ffffffff613e92565b6125519190613c9f565b612676612763565b610d7657604051631afcd79f60e31b815260040160405180910390fd5b611b8261266e565b5f602060ff831611156126c05760405162461bcd60e51b81526004016106d190613d28565b8264ffffffffff165f036126de576126d78261277c565b9050612551565b5f6126ea836001613c86565b60ff166001600160401b03811115612704576127046135fb565b60405190808252806020026020018201604052801561272d578160200160208202803683370190505b50905061273c85858584612e16565b808360ff16815181106127515761275161360f565b60200260200101519150509392505050565b5f61276c6120ce565b54600160401b900460ff16919050565b5f8160ff165f0361278e57505f919050565b8160ff166001036127c057507f2098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864919050565b8160ff166002036127f257507f1069673dcdb12263df301a6ff584a7ec261a44cb9dc68df067a4774460b1f1e1919050565b8160ff1660030361282457507f18f43331537ee2af2e3d758d50f72106467c6eea50371dd528d57eb2b856d238919050565b8160ff1660040361285657507f07f9d837cb17b0d36320ffe93ba52345f1b728571a568265caac97559dbc952a919050565b8160ff1660050361288857507f2b94cf5e8746b3f5c9631f4c5df32907a699c58c94b2ad4d7b5cec1639183f55919050565b8160ff166006036128ba57507f2dee93c5a666459646ea7d22cca9e1bcfed71e6951b953611d11dda32ea09d78919050565b8160ff166007036128ec57507f078295e5a22b84e982cf601eb639597b8b0515a88cb5ac7fa8a4aabe3c87349d919050565b8160ff1660080361291e57507f2fa5e5f18f6027a6501bec864564472a616b2e274a41211a444cbe3a99f3cc61919050565b8160ff1660090361295057507f0e884376d0d8fd21ecb780389e941f66e45e7acce3e228ab3e2156a614fcd747919050565b8160ff16600a0361298257507f1b7201da72494f1e28717ad1a52eb469f95892f957713533de6175e5da190af2919050565b8160ff16600b036129b457507f1f8d8822725e36385200c0b201249819a6e6e1e4650808b5bebc6bface7d7636919050565b8160ff16600c036129e657507f2c5d82f66c914bafb9701589ba8cfcfb6162b0a12acf88a8d0879a0471b5f85a919050565b8160ff16600d03612a1857507f14c54148a0940bb820957f5adf3fa1134ef5c4aaa113f4646458f270e0bfbfd0919050565b8160ff16600e03612a4a57507f190d33b12f986f961e10c0ee44d8b9af11be25588cad89d416118e4bf4ebe80c919050565b8160ff16600f03612a7c57507f22f98aa9ce704152ac17354914ad73ed1167ae6596af510aa5b3649325e06c92919050565b8160ff16601003612aae57507f2a7c7c9b6ce5880b9f6f228d72bf6a575a526f29c66ecceef8b753d38bba7323919050565b8160ff16601103612ae057507f2e8186e558698ec1c67af9c14d463ffc470043c9c2988b954d75dd643f36b992919050565b8160ff16601203612b1257507f0f57c5571e9a4eab49e2c8cf050dae948aef6ead647392273546249d1c1ff10f919050565b8160ff16601303612b4457507f1830ee67b5fb554ad5f63d4388800e1cfe78e310697d46e43c9ce36134f72cca919050565b8160ff16601403612b7657507f2134e76ac5d21aab186c2be1dd8f84ee880a1e46eaf712f9d371b6df22191f3e919050565b8160ff16601503612ba857507f19df90ec844ebc4ffeebd866f33859b0c051d8c958ee3aa88f8f8df3db91a5b1919050565b8160ff16601603612bda57507f18cca2a66b5c0787981e69aefd84852d74af0e93ef4912b4648c05f722efe52b919050565b8160ff16601703612c0c57507f2388909415230d1b4d1304d2d54f473a628338f2efad83fadf05644549d2538d919050565b8160ff16601803612c3e57507f27171fb4a97b6cc0e9e8f543b5294de866a2af2c9c8d0b1d96e673e4529ed540919050565b8160ff16601903612c7057507f2ff6650540f629fd5711a0bc74fc0d28dcb230b9392583e5f8d59696dde6ae21919050565b8160ff16601a03612ca257507f120c58f143d491e95902f7f5277778a2e0ad5168f6add75669932630ce611518919050565b8160ff16601b03612cd457507f1f21feb70d3f21b07bf853d5e5db03071ec495a0a565a21da2d665d279483795919050565b8160ff16601c03612d0657507f24be905fa71335e14c638cc0f66a8623a826e768068a9e968bb1a1dde18a72d2919050565b8160ff16601d03612d3857507f0f8666b62ed17491c50ceadead57d4cd597ef3821d65c328744c74e553dac26d919050565b8160ff16601e03612d6a57507f0918d46bf52d98b034413f4a1a1c41594e7a7a3f6ae08cb43d1a2a230e1959ef919050565b8160ff16601f03612d9c57507f1bbeb01b4c479ecde76917645e404dfa2e26f90d0afc5a65128513ad375c5ff2919050565b8160ff16602003612dce57507f2f68a1c58e257e42a17a6c61dff5551ed560b9922ab119d5ac8e184c9734ead9919050565b60405162461bcd60e51b815260206004820152601e60248201527f4c617a79494d543a2064656661756c745a65726f2062616420696e646578000060448201526064016106d1565b602060ff83161115612e3a5760405162461bcd60e51b81526004016106d190613d28565b5f8364ffffffffff1611612e9e5760405162461bcd60e51b815260206004820152602560248201527f4c617a79494d543a206e756d626572206f66206c6561766573206d7573742062604482015264065203e20360dc1b60648201526084016106d1565b5f612eaa600185613cec565b9050600181165f03612efd57846001015f612ec55f84612651565b64ffffffffff1681526020019081526020015f2054825f81518110612eec57612eec61360f565b602002602001018181525050612f25565b612f065f61277c565b825f81518110612f1857612f1861360f565b6020026020010181815250505b5f5b8360ff168160ff161015611e4e57600182165f0361301d5773__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280868560ff1681518110612f7957612f7961360f565b60200260200101518152602001612f8f8561277c565b8152506040518263ffffffff1660e01b8152600401612fae9190613cbc565b602060405180830381865af4158015612fc9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fed919061364f565b83612ff9836001613c86565b60ff168151811061300c5761300c61360f565b6020026020010181815250506131ce565b5f613029826001613c86565b60ff168664ffffffffff16901c64ffffffffff16905060018364ffffffffff16901c64ffffffffff168111156130cb575f876001015f61308085600161306f9190613c86565b60018864ffffffffff16901c612651565b64ffffffffff1681526020019081526020015f2054905080858460016130a69190613c86565b60ff16815181106130b9576130b961360f565b602002602001018181525050506131cc565b5f876001015f6130e285600188611cd99190613cec565b64ffffffffff1681526020019081526020015f2054905073__$078c82ddf6c95d34ea184ef1dd6130d136$__63561558fe6040518060400160405280848152602001888760ff16815181106131395761313961360f565b60200260200101518152506040518263ffffffff1660e01b81526004016131609190613cbc565b602060405180830381865af415801561317b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061319f919061364f565b856131ab856001613c86565b60ff16815181106131be576131be61360f565b602002602001018181525050505b505b647fffffffff600192831c169101612f27565b600183019183908215613272579160200282015f5b8382111561324057833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026131f6565b80156132705782816101000a81549063ffffffff0219169055600401602081600301049283019260010302613240565b505b5061327e929150613282565b5090565b5b8082111561327e575f8155600101613283565b6001600160a01b038116811461105a575f5ffd5b5f602082840312156132ba575f5ffd5b813561255181613296565b5f602082840312156132d5575f5ffd5b5035919050565b5f8151808452602084019350602083015f5b828110156133155781516001600160a01b03168652602095860195909101906001016132ee565b5093949350505050565b5f8151808452602084019350602083015f5b82811015613315578151865260209586019590910190600101613331565b604081525f61336160408301856132dc565b8281036020840152613373818561331f565b95945050505050565b5f5f5f6080848603121561338e575f5ffd5b8335925060208401359150608084018510156133a8575f5ffd5b6040840190509250925092565b5f5f604083850312156133c6575f5ffd5b8235915060208301356133d881613296565b809150509250929050565b5f5f5f606084860312156133f5575f5ffd5b83359250602084013561340781613296565b929592945050506040919091013590565b6001600160a01b0391909116815260200190565b602081525f61255160208301846132dc565b5f5f6040838503121561344f575f5ffd5b823561345a81613296565b946020939093013593505050565b5f5f60408385031215613479575f5ffd5b50508035926020909101359150565b5f5f83601f840112613498575f5ffd5b5081356001600160401b038111156134ae575f5ffd5b6020830191508360208285010111156134c5575f5ffd5b9250929050565b5f5f5f5f5f5f5f5f5f60a08a8c0312156134e4575f5ffd5b8935985060208a01356001600160401b03811115613500575f5ffd5b8a01601f81018c13613510575f5ffd5b80356001600160401b03811115613525575f5ffd5b8c60208260051b8401011115613539575f5ffd5b6020919091019850965060408a01356001600160401b0381111561355b575f5ffd5b6135678c828d01613488565b90975095505060608a01356001600160401b03811115613585575f5ffd5b6135918c828d01613488565b90955093505060808a01356001600160401b038111156135af575f5ffd5b6135bb8c828d01613488565b915080935050809150509295985092959850929598565b634e487b7160e01b5f52601160045260245ffd5b5f816135f4576135f46135d2565b505f190190565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b5f60018201613648576136486135d2565b5060010190565b5f6020828403121561365f575f5ffd5b5051919050565b803563ffffffff81168114611871575f5ffd5b5f60208284031215613689575f5ffd5b61255182613666565b80820180821115610c6657610c666135d2565b84815260a0810160208201855f5b60028110156136e05763ffffffff6136ca83613666565b16835260209283019291909101906001016136b3565b50505060608201939093526080015292915050565b80518015158114611871575f5ffd5b5f60208284031215613714575f5ffd5b612551826136f5565b604080825283549082018190525f8481526020812090916060840190835b818110156137625783546001600160a01b031683526001938401936020909301920161373b565b50508381036020850152613776818661331f565b9695505050505050565b6040516101e081016001600160401b03811182821017156137a3576137a36135fb565b60405290565b604051601f8201601f191681016001600160401b03811182821017156137d1576137d16135fb565b604052919050565b5f6001600160401b038211156137f1576137f16135fb565b50601f01601f191660200190565b5f82601f83011261380e575f5ffd5b81356001600160401b03811115613827576138276135fb565b8060051b613837602082016137a9565b91825260208185018101929081019086841115613852575f5ffd5b6020860192505b83831015613776578235825260209283019290910190613859565b5f5f60408385031215613885575f5ffd5b82356001600160401b0381111561389a575f5ffd5b8301601f810185136138aa575f5ffd5b80356138bd6138b8826137d9565b6137a9565b8181528660208385010111156138d1575f5ffd5b816020840160208301375f6020838301015280945050505060208301356001600160401b03811115613901575f5ffd5b61390d858286016137ff565b9150509250929050565b81810381811115610c6657610c666135d2565b805160048110611871575f5ffd5b5f82601f830112613947575f5ffd5b604080519081016001600160401b0381118282101715613969576139696135fb565b806040525080604084018581111561397f575f5ffd5b845b81811015613999578051835260209283019201613981565b509195945050505050565b805161187181613296565b805160ff81168114611871575f5ffd5b5f82601f8301126139ce575f5ffd5b81516139dc6138b8826137d9565b8181528460208386010111156139f0575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215613a1c575f5ffd5b81516001600160401b03811115613a31575f5ffd5b82016102008185031215613a43575f5ffd5b613a4b613780565b81518152613a5b6020830161392a565b602082015260408281015190820152613a778560608401613938565b606082015260a08201516080820152613a9260c083016139a4565b60a0820152613aa360e083016139af565b60c08201526101008201516001600160401b03811115613ac1575f5ffd5b613acd868285016139bf565b60e083015250613ae061012083016139a4565b610100820152613af361014083016139a4565b61012082015261016082810151610140830152610180830151908201526101a08201516001600160401b03811115613b29575f5ffd5b613b35868285016139bf565b61018083015250613b496101c083016139a4565b6101a0820152613b5c6101e083016136f5565b6101c0820152949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f613ba5604083018688613b6a565b8281036020840152613bb8818587613b6a565b979650505050505050565b606080825281018690525f8760808301825b89811015613c05578235613be881613296565b6001600160a01b0316825260209283019290910190600101613bd5565b508381036020850152613c1981888a613b6a565b9150508281036040840152613c2f818587613b6a565b9998505050505050505050565b6020808252602a908201527f4c617a79494d543a206c656166206d757374206265203c20534e41524b5f53436040820152691053105497d19251531160b21b606082015260800190565b60ff8181168382160190811115610c6657610c666135d2565b64ffffffffff8181168382160190811115610c6657610c666135d2565b6040810181835f5b6002811015613ce3578151835260209283019290910190600101613cc4565b50505092915050565b64ffffffffff8281168282160390811115610c6657610c666135d2565b5f82613d2357634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526023908201527f4c617a79494d543a206465707468206d757374206265203c3d204d41585f44456040820152620a0a8960eb1b606082015260800190565b6001815b6001841115610f1757808504811115613d8a57613d8a6135d2565b6001841615613d9857908102905b60019390931c928002613d6f565b5f82613db457506001610c66565b81613dc057505f610c66565b8160018114613dd65760028114613de057613e12565b6001915050610c66565b60ff841115613df157613df16135d2565b6001841b915064ffffffffff821115613e0c57613e0c6135d2565b50610c66565b5060208310610133831016604e8410600b8410161715613e4a575081810a64ffffffffff811115613e4557613e456135d2565b610c66565b613e5a64ffffffffff8484613d6b565b8064ffffffffff04821115613e7157613e716135d2565b029392505050565b5f61255164ffffffffff841664ffffffffff8416613da6565b64ffffffffff8181168382160290811690818114613eb257613eb26135d2565b509291505056fea164736f6c634300081c000a", "linkReferences": { "npm/poseidon-solidity@0.0.5/PoseidonT3.sol": { "PoseidonT3": [ { "length": 20, - "start": 7553 + "start": 7663 }, { "length": 20, - "start": 7737 + "start": 7847 }, { "length": 20, - "start": 8367 + "start": 8477 }, { "length": 20, - "start": 12201 + "start": 12311 }, { "length": 20, - "start": 12643 + "start": 12753 } ] } @@ -1292,28 +1297,28 @@ "PoseidonT3": [ { "length": 20, - "start": 7339 + "start": 7449 }, { "length": 20, - "start": 7523 + "start": 7633 }, { "length": 20, - "start": 8153 + "start": 8263 }, { "length": 20, - "start": 11987 + "start": 12097 }, { "length": 20, - "start": 12429 + "start": 12539 } ] } }, "immutableReferences": {}, "inputSourceName": "project/contracts/registry/CiphernodeRegistryOwnable.sol", - "buildInfoId": "solc-0_8_28-5001586370e544afe3682c8bcabe8ae3f3167a96" + "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" } \ No newline at end of file diff --git a/packages/enclave-contracts/contracts/Enclave.sol b/packages/enclave-contracts/contracts/Enclave.sol index 7591cdfe24..5b5ad9949d 100644 --- a/packages/enclave-contracts/contracts/Enclave.sol +++ b/packages/enclave-contracts/contracts/Enclave.sol @@ -81,10 +81,10 @@ contract Enclave is IEnclave, OwnableUpgradeable { mapping(bytes32 encryptionSchemeId => IPkVerifier pkVerifier) public pkVerifiers; - /// @notice Mapping from ParamSet enum to ABI-encoded BFV parameters. - /// @dev Populated during initialize(). Ciphernodes decode the enum directly; - /// the encoded bytes are stored for transparency / on-chain consumers. - mapping(ParamSet => bytes) public paramSetRegistry; + /// @notice Mapping from param set index to ABI-encoded BFV parameters. + /// @dev Ciphernodes map the uint8 index to their local BfvPreset. + /// New param sets can be added without a contract upgrade. + mapping(uint8 => bytes) public paramSetRegistry; /// @notice Mapping tracking fee payments for each E3. /// @dev Stores the amount paid for an E3, distributed to committee upon completion. @@ -652,11 +652,11 @@ contract Enclave is IEnclave, OwnableUpgradeable { emit EncryptionSchemeDisabled(encryptionSchemeId); } - /// @notice Registers ABI-encoded BFV parameters for a param set enum variant. - /// @param paramSet The ParamSet variant to register. + /// @notice Registers ABI-encoded BFV parameters for a param set index. + /// @param paramSet The param set index (0 = Insecure512, 1 = Secure8192, ...). /// @param encodedParams ABI-encoded BFV parameters (degree, plaintext_modulus, moduli[]). function setParamSet( - ParamSet paramSet, + uint8 paramSet, bytes calldata encodedParams ) public onlyOwner { require(encodedParams.length > 0, "Empty params"); diff --git a/packages/enclave-contracts/contracts/interfaces/IE3.sol b/packages/enclave-contracts/contracts/interfaces/IE3.sol index 77c50dcfca..a821787f39 100644 --- a/packages/enclave-contracts/contracts/interfaces/IE3.sol +++ b/packages/enclave-contracts/contracts/interfaces/IE3.sol @@ -36,7 +36,7 @@ struct E3 { uint256[2] inputWindow; bytes32 encryptionSchemeId; IE3Program e3Program; - IEnclave.ParamSet paramSet; + uint8 paramSet; bytes customParams; IDecryptionVerifier decryptionVerifier; IPkVerifier pkVerifier; diff --git a/packages/enclave-contracts/contracts/interfaces/IEnclave.sol b/packages/enclave-contracts/contracts/interfaces/IEnclave.sol index 033a2c9fd6..09257481c9 100644 --- a/packages/enclave-contracts/contracts/interfaces/IEnclave.sol +++ b/packages/enclave-contracts/contracts/interfaces/IEnclave.sol @@ -29,13 +29,6 @@ interface IEnclave { /// @notice BFV encryption parameter sets. /// @dev Each variant maps to a threshold BFV preset. The DKG counterpart - /// is derived automatically by the ciphernode software. - /// New variants require a contract upgrade + ciphernode software update. - enum ParamSet { - Insecure512, - Secure8192 - } - /// @notice Lifecycle stages of an E3 computation enum E3Stage { None, @@ -191,9 +184,9 @@ interface IEnclave { event E3ProgramDisabled(IE3Program e3Program); /// @notice Emitted when a BFV param set is registered or updated. - /// @param paramSet The ParamSet variant. + /// @param paramSet The param set index. /// @param encodedParams ABI-encoded BFV parameters. - event ParamSetRegistered(ParamSet paramSet, bytes encodedParams); + event ParamSetRegistered(uint8 paramSet, bytes encodedParams); /// @notice Emitted when E3RefundManager contract is set. /// @param e3RefundManager The address of the E3RefundManager contract. @@ -424,7 +417,7 @@ interface IEnclave { CommitteeSize committeeSize; uint256[2] inputWindow; IE3Program e3Program; - ParamSet paramSet; + uint8 paramSet; bytes computeProviderParams; bytes customParams; /// @notice When true, ciphernodes generate and fold wrapper proofs @@ -534,12 +527,9 @@ interface IEnclave { function disableEncryptionScheme(bytes32 encryptionSchemeId) external; /// @notice Registers ABI-encoded BFV parameters for a param set enum variant. - /// @param paramSet The ParamSet variant to register. + /// @param paramSet The param set index to register. /// @param encodedParams ABI-encoded BFV parameters. - function setParamSet( - ParamSet paramSet, - bytes calldata encodedParams - ) external; + function setParamSet(uint8 paramSet, bytes calldata encodedParams) external; /// @notice Sets the full pricing configuration. /// @param config The new pricing configuration. diff --git a/templates/default/server/index.ts b/templates/default/server/index.ts index b7480de21a..fa383f36f1 100644 --- a/templates/default/server/index.ts +++ b/templates/default/server/index.ts @@ -71,8 +71,10 @@ async function runProgram(e3Id: bigint): Promise { const sdk = await createPrivateSDK() const e3Details = await sdk.getE3(e3Id) const paramSetId = e3Details.paramSet - const e3ProgramParams = (await sdk.sdk.getPublicClient().readContract({ - address: sdk.sdk.getContractAddresses().enclave, + const publicClient = sdk.getPublicClient() + const { ENCLAVE_CONTRACT } = getCheckedEnvVars() + const e3ProgramParams = (await publicClient.readContract({ + address: ENCLAVE_CONTRACT as `0x${string}`, abi: [ { name: 'paramSetRegistry', From 1d923730c775983b681bdb9a03d2ad1073e3aca2 Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Tue, 7 Apr 2026 14:19:44 +0100 Subject: [PATCH 04/10] chore: pr comments --- crates/aggregator/src/ext.rs | 28 +- crates/keyshare/src/ext.rs | 12 +- fhe.md | 2 +- .../contracts/Enclave.sol/Enclave.json | 6 +- .../IBondingRegistry.json | 2 +- .../ICiphernodeRegistry.json | 2 +- .../interfaces/IEnclave.sol/IEnclave.json | 2 +- .../ISlashingManager.json | 2 +- .../CiphernodeRegistryOwnable.json | 2 +- .../enclave-contracts/contracts/Enclave.sol | 1 + .../contracts/interfaces/IEnclave.sol | 4 +- tests/integration/restart.sh | 252 ------------------ 12 files changed, 38 insertions(+), 277 deletions(-) delete mode 100755 tests/integration/restart.sh diff --git a/crates/aggregator/src/ext.rs b/crates/aggregator/src/ext.rs index 7204022a19..d7712e8215 100644 --- a/crates/aggregator/src/ext.rs +++ b/crates/aggregator/src/ext.rs @@ -106,16 +106,20 @@ impl E3Extension for PublicKeyAggregatorExtension { return Ok(()); }; - let params_preset = ctx - .get_dependency(META_KEY) - .map(|meta| meta.params_preset) - .unwrap_or_default(); + let Some(meta) = ctx.get_dependency(META_KEY) else { + self.bus.err( + EType::PublickeyAggregation, + anyhow!(ERROR_PUBKEY_META_MISSING), + ); + + return Ok(()); + }; let value = create_publickey_aggregator( fhe.clone(), self.bus.clone(), ctx.e3_id.clone(), sync_state, - params_preset, + meta.params_preset, ); // send to context @@ -234,16 +238,20 @@ impl E3Extension for ThresholdPlaintextAggregatorExtension { return Ok(()); }; - let params_preset = ctx - .get_dependency(META_KEY) - .map(|meta| meta.params_preset) - .unwrap_or_default(); + let Some(meta) = ctx.get_dependency(META_KEY) else { + self.bus.err( + EType::PlaintextAggregation, + anyhow!(ERROR_TRBFV_PLAINTEXT_META_MISSING), + ); + + return Ok(()); + }; let value = ThresholdPlaintextAggregator::new( ThresholdPlaintextAggregatorParams { bus: self.bus.clone(), sortition: self.sortition.clone(), e3_id: ctx.e3_id.clone(), - params_preset, + params_preset: meta.params_preset, }, sync_state, ) diff --git a/crates/keyshare/src/ext.rs b/crates/keyshare/src/ext.rs index e22a85d42c..89e9f051a9 100644 --- a/crates/keyshare/src/ext.rs +++ b/crates/keyshare/src/ext.rs @@ -14,7 +14,6 @@ use async_trait::async_trait; use e3_crypto::Cipher; use e3_data::{AutoPersist, RepositoriesFactory}; use e3_events::{prelude::*, BusHandle, EType, EnclaveEvent, EnclaveEventData}; -use e3_fhe_params::BfvPreset; use e3_request::{E3Context, E3ContextSnapshot, E3Extension, META_KEY}; use crate::KeyshareState; @@ -106,10 +105,13 @@ impl E3Extension for ThresholdKeyshareExtension { }; // Derive DKG preset from persisted E3Meta - let share_enc_preset = ctx - .get_dependency(META_KEY) - .and_then(|meta| meta.params_preset.dkg_counterpart()) - .unwrap_or(BfvPreset::InsecureThreshold512); + let Some(meta) = ctx.get_dependency(META_KEY) else { + return Err(anyhow!(ERROR_KEYSHARE_META_MISSING)); + }; + let share_enc_preset = meta + .params_preset + .dkg_counterpart() + .unwrap_or(meta.params_preset); // Construct from snapshot let value = ThresholdKeyshare::new(ThresholdKeyshareParams { diff --git a/fhe.md b/fhe.md index 41101f2f10..6a830f71d4 100644 --- a/fhe.md +++ b/fhe.md @@ -78,7 +78,7 @@ integers. With k bits of precision: Torus element t ≈ round(t × 2^k) stored as a signed integer -Example (k = 8 bits): t = 0.25 → 0.25 × 256 = 64 → stored as 64 t = 0.75 → 0.75 × +Example (k = 8 bits): t = 0.25 → 0.25 × 256 = 64 → stored as 64; t = 0.75 → 0.75 × 256 = 192 → stored as 192 --- diff --git a/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json b/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json index 7cb4f48d4d..4d28e892fe 100644 --- a/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json +++ b/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json @@ -2539,11 +2539,11 @@ "type": "function" } ], - "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615942806100d65f395ff3fe608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e0366004614548565b61092e565b005b61030f6102f536600461456a565b5f908152600960205260409020546001600160a01b031690565b60405161031c919061458e565b60405180910390f35b61030f61033336600461456a565b60096020525f90815260409020546001600160a01b031681565b61036061035b3660046145b5565b6109da565b60405163ffffffff909116815260200161031c565b6102e5610383366004614548565b610a16565b6102e56103963660046145ed565b610abb565b6103bd6103a936600461456a565b5f908152600f602052604090205460ff1690565b60405161031c919061462f565b6103dd6103d836600461456a565b610acf565b60405161031c9e9d9c9b9a9998979695949392919061467b565b61040a61040536600461456a565b610c7a565b60405161031c9190614855565b61043661042536600461456a565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e5610452366004614872565b610ef7565b6102e561046536600461456a565b611134565b6102e5610478366004614548565b6111c3565b61049061048b366004614908565b611256565b60405161031c9190614921565b60045461030f906001600160a01b031681565b61043660055481565b6102e56112ed565b6102e56104cf366004614933565b611300565b6102e56104e236600461456a565b611389565b6102e56104f5366004614961565b611488565b6102e56105083660046149be565b61157c565b60015461030f906001600160a01b031681565b61030f61161d565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b61055561164b565b60405161031c9190614a0c565b6102e561057036600461456a565b611691565b61055561058336600461456a565b6117ff565b61059b61059636600461456a565b611858565b60405161031c929190614a2d565b61030f6105b736600461456a565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614a43565b61187f565b604051901515815260200161031c565b610436610602366004614aba565b611b17565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614af1565b61030f61076736600461456a565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614bfe565b61209b565b6102e56107a2366004614ca3565b6122cb565b6102e56107b5366004614548565b612387565b6102e56107c8366004614961565b61242e565b6105e46107db366004614548565b60076020525f908152604090205460ff1681565b61043660065481565b6102e5610806366004614933565b6124eb565b6102e561081936600461456a565b6125a5565b61084061082c36600461456a565b5f908152600d602052604090205460ff1690565b60405161031c9190614cdd565b6102e561085b366004614ceb565b6125e2565b6102e561086e366004614548565b61286f565b6102e5610881366004614d05565b612909565b60025461030f906001600160a01b031681565b6102e56108a7366004614548565b612bb6565b6108bf6108ba366004614aba565b612bf0565b60405161031c929190614d3c565b6103bd6108db36600461456a565b613501565b6102e56108ee366004614548565b61369b565b61030f61090136600461456a565b600a6020525f90815260409020546001600160a01b031681565b6102e5610929366004614548565b613733565b6109366137c2565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e6137c2565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b8152600401610988919061458e565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab090839061458e565b60405180910390a150565b610ac36137c2565b610acc816137f4565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614d5c565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614d5c565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c826143b6565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf614607565b6003811115610cd057610cd0614607565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152600160a01b900460ff166060820152600782018054608090920191610d5290614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90614d5c565b8015610dc95780601f10610da057610100808354040283529160200191610dc9565b820191905f5260205f20905b815481529060010190602001808311610dac57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e1a90614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690614d5c565b8015610e915780601f10610e6857610100808354040283529160200191610e91565b820191905f5260205f20905b815481529060010190602001808311610e7457829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610ef15760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f006138b1565b805490915060ff600160401b82041615906001600160401b03165f81158015610f265750825b90505f826001600160401b03166001148015610f415750303b155b905081158015610f4f575080155b15610f6d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f9757845460ff60401b1916600160401b1785555b610fa0336138db565b610fa9876125a5565b610fb28b61369b565b610fbb8a61286f565b610fc48961092e565b610fcd88610a16565b610fd6866137f4565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110bf61161d565b6001600160a01b03168c6001600160a01b0316146110e0576110e08c612bb6565b831561112657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61113c6137c2565b5f8181526009602052604090205481906001600160a01b0316611175576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111cb6137c2565b6001600160a01b0381165f90815260076020526040902054819060ff16611206576040516321ac7c5f60e01b8152600401610988919061458e565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab090839061458e565b600b6020525f90815260409020805461126e90614d5c565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90614d5c565b80156112e55780601f106112bc576101008083540402835291602001916112e5565b820191905f5260205f20905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b6112f56137c2565b6112fe5f6138ec565b565b6113086137c2565b6001600160a01b0381161580159061133957505f828152600a60205260409020546001600160a01b03828116911614155b829061135b576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113b35760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113d8576113d8614607565b146113fd57816001826040516337e1404160e01b815260040161098893929190614d8e565b5f828152600d60205260409020805460ff191660021790556015546114229042614dc3565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f5160206159165f395f51905f526001600260405161147c929190614dd6565b60405180910390a25050565b5f546001600160a01b031633146114b25760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff1660028160068111156114e2576114e2614607565b1461150757836002826040516337e1404160e01b815260040161098893929190614d8e565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f5160206159165f395f51905f526002600360405161156e929190614dd6565b60405180910390a250505050565b6115846137c2565b806115c05760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b60ff83165f908152600b602052604090206115dc828483614e64565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161161093929190614f40565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b61166c60405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff1660068160068111156116b6576116b6614607565b1482906116d957604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c6020526040902054828161170a576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c602052604081208190556117248461395c565b5f858152601160205260409020546002549192506001600160a01b03908116916117519183911685613a49565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b69790611787908890879087908790600401614fa8565b5f604051808303815f87803b15801561179e575f5ffd5b505af11580156117b0573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a073178484516040516117f0929190918252602082015260400190565b60405180910390a25050505050565b61182060405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118758482613aa6565b9250925050915091565b5f5f61188a87610c7a565b5f888152600d602052604090205490915060ff1660038160068111156118b2576118b2614607565b14886003839091926118da576040516337e1404160e01b815260040161098893929190614d8e565b5050505f888152600e602090815260409182902082516060810184528154815260018201549281018390526002909101549281019290925289904281101561193e576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119755760405163017e35e560e71b815260048101929092526024820152604401610988565b50506101608301518990156119a057604051637eb9cea960e11b815260040161098891815260200190565b505f88886040516119b2929190614ff3565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff191660041790556017549091506119f49042614dc3565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611a41908d9085908c908c90600401615002565b6020604051808303815f875af1158015611a5d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a81919061502e565b9450888886611aa557604051632f9f8ab960e01b8152600401610988929190615049565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611ad9929190615049565b60405180910390a2895f5160206159165f395f51905f5260036004604051611b02929190614dd6565b60405180910390a25050505095945050505050565b5f80601281611b29602086018661505c565b6003811115611b3a57611b3a614607565b6003811115611b4b57611b4b614607565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611b72579050505050505090505f81600160028110611bc957611bc9614fdf565b602002015163ffffffff1611835f016020810190611be7919061505c565b90611c065760405163286c068d60e11b81526004016109889190615075565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d31576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d10919061505c565b90611d2f5760405163010b971d60e31b81526004016109889190615075565b505b6101c081015163ffffffff1615611d80576101c081015184519063ffffffff9081169082161015611d7e57604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611dad5760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611dcb9161ffff1690615083565b611dd5919061509a565b61271061ffff1683610160015161ffff16601560010154611df69190615083565b611e00919061509a565b61271061ffff1684610140015161ffff1660155f0154611e209190615083565b611e2a919061509a565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611e76573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9a91906150b9565b611ea49190614dc3565b611eae91906150d0565b611eb89190614dc3565b611ec29190614dc3565b611ecc9190614dc3565b90505f611eda6001866150d0565b611ee5906002615083565b611ef0906002615083565b611efb906006614dc3565b90505f85845f0151611f0d9190615083565b905081868560200151611f209190615083565b611f2a9190615083565b611f349082614dc3565b90506001861115611f7c576002611f4c6001886150d0565b611f569088615083565b8560400151611f659190615083565b611f6f919061509a565b611f799082614dc3565b90505b81868560c00151611f8d9190615083565b611f979190615083565b611fa19082614dc3565b905082868560600151611fb49190615083565b611fbe9190615083565b611fc89082614dc3565b9050848460800151611fda9190615083565b611fe49082614dc3565b9050600185111561202c576002611ffc6001876150d0565b6120069087615083565b85604001516120159190615083565b61201f919061509a565b6120299082614dc3565b90505b60a084015161203b9082614dc3565b610100850151909150612710906120569061ffff1682614dc3565b6120609083615083565b61206a919061509a565b9750878061208e57604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f6120a689610c7a565b5f8a8152600d602052604090205490915060ff1660048160068111156120ce576120ce614607565b148a6004839091926120f6576040516337e1404160e01b815260040161098893929190614d8e565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b9042811015612159576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121768a8c83614e64565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b6040516121ba929190614ff3565b6040519081900381206001600160e01b031960e084901b1682526121e8918c908c908c908c906004016150e3565b602060405180830381865afa158015612203573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612227919061502e565b935089898561224b57604051632f9f8ab960e01b8152600401610988929190615049565b50506122568b613c2e565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b60405161228c949392919061511b565b60405180910390a28a5f5160206159165f395f51905f52600460056040516122b5929190614dd6565b60405180910390a2505050979650505050505050565b5f546001600160a01b03163314806122ed57506003546001600160a01b031633145b61230a57604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156123205750600d60ff821611155b6123655760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b612383828260ff16600d81111561237e5761237e614607565b61409a565b5050565b61238f6137c2565b6001600160a01b0381166123e55760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b03163314612459576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b1580156124a3575f5ffd5b505af11580156124b5573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161147c91815260200190565b6124f36137c2565b6001600160a01b0381161580159061252457505f828152600960205260409020546001600160a01b03828116911614155b8290612546576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b6125ad6137c2565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b6125ea6137c2565b6127106125ff61012083016101008401615166565b61ffff16111561261761012083016101008401615166565b9061263c576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061265261014083016101208401615166565b61ffff16111561266a61014083016101208401615166565b9061268f576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126a561016083016101408401615166565b61ffff1611156126bd61016083016101408401615166565b906126e257604051633239953960e01b815261ffff9091166004820152602401610988565b506127106126f861018083016101608401615166565b61ffff16111561271061018083016101608401615166565b9061273557604051633239953960e01b815261ffff9091166004820152602401610988565b5061271061274b6101a083016101808401615166565b61ffff1611156127636101a083016101808401615166565b9061278857604051633239953960e01b815261ffff9091166004820152602401610988565b5061279b61014082016101208301615166565b61ffff1615806127c457505f6127b8610100830160e08401614548565b6001600160a01b031614155b6127e15760405163015f92ff60e51b815260040160405180910390fd5b6127f36101e082016101c0830161519d565b63ffffffff1661280b6101c083016101a0840161519d565b63ffffffff161015612830576040516392f55c6560e01b815260040160405180910390fd5b80601861283d82826151dc565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab0919061539a565b6128776137c2565b6001600160a01b0381161580159061289d57506001546001600160a01b03828116911614155b81906128bd576040516320252f0b60e01b8152600401610988919061458e565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab090839061458e565b6129116137c2565b61291e602082018261519d565b63ffffffff16612934604083016020840161519d565b63ffffffff161015801561295957505f612951602083018361519d565b63ffffffff16115b61297657604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612aaf576101a081015163ffffffff16612a5f604084016020850161519d565b63ffffffff161015612a77604084016020850161519d565b826101a001519091612aac57604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b26576101c081015163ffffffff16612ad9602084018461519d565b63ffffffff161015612aee602084018461519d565b826101c001519091612b235760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612b3c57612b3c614607565b6003811115612b4d57612b4d614607565b815260208101919091526040015f20612b67916002614433565b50826003811115612b7a57612b7a614607565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612ba991906154a4565b60405180910390a2505050565b612bbe6137c2565b6001600160a01b038116612be7575f604051631e4fbdf760e01b8152600401610988919061458e565b610acc816138ec565b5f612bf96143b6565b5f601281612c0a602087018761505c565b6003811115612c1b57612c1b614607565b6003811115612c2c57612c2c614607565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612c53579050505050505090505f81600160028110612caa57612caa614fdf565b602002015163ffffffff1611845f016020810190612cc8919061505c565b90612ce75760405163286c068d60e11b81526004016109889190615075565b50602084013542811015612d1157604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612d3f5760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612d574260408901356150d0565b612d619190614dc3565b612d6b9190614dc3565b905060055481108190612d94576040516313b783af60e21b815260040161098891815260200190565b5060075f612da86080880160608901614548565b6001600160a01b0316815260208101919091526040015f205460ff16612dd46080870160608801614548565b90612df35760405163295a6a6f60e11b8152600401610988919061458e565b505f612dfe86611b17565b60068054965090915085905f612e13836154e4565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612eee9190890135614dc3565b5f878152600e6020908152604090912060010191909155818652612f149088018861505c565b85602001906003811115612f2a57612f2a614607565b90816003811115612f3d57612f3d614607565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612f859060808901908901614548565b6001600160a01b031660a080870191909152612fa690880160808901614908565b60ff1660c080870191909152612fbe908801886154fc565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e08087019190915261300b90610100890190890161553e565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a0860181905260045461305b916001600160a01b039091169030856141f5565b5f600b8161306f60a08b0160808c01614908565b60ff1660ff1681526020019081526020015f20805461308d90614d5c565b80601f01602080910402602001604051908101604052809291908181526020018280546130b990614d5c565b80156131045780601f106130db57610100808354040283529160200191613104565b820191905f5260205f20905b8154815290600101906020018083116130e757829003601f168201915b505050505090505f81511161315b5760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f61316c60808a0160608b01614548565b6001600160a01b031663fefd9a8b89858561318a60a08f018f6154fc565b8f8060c0019061319a91906154fc565b6040518863ffffffff1660e01b81526004016131bc9796959493929190615559565b6020604051808303815f875af11580156131d8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131fc91906150b9565b5f818152600960205260409020549091506001600160a01b03168181613238576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b03168281613272576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff1991909116908360038111156132d0576132d0614607565b0217905550604082015181600201556060820151816003019060026132f69291906144d4565b506080820151600582015560a082015160068201805460c085015160ff16600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560e0820151600782019061334f90826155ad565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906133b790826155ad565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b9061341d908d9089908d90600401615662565b6020604051808303815f875af1158015613439573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061345d919061502e565b61347a57604051630d8dbe2560e01b815260040160405180910390fd5b61348a60808c0160608d01614548565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b6040516134c4929190614d3c565b60405180910390a2895f5160206159165f395f51905f525f60016040516134ec929190614dd6565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff168181600681111561352557613525614607565b0361354a57826001826040516337e1404160e01b815260040161098893929190614d8e565b600581600681111561355e5761355e614607565b0361357f5760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561359357613593614607565b036135b457604051633de16e3560e11b815260048101849052602401610988565b5f6135bf8483613aa6565b93509050806135e457604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d81111561362d5761362d614607565b0217905550835f5160206159165f395f51905f52836006604051613652929190614dd6565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb838560405161368c9291906156a7565b60405180910390a25050919050565b6136a36137c2565b6001600160a01b038116158015906136c857505f546001600160a01b03828116911614155b81906136e8576040516375ac4eb760e11b8152600401610988919061458e565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab090839061458e565b6001600160a01b0381165f90815260076020526040902054819060ff161561376f5760405163b29d459560e01b8152600401610988919061458e565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab090839061458e565b336137cb61161d565b6001600160a01b0316146112fe573360405163118cdaa760e01b8152600401610988919061458e565b80356138135760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138375760405163055f269d60e01b815260040160405180910390fd5b5f81604001351161385b5760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b6138e3614234565b610acc81614259565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d81111561398457613984614607565b14806139a15750600281600d81111561399f5761399f614607565b145b156139d9575f5b6040519080825280602002602001820160405280156139d1578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613a3f57506040513d5f823e601f3d908101601f19168201604052613a3c919081019061577e565b60015b6139d1575f6139a8565b613aa183846001600160a01b031663a9059cbb8585604051602401613a6f929190615843565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614261565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613b20573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b4491906150b9565b90506001856006811115613b5a57613b5a614607565b148015613b6657508042115b15613b7957600180935093505050613c27565b6002856006811115613b8d57613b8d614607565b148015613b9a5750815142115b15613bae5760016003935093505050613c27565b6003856006811115613bc257613bc2614607565b148015613bd25750816020015142115b15613be65760016006935093505050613c27565b6004856006811115613bfa57613bfa614607565b148015613c0a5750816040015142115b15613c1e576001600a935093505050613c27565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613c73573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613c9a919081019061577e565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613d39576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d059088908890869060040161585c565b5f604051808303815f87803b158015613d1c575f5ffd5b505af1158015613d2e573d5f5f3e3d5ffd5b505050505050505050565b825f03613dda575f858152601060205260409020546001600160a01b03168015613d7157613d716001600160a01b0383168285613a49565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613da59089908990879060040161585c565b5f604051808303815f87803b158015613dbc575f5ffd5b505af1158015613dce573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613e1a57506001600160a01b03811615155b15613e5657612710613e3061ffff841687615083565b613e3a919061509a565b92508215613e5657613e566001600160a01b0385168285613a49565b5f613e6184876150d0565b90505f876001600160401b03811115613e7c57613e7c614df1565b604051908082528060200260200182016040528015613ea5578160200160208202803683370190505b5090505f613eb3898461509a565b90505f805b8a811015613ef25782848281518110613ed357613ed3614fdf565b6020908102919091010152613ee88383614dc3565b9150600101613eb8565b505f613efe82866150d0565b90508015613f3b578084613f1360018e6150d0565b81518110613f2357613f23614fdf565b60200260200101818151613f379190614dc3565b9052505b600154613f55906001600160a01b038b81169116876142c4565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b8152600401613f99939291906158bc565b5f604051808303815f87803b158015613fb0575f5ffd5b505af1158015613fc2573d5f5f3e3d5ffd5b5050600154613fe092506001600160a01b038c81169250165f6142c4565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d866040516140129291906158f1565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b815260040161405e9392919061585c565b5f604051808303815f87803b158015614075575f5ffd5b505af1158015614087573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff16908160068111156140be576140be614607565b036140e357826001826040516337e1404160e01b815260040161098893929190614d8e565b60058160068111156140f7576140f7614607565b036141185760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561412c5761412c614607565b0361414d57604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561419657614196614607565b0217905550825f5160206159165f395f51905f528260066040516141bb929190614dd6565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612ba99291906156a7565b6040516001600160a01b03848116602483015283811660448301526064820183905261422e9186918216906323b872dd90608401613a6f565b50505050565b61423c614354565b6112fe57604051631afcd79f60e31b815260040160405180910390fd5b612bbe614234565b5f5f60205f8451602086015f885af180614280576040513d5f823e3d81fd5b50505f513d915081156142975780600114156142a4565b6001600160a01b0384163b155b1561422e5783604051635274afe760e01b8152600401610988919061458e565b5f836001600160a01b031663095ea7b384846040516024016142e7929190615843565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050509050614320848261436d565b61422e5761434a84856001600160a01b031663095ea7b3865f604051602401613a6f929190615843565b61422e8482614261565b5f61435d6138b1565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f5190508280156143ac5750811561439e57806001146143ac565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f81526020016143de614502565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b6001830191839082156144c4579160200282015f5b8382111561449257833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff1602179055509260200192600401602081600301049283019260010302614448565b80156144c25782816101000a81549063ffffffff0219169055600401602081600301049283019260010302614492565b505b506144d0929150614520565b5090565b82600281019282156144c4579160200282015b828111156144c45782518255916020019190600101906144e7565b60405180604001604052806002906020820280368337509192915050565b5b808211156144d0575f8155600101614521565b6001600160a01b0381168114610acc575f5ffd5b5f60208284031215614558575f5ffd5b813561456381614534565b9392505050565b5f6020828403121561457a575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b8035600481106145b0575f5ffd5b919050565b5f5f604083850312156145c6575f5ffd5b6145cf836145a2565b946020939093013593505050565b5f60608284031215610ef1575f5ffd5b5f606082840312156145fd575f5ffd5b61456383836145dd565b634e487b7160e01b5f52602160045260245ffd5b600e811061462b5761462b614607565b9052565b602081016138d5828461461b565b6004811061462b5761462b614607565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e815261468b602082018f61463d565b8c60408201528b60608201526146a4608082018c614581565b60ff8a1660a08201526101c060c08201525f6146c46101c083018b61464d565b6146d160e084018b614581565b6146df61010084018a614581565b8761012084015286610140840152828103610160840152614700818761464d565b915050614711610180830185614581565b8215156101a08301529f9e505050505050505050505050505050565b805f5b600281101561422e578151845260209384019390910190600101614730565b805182525f6020820151614766602085018261463d565b50604082015160408401526060820151614783606085018261472d565b50608082015160a084015260a08201516147a060c0850182614581565b5060c082015160ff811660e08501525060e08201516102006101008501526147cc61020085018261464d565b90506101008301516147e2610120860182614581565b506101208301516147f7610140860182614581565b506101408301516101608501526101608301516101808501526101808301518482036101a0860152614829828261464d565b9150506101a08301516148406101c0860182614581565b506101c08301518015156101e08601526139d1565b602081525f614563602083018461474f565b80356145b081614534565b5f5f5f5f5f5f5f610120888a031215614889575f5ffd5b873561489481614534565b965060208801356148a481614534565b955060408801356148b481614534565b945060608801356148c481614534565b935060808801356148d481614534565b925060a088013591506148ea8960c08a016145dd565b905092959891949750929550565b803560ff811681146145b0575f5ffd5b5f60208284031215614918575f5ffd5b614563826148f8565b602081525f614563602083018461464d565b5f5f60408385031215614944575f5ffd5b82359150602083013561495681614534565b809150509250929050565b5f5f60408385031215614972575f5ffd5b50508035926020909101359150565b5f5f83601f840112614991575f5ffd5b5081356001600160401b038111156149a7575f5ffd5b602083019150836020828501011115613c27575f5ffd5b5f5f5f604084860312156149d0575f5ffd5b6149d9846148f8565b925060208401356001600160401b038111156149f3575f5ffd5b6149ff86828701614981565b9497909650939450505050565b815181526020808301519082015260408083015190820152606081016138d5565b821515815260408101614563602083018461461b565b5f5f5f5f5f60608688031215614a57575f5ffd5b8535945060208601356001600160401b03811115614a73575f5ffd5b614a7f88828901614981565b90955093505060408601356001600160401b03811115614a9d575f5ffd5b614aa988828901614981565b969995985093965092949392505050565b5f60208284031215614aca575f5ffd5b81356001600160401b03811115614adf575f5ffd5b82016101008185031215614563575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614b4b60e0840182614581565b50610100830151614b6361010084018261ffff169052565b50610120830151614b7b61012084018261ffff169052565b50610140830151614b9361014084018261ffff169052565b50610160830151614bab61016084018261ffff169052565b50610180830151614bc361018084018261ffff169052565b506101a0830151614bdd6101a084018263ffffffff169052565b506101c0830151614bf76101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614c14575f5ffd5b8735965060208801356001600160401b03811115614c30575f5ffd5b614c3c8a828b01614981565b90975095505060408801356001600160401b03811115614c5a575f5ffd5b614c668a828b01614981565b90955093505060608801356001600160401b03811115614c84575f5ffd5b614c908a828b01614981565b989b979a50959850939692959293505050565b5f5f60408385031215614cb4575f5ffd5b82359150614cc4602084016148f8565b90509250929050565b6007811061462b5761462b614607565b602081016138d58284614ccd565b5f6101e0828403128015614cfd575f5ffd5b509092915050565b5f5f60608385031215614d16575f5ffd5b614d1f836145a2565b915083606084011115614d30575f5ffd5b50926020919091019150565b828152604060208201525f614d54604083018461474f565b949350505050565b600181811c90821680614d7057607f821691505b602082108103610ef157634e487b7160e01b5f52602260045260245ffd5b83815260608101614da26020830185614ccd565b614d546040830184614ccd565b634e487b7160e01b5f52601160045260245ffd5b808201808211156138d5576138d5614daf565b60408101614de48285614ccd565b6145636020830184614ccd565b634e487b7160e01b5f52604160045260245ffd5b601f821115613aa157805f5260205f20601f840160051c81016020851015614e2a5750805b601f840160051c820191505b81811015614e49575f8155600101614e36565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614e7b57614e7b614df1565b614e8f83614e898354614d5c565b83614e05565b5f601f841160018114614ebb575f8515614ea95750838201355b614eb38682614e50565b845550614e49565b5f83815260208120601f198716915b82811015614eea5786850135825560209485019460019092019101614eca565b5086821015614f06575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60ff84168152604060208201525f614f5c604083018486614f18565b95945050505050565b5f8151808452602084019350602083015f5b82811015614f9e5781516001600160a01b0316865260209586019590910190600101614f77565b5093949350505050565b848152836020820152608060408201525f614fc66080830185614f65565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f6143ac606083018486614f18565b8015158114610acc575f5ffd5b5f6020828403121561503e575f5ffd5b815161456381615021565b602081525f614d54602083018486614f18565b5f6020828403121561506c575f5ffd5b614563826145a2565b602081016138d5828461463d565b80820281158282048414176138d5576138d5614daf565b5f826150b457634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156150c9575f5ffd5b5051919050565b818103818111156138d5576138d5614daf565b858152606060208201525f6150fc606083018688614f18565b828103604084015261510f818587614f18565b98975050505050505050565b604081525f61512e604083018688614f18565b8281036020840152615141818587614f18565b979650505050505050565b61ffff81168114610acc575f5ffd5b80356145b08161514c565b5f60208284031215615176575f5ffd5b81356145638161514c565b63ffffffff81168114610acc575f5ffd5b80356145b081615181565b5f602082840312156151ad575f5ffd5b813561456381615181565b5f81356138d581614534565b5f81356138d58161514c565b5f81356138d581615181565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c082013560068201556007810161524c61522f60e085016151b8565b82546001600160a01b0319166001600160a01b0391909116178255565b61527c61525c61010085016151c4565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6152ac61528c61012085016151c4565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b6152dc6152bc61014085016151c4565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b61530c6152ec61016085016151c4565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b61533c61531c61018085016151c4565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b50600881016153686153516101a085016151d0565b825463ffffffff191663ffffffff91909116178255565b613aa16153786101c085016151d0565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e081016153eb60e08401614867565b6153f860e0840182614581565b50615406610100840161515b565b61ffff1661010083015261541d610120840161515b565b61ffff16610120830152615434610140840161515b565b61ffff1661014083015261544b610160840161515b565b61ffff16610160830152615462610180840161515b565b61ffff166101808301526154796101a08401615192565b63ffffffff166101a08301526154926101c08401615192565b63ffffffff81166101c0840152614bf7565b6040810181835f5b60028110156154db5781356154c081615181565b63ffffffff16835260209283019291909101906001016154ac565b50505092915050565b5f600182016154f5576154f5614daf565b5060010190565b5f5f8335601e19843603018112615511575f5ffd5b8301803591506001600160401b0382111561552a575f5ffd5b602001915036819003821315613c27575f5ffd5b5f6020828403121561554e575f5ffd5b813561456381615021565b87815286602082015260a060408201525f61557760a083018861464d565b828103606084015261558a818789614f18565b9050828103608084015261559f818587614f18565b9a9950505050505050505050565b81516001600160401b038111156155c6576155c6614df1565b6155da816155d48454614d5c565b84614e05565b6020601f821160018114615607575f83156155f55750848201515b6155ff8482614e50565b855550614e49565b5f84815260208120601f198516915b828110156156365787850151825560209485019460019092019101615616565b508482101561565357868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561569c57815163ffffffff16835260209283019290910190600101615677565b505050949350505050565b604081016156b58285614ccd565b614563602083018461461b565b604051601f8201601f191681016001600160401b03811182821017156156ea576156ea614df1565b604052919050565b5f6001600160401b0382111561570a5761570a614df1565b5060051b60200190565b5f82601f830112615723575f5ffd5b8151615736615731826156f2565b6156c2565b8082825260208201915060208360051b860101925085831115615757575f5ffd5b602085015b8381101561577457805183526020928301920161575c565b5095945050505050565b5f5f6040838503121561578f575f5ffd5b82516001600160401b038111156157a4575f5ffd5b8301601f810185136157b4575f5ffd5b80516157c2615731826156f2565b8082825260208201915060208360051b8501019250878311156157e3575f5ffd5b6020840193505b8284101561580e5783516157fd81614534565b8252602093840193909101906157ea565b8095505050505060208301516001600160401b0381111561582d575f5ffd5b61583985828601615714565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f6158746060830185614f65565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b82811015614f9e57815186526020958601959091019060010161589e565b6001600160a01b03841681526060602082018190525f906158df90830185614f65565b82810360408401526143ac818561588c565b604081525f6159036040830185614f65565b8281036020840152614f5c818561588c56fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", - "deployedBytecode": "0x608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e0366004614548565b61092e565b005b61030f6102f536600461456a565b5f908152600960205260409020546001600160a01b031690565b60405161031c919061458e565b60405180910390f35b61030f61033336600461456a565b60096020525f90815260409020546001600160a01b031681565b61036061035b3660046145b5565b6109da565b60405163ffffffff909116815260200161031c565b6102e5610383366004614548565b610a16565b6102e56103963660046145ed565b610abb565b6103bd6103a936600461456a565b5f908152600f602052604090205460ff1690565b60405161031c919061462f565b6103dd6103d836600461456a565b610acf565b60405161031c9e9d9c9b9a9998979695949392919061467b565b61040a61040536600461456a565b610c7a565b60405161031c9190614855565b61043661042536600461456a565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e5610452366004614872565b610ef7565b6102e561046536600461456a565b611134565b6102e5610478366004614548565b6111c3565b61049061048b366004614908565b611256565b60405161031c9190614921565b60045461030f906001600160a01b031681565b61043660055481565b6102e56112ed565b6102e56104cf366004614933565b611300565b6102e56104e236600461456a565b611389565b6102e56104f5366004614961565b611488565b6102e56105083660046149be565b61157c565b60015461030f906001600160a01b031681565b61030f61161d565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b61055561164b565b60405161031c9190614a0c565b6102e561057036600461456a565b611691565b61055561058336600461456a565b6117ff565b61059b61059636600461456a565b611858565b60405161031c929190614a2d565b61030f6105b736600461456a565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614a43565b61187f565b604051901515815260200161031c565b610436610602366004614aba565b611b17565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614af1565b61030f61076736600461456a565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614bfe565b61209b565b6102e56107a2366004614ca3565b6122cb565b6102e56107b5366004614548565b612387565b6102e56107c8366004614961565b61242e565b6105e46107db366004614548565b60076020525f908152604090205460ff1681565b61043660065481565b6102e5610806366004614933565b6124eb565b6102e561081936600461456a565b6125a5565b61084061082c36600461456a565b5f908152600d602052604090205460ff1690565b60405161031c9190614cdd565b6102e561085b366004614ceb565b6125e2565b6102e561086e366004614548565b61286f565b6102e5610881366004614d05565b612909565b60025461030f906001600160a01b031681565b6102e56108a7366004614548565b612bb6565b6108bf6108ba366004614aba565b612bf0565b60405161031c929190614d3c565b6103bd6108db36600461456a565b613501565b6102e56108ee366004614548565b61369b565b61030f61090136600461456a565b600a6020525f90815260409020546001600160a01b031681565b6102e5610929366004614548565b613733565b6109366137c2565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e6137c2565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b8152600401610988919061458e565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab090839061458e565b60405180910390a150565b610ac36137c2565b610acc816137f4565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614d5c565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614d5c565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c826143b6565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf614607565b6003811115610cd057610cd0614607565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152600160a01b900460ff166060820152600782018054608090920191610d5290614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90614d5c565b8015610dc95780601f10610da057610100808354040283529160200191610dc9565b820191905f5260205f20905b815481529060010190602001808311610dac57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e1a90614d5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690614d5c565b8015610e915780601f10610e6857610100808354040283529160200191610e91565b820191905f5260205f20905b815481529060010190602001808311610e7457829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610ef15760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f006138b1565b805490915060ff600160401b82041615906001600160401b03165f81158015610f265750825b90505f826001600160401b03166001148015610f415750303b155b905081158015610f4f575080155b15610f6d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f9757845460ff60401b1916600160401b1785555b610fa0336138db565b610fa9876125a5565b610fb28b61369b565b610fbb8a61286f565b610fc48961092e565b610fcd88610a16565b610fd6866137f4565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110bf61161d565b6001600160a01b03168c6001600160a01b0316146110e0576110e08c612bb6565b831561112657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61113c6137c2565b5f8181526009602052604090205481906001600160a01b0316611175576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111cb6137c2565b6001600160a01b0381165f90815260076020526040902054819060ff16611206576040516321ac7c5f60e01b8152600401610988919061458e565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab090839061458e565b600b6020525f90815260409020805461126e90614d5c565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90614d5c565b80156112e55780601f106112bc576101008083540402835291602001916112e5565b820191905f5260205f20905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b6112f56137c2565b6112fe5f6138ec565b565b6113086137c2565b6001600160a01b0381161580159061133957505f828152600a60205260409020546001600160a01b03828116911614155b829061135b576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113b35760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113d8576113d8614607565b146113fd57816001826040516337e1404160e01b815260040161098893929190614d8e565b5f828152600d60205260409020805460ff191660021790556015546114229042614dc3565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f5160206159165f395f51905f526001600260405161147c929190614dd6565b60405180910390a25050565b5f546001600160a01b031633146114b25760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff1660028160068111156114e2576114e2614607565b1461150757836002826040516337e1404160e01b815260040161098893929190614d8e565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f5160206159165f395f51905f526002600360405161156e929190614dd6565b60405180910390a250505050565b6115846137c2565b806115c05760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b60ff83165f908152600b602052604090206115dc828483614e64565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161161093929190614f40565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b61166c60405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff1660068160068111156116b6576116b6614607565b1482906116d957604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c6020526040902054828161170a576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c602052604081208190556117248461395c565b5f858152601160205260409020546002549192506001600160a01b03908116916117519183911685613a49565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b69790611787908890879087908790600401614fa8565b5f604051808303815f87803b15801561179e575f5ffd5b505af11580156117b0573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a073178484516040516117f0929190918252602082015260400190565b60405180910390a25050505050565b61182060405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118758482613aa6565b9250925050915091565b5f5f61188a87610c7a565b5f888152600d602052604090205490915060ff1660038160068111156118b2576118b2614607565b14886003839091926118da576040516337e1404160e01b815260040161098893929190614d8e565b5050505f888152600e602090815260409182902082516060810184528154815260018201549281018390526002909101549281019290925289904281101561193e576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119755760405163017e35e560e71b815260048101929092526024820152604401610988565b50506101608301518990156119a057604051637eb9cea960e11b815260040161098891815260200190565b505f88886040516119b2929190614ff3565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff191660041790556017549091506119f49042614dc3565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611a41908d9085908c908c90600401615002565b6020604051808303815f875af1158015611a5d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a81919061502e565b9450888886611aa557604051632f9f8ab960e01b8152600401610988929190615049565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611ad9929190615049565b60405180910390a2895f5160206159165f395f51905f5260036004604051611b02929190614dd6565b60405180910390a25050505095945050505050565b5f80601281611b29602086018661505c565b6003811115611b3a57611b3a614607565b6003811115611b4b57611b4b614607565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611b72579050505050505090505f81600160028110611bc957611bc9614fdf565b602002015163ffffffff1611835f016020810190611be7919061505c565b90611c065760405163286c068d60e11b81526004016109889190615075565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d31576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d10919061505c565b90611d2f5760405163010b971d60e31b81526004016109889190615075565b505b6101c081015163ffffffff1615611d80576101c081015184519063ffffffff9081169082161015611d7e57604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611dad5760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611dcb9161ffff1690615083565b611dd5919061509a565b61271061ffff1683610160015161ffff16601560010154611df69190615083565b611e00919061509a565b61271061ffff1684610140015161ffff1660155f0154611e209190615083565b611e2a919061509a565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611e76573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9a91906150b9565b611ea49190614dc3565b611eae91906150d0565b611eb89190614dc3565b611ec29190614dc3565b611ecc9190614dc3565b90505f611eda6001866150d0565b611ee5906002615083565b611ef0906002615083565b611efb906006614dc3565b90505f85845f0151611f0d9190615083565b905081868560200151611f209190615083565b611f2a9190615083565b611f349082614dc3565b90506001861115611f7c576002611f4c6001886150d0565b611f569088615083565b8560400151611f659190615083565b611f6f919061509a565b611f799082614dc3565b90505b81868560c00151611f8d9190615083565b611f979190615083565b611fa19082614dc3565b905082868560600151611fb49190615083565b611fbe9190615083565b611fc89082614dc3565b9050848460800151611fda9190615083565b611fe49082614dc3565b9050600185111561202c576002611ffc6001876150d0565b6120069087615083565b85604001516120159190615083565b61201f919061509a565b6120299082614dc3565b90505b60a084015161203b9082614dc3565b610100850151909150612710906120569061ffff1682614dc3565b6120609083615083565b61206a919061509a565b9750878061208e57604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f6120a689610c7a565b5f8a8152600d602052604090205490915060ff1660048160068111156120ce576120ce614607565b148a6004839091926120f6576040516337e1404160e01b815260040161098893929190614d8e565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b9042811015612159576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121768a8c83614e64565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b6040516121ba929190614ff3565b6040519081900381206001600160e01b031960e084901b1682526121e8918c908c908c908c906004016150e3565b602060405180830381865afa158015612203573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612227919061502e565b935089898561224b57604051632f9f8ab960e01b8152600401610988929190615049565b50506122568b613c2e565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b60405161228c949392919061511b565b60405180910390a28a5f5160206159165f395f51905f52600460056040516122b5929190614dd6565b60405180910390a2505050979650505050505050565b5f546001600160a01b03163314806122ed57506003546001600160a01b031633145b61230a57604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156123205750600d60ff821611155b6123655760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b612383828260ff16600d81111561237e5761237e614607565b61409a565b5050565b61238f6137c2565b6001600160a01b0381166123e55760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b03163314612459576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b1580156124a3575f5ffd5b505af11580156124b5573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161147c91815260200190565b6124f36137c2565b6001600160a01b0381161580159061252457505f828152600960205260409020546001600160a01b03828116911614155b8290612546576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b6125ad6137c2565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b6125ea6137c2565b6127106125ff61012083016101008401615166565b61ffff16111561261761012083016101008401615166565b9061263c576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061265261014083016101208401615166565b61ffff16111561266a61014083016101208401615166565b9061268f576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126a561016083016101408401615166565b61ffff1611156126bd61016083016101408401615166565b906126e257604051633239953960e01b815261ffff9091166004820152602401610988565b506127106126f861018083016101608401615166565b61ffff16111561271061018083016101608401615166565b9061273557604051633239953960e01b815261ffff9091166004820152602401610988565b5061271061274b6101a083016101808401615166565b61ffff1611156127636101a083016101808401615166565b9061278857604051633239953960e01b815261ffff9091166004820152602401610988565b5061279b61014082016101208301615166565b61ffff1615806127c457505f6127b8610100830160e08401614548565b6001600160a01b031614155b6127e15760405163015f92ff60e51b815260040160405180910390fd5b6127f36101e082016101c0830161519d565b63ffffffff1661280b6101c083016101a0840161519d565b63ffffffff161015612830576040516392f55c6560e01b815260040160405180910390fd5b80601861283d82826151dc565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab0919061539a565b6128776137c2565b6001600160a01b0381161580159061289d57506001546001600160a01b03828116911614155b81906128bd576040516320252f0b60e01b8152600401610988919061458e565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab090839061458e565b6129116137c2565b61291e602082018261519d565b63ffffffff16612934604083016020840161519d565b63ffffffff161015801561295957505f612951602083018361519d565b63ffffffff16115b61297657604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612aaf576101a081015163ffffffff16612a5f604084016020850161519d565b63ffffffff161015612a77604084016020850161519d565b826101a001519091612aac57604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b26576101c081015163ffffffff16612ad9602084018461519d565b63ffffffff161015612aee602084018461519d565b826101c001519091612b235760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612b3c57612b3c614607565b6003811115612b4d57612b4d614607565b815260208101919091526040015f20612b67916002614433565b50826003811115612b7a57612b7a614607565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612ba991906154a4565b60405180910390a2505050565b612bbe6137c2565b6001600160a01b038116612be7575f604051631e4fbdf760e01b8152600401610988919061458e565b610acc816138ec565b5f612bf96143b6565b5f601281612c0a602087018761505c565b6003811115612c1b57612c1b614607565b6003811115612c2c57612c2c614607565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612c53579050505050505090505f81600160028110612caa57612caa614fdf565b602002015163ffffffff1611845f016020810190612cc8919061505c565b90612ce75760405163286c068d60e11b81526004016109889190615075565b50602084013542811015612d1157604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612d3f5760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612d574260408901356150d0565b612d619190614dc3565b612d6b9190614dc3565b905060055481108190612d94576040516313b783af60e21b815260040161098891815260200190565b5060075f612da86080880160608901614548565b6001600160a01b0316815260208101919091526040015f205460ff16612dd46080870160608801614548565b90612df35760405163295a6a6f60e11b8152600401610988919061458e565b505f612dfe86611b17565b60068054965090915085905f612e13836154e4565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612eee9190890135614dc3565b5f878152600e6020908152604090912060010191909155818652612f149088018861505c565b85602001906003811115612f2a57612f2a614607565b90816003811115612f3d57612f3d614607565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612f859060808901908901614548565b6001600160a01b031660a080870191909152612fa690880160808901614908565b60ff1660c080870191909152612fbe908801886154fc565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e08087019190915261300b90610100890190890161553e565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a0860181905260045461305b916001600160a01b039091169030856141f5565b5f600b8161306f60a08b0160808c01614908565b60ff1660ff1681526020019081526020015f20805461308d90614d5c565b80601f01602080910402602001604051908101604052809291908181526020018280546130b990614d5c565b80156131045780601f106130db57610100808354040283529160200191613104565b820191905f5260205f20905b8154815290600101906020018083116130e757829003601f168201915b505050505090505f81511161315b5760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f61316c60808a0160608b01614548565b6001600160a01b031663fefd9a8b89858561318a60a08f018f6154fc565b8f8060c0019061319a91906154fc565b6040518863ffffffff1660e01b81526004016131bc9796959493929190615559565b6020604051808303815f875af11580156131d8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131fc91906150b9565b5f818152600960205260409020549091506001600160a01b03168181613238576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b03168281613272576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff1991909116908360038111156132d0576132d0614607565b0217905550604082015181600201556060820151816003019060026132f69291906144d4565b506080820151600582015560a082015160068201805460c085015160ff16600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560e0820151600782019061334f90826155ad565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906133b790826155ad565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b9061341d908d9089908d90600401615662565b6020604051808303815f875af1158015613439573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061345d919061502e565b61347a57604051630d8dbe2560e01b815260040160405180910390fd5b61348a60808c0160608d01614548565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b6040516134c4929190614d3c565b60405180910390a2895f5160206159165f395f51905f525f60016040516134ec929190614dd6565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff168181600681111561352557613525614607565b0361354a57826001826040516337e1404160e01b815260040161098893929190614d8e565b600581600681111561355e5761355e614607565b0361357f5760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561359357613593614607565b036135b457604051633de16e3560e11b815260048101849052602401610988565b5f6135bf8483613aa6565b93509050806135e457604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d81111561362d5761362d614607565b0217905550835f5160206159165f395f51905f52836006604051613652929190614dd6565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb838560405161368c9291906156a7565b60405180910390a25050919050565b6136a36137c2565b6001600160a01b038116158015906136c857505f546001600160a01b03828116911614155b81906136e8576040516375ac4eb760e11b8152600401610988919061458e565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab090839061458e565b6001600160a01b0381165f90815260076020526040902054819060ff161561376f5760405163b29d459560e01b8152600401610988919061458e565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab090839061458e565b336137cb61161d565b6001600160a01b0316146112fe573360405163118cdaa760e01b8152600401610988919061458e565b80356138135760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138375760405163055f269d60e01b815260040160405180910390fd5b5f81604001351161385b5760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b6138e3614234565b610acc81614259565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d81111561398457613984614607565b14806139a15750600281600d81111561399f5761399f614607565b145b156139d9575f5b6040519080825280602002602001820160405280156139d1578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613a3f57506040513d5f823e601f3d908101601f19168201604052613a3c919081019061577e565b60015b6139d1575f6139a8565b613aa183846001600160a01b031663a9059cbb8585604051602401613a6f929190615843565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614261565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613b20573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b4491906150b9565b90506001856006811115613b5a57613b5a614607565b148015613b6657508042115b15613b7957600180935093505050613c27565b6002856006811115613b8d57613b8d614607565b148015613b9a5750815142115b15613bae5760016003935093505050613c27565b6003856006811115613bc257613bc2614607565b148015613bd25750816020015142115b15613be65760016006935093505050613c27565b6004856006811115613bfa57613bfa614607565b148015613c0a5750816040015142115b15613c1e576001600a935093505050613c27565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613c73573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613c9a919081019061577e565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613d39576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d059088908890869060040161585c565b5f604051808303815f87803b158015613d1c575f5ffd5b505af1158015613d2e573d5f5f3e3d5ffd5b505050505050505050565b825f03613dda575f858152601060205260409020546001600160a01b03168015613d7157613d716001600160a01b0383168285613a49565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613da59089908990879060040161585c565b5f604051808303815f87803b158015613dbc575f5ffd5b505af1158015613dce573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613e1a57506001600160a01b03811615155b15613e5657612710613e3061ffff841687615083565b613e3a919061509a565b92508215613e5657613e566001600160a01b0385168285613a49565b5f613e6184876150d0565b90505f876001600160401b03811115613e7c57613e7c614df1565b604051908082528060200260200182016040528015613ea5578160200160208202803683370190505b5090505f613eb3898461509a565b90505f805b8a811015613ef25782848281518110613ed357613ed3614fdf565b6020908102919091010152613ee88383614dc3565b9150600101613eb8565b505f613efe82866150d0565b90508015613f3b578084613f1360018e6150d0565b81518110613f2357613f23614fdf565b60200260200101818151613f379190614dc3565b9052505b600154613f55906001600160a01b038b81169116876142c4565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b8152600401613f99939291906158bc565b5f604051808303815f87803b158015613fb0575f5ffd5b505af1158015613fc2573d5f5f3e3d5ffd5b5050600154613fe092506001600160a01b038c81169250165f6142c4565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d866040516140129291906158f1565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b815260040161405e9392919061585c565b5f604051808303815f87803b158015614075575f5ffd5b505af1158015614087573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff16908160068111156140be576140be614607565b036140e357826001826040516337e1404160e01b815260040161098893929190614d8e565b60058160068111156140f7576140f7614607565b036141185760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561412c5761412c614607565b0361414d57604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561419657614196614607565b0217905550825f5160206159165f395f51905f528260066040516141bb929190614dd6565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612ba99291906156a7565b6040516001600160a01b03848116602483015283811660448301526064820183905261422e9186918216906323b872dd90608401613a6f565b50505050565b61423c614354565b6112fe57604051631afcd79f60e31b815260040160405180910390fd5b612bbe614234565b5f5f60205f8451602086015f885af180614280576040513d5f823e3d81fd5b50505f513d915081156142975780600114156142a4565b6001600160a01b0384163b155b1561422e5783604051635274afe760e01b8152600401610988919061458e565b5f836001600160a01b031663095ea7b384846040516024016142e7929190615843565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050509050614320848261436d565b61422e5761434a84856001600160a01b031663095ea7b3865f604051602401613a6f929190615843565b61422e8482614261565b5f61435d6138b1565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f5190508280156143ac5750811561439e57806001146143ac565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f81526020016143de614502565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b6001830191839082156144c4579160200282015f5b8382111561449257833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff1602179055509260200192600401602081600301049283019260010302614448565b80156144c25782816101000a81549063ffffffff0219169055600401602081600301049283019260010302614492565b505b506144d0929150614520565b5090565b82600281019282156144c4579160200282015b828111156144c45782518255916020019190600101906144e7565b60405180604001604052806002906020820280368337509192915050565b5b808211156144d0575f8155600101614521565b6001600160a01b0381168114610acc575f5ffd5b5f60208284031215614558575f5ffd5b813561456381614534565b9392505050565b5f6020828403121561457a575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b8035600481106145b0575f5ffd5b919050565b5f5f604083850312156145c6575f5ffd5b6145cf836145a2565b946020939093013593505050565b5f60608284031215610ef1575f5ffd5b5f606082840312156145fd575f5ffd5b61456383836145dd565b634e487b7160e01b5f52602160045260245ffd5b600e811061462b5761462b614607565b9052565b602081016138d5828461461b565b6004811061462b5761462b614607565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e815261468b602082018f61463d565b8c60408201528b60608201526146a4608082018c614581565b60ff8a1660a08201526101c060c08201525f6146c46101c083018b61464d565b6146d160e084018b614581565b6146df61010084018a614581565b8761012084015286610140840152828103610160840152614700818761464d565b915050614711610180830185614581565b8215156101a08301529f9e505050505050505050505050505050565b805f5b600281101561422e578151845260209384019390910190600101614730565b805182525f6020820151614766602085018261463d565b50604082015160408401526060820151614783606085018261472d565b50608082015160a084015260a08201516147a060c0850182614581565b5060c082015160ff811660e08501525060e08201516102006101008501526147cc61020085018261464d565b90506101008301516147e2610120860182614581565b506101208301516147f7610140860182614581565b506101408301516101608501526101608301516101808501526101808301518482036101a0860152614829828261464d565b9150506101a08301516148406101c0860182614581565b506101c08301518015156101e08601526139d1565b602081525f614563602083018461474f565b80356145b081614534565b5f5f5f5f5f5f5f610120888a031215614889575f5ffd5b873561489481614534565b965060208801356148a481614534565b955060408801356148b481614534565b945060608801356148c481614534565b935060808801356148d481614534565b925060a088013591506148ea8960c08a016145dd565b905092959891949750929550565b803560ff811681146145b0575f5ffd5b5f60208284031215614918575f5ffd5b614563826148f8565b602081525f614563602083018461464d565b5f5f60408385031215614944575f5ffd5b82359150602083013561495681614534565b809150509250929050565b5f5f60408385031215614972575f5ffd5b50508035926020909101359150565b5f5f83601f840112614991575f5ffd5b5081356001600160401b038111156149a7575f5ffd5b602083019150836020828501011115613c27575f5ffd5b5f5f5f604084860312156149d0575f5ffd5b6149d9846148f8565b925060208401356001600160401b038111156149f3575f5ffd5b6149ff86828701614981565b9497909650939450505050565b815181526020808301519082015260408083015190820152606081016138d5565b821515815260408101614563602083018461461b565b5f5f5f5f5f60608688031215614a57575f5ffd5b8535945060208601356001600160401b03811115614a73575f5ffd5b614a7f88828901614981565b90955093505060408601356001600160401b03811115614a9d575f5ffd5b614aa988828901614981565b969995985093965092949392505050565b5f60208284031215614aca575f5ffd5b81356001600160401b03811115614adf575f5ffd5b82016101008185031215614563575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614b4b60e0840182614581565b50610100830151614b6361010084018261ffff169052565b50610120830151614b7b61012084018261ffff169052565b50610140830151614b9361014084018261ffff169052565b50610160830151614bab61016084018261ffff169052565b50610180830151614bc361018084018261ffff169052565b506101a0830151614bdd6101a084018263ffffffff169052565b506101c0830151614bf76101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614c14575f5ffd5b8735965060208801356001600160401b03811115614c30575f5ffd5b614c3c8a828b01614981565b90975095505060408801356001600160401b03811115614c5a575f5ffd5b614c668a828b01614981565b90955093505060608801356001600160401b03811115614c84575f5ffd5b614c908a828b01614981565b989b979a50959850939692959293505050565b5f5f60408385031215614cb4575f5ffd5b82359150614cc4602084016148f8565b90509250929050565b6007811061462b5761462b614607565b602081016138d58284614ccd565b5f6101e0828403128015614cfd575f5ffd5b509092915050565b5f5f60608385031215614d16575f5ffd5b614d1f836145a2565b915083606084011115614d30575f5ffd5b50926020919091019150565b828152604060208201525f614d54604083018461474f565b949350505050565b600181811c90821680614d7057607f821691505b602082108103610ef157634e487b7160e01b5f52602260045260245ffd5b83815260608101614da26020830185614ccd565b614d546040830184614ccd565b634e487b7160e01b5f52601160045260245ffd5b808201808211156138d5576138d5614daf565b60408101614de48285614ccd565b6145636020830184614ccd565b634e487b7160e01b5f52604160045260245ffd5b601f821115613aa157805f5260205f20601f840160051c81016020851015614e2a5750805b601f840160051c820191505b81811015614e49575f8155600101614e36565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614e7b57614e7b614df1565b614e8f83614e898354614d5c565b83614e05565b5f601f841160018114614ebb575f8515614ea95750838201355b614eb38682614e50565b845550614e49565b5f83815260208120601f198716915b82811015614eea5786850135825560209485019460019092019101614eca565b5086821015614f06575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60ff84168152604060208201525f614f5c604083018486614f18565b95945050505050565b5f8151808452602084019350602083015f5b82811015614f9e5781516001600160a01b0316865260209586019590910190600101614f77565b5093949350505050565b848152836020820152608060408201525f614fc66080830185614f65565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f6143ac606083018486614f18565b8015158114610acc575f5ffd5b5f6020828403121561503e575f5ffd5b815161456381615021565b602081525f614d54602083018486614f18565b5f6020828403121561506c575f5ffd5b614563826145a2565b602081016138d5828461463d565b80820281158282048414176138d5576138d5614daf565b5f826150b457634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156150c9575f5ffd5b5051919050565b818103818111156138d5576138d5614daf565b858152606060208201525f6150fc606083018688614f18565b828103604084015261510f818587614f18565b98975050505050505050565b604081525f61512e604083018688614f18565b8281036020840152615141818587614f18565b979650505050505050565b61ffff81168114610acc575f5ffd5b80356145b08161514c565b5f60208284031215615176575f5ffd5b81356145638161514c565b63ffffffff81168114610acc575f5ffd5b80356145b081615181565b5f602082840312156151ad575f5ffd5b813561456381615181565b5f81356138d581614534565b5f81356138d58161514c565b5f81356138d581615181565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c082013560068201556007810161524c61522f60e085016151b8565b82546001600160a01b0319166001600160a01b0391909116178255565b61527c61525c61010085016151c4565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6152ac61528c61012085016151c4565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b6152dc6152bc61014085016151c4565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b61530c6152ec61016085016151c4565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b61533c61531c61018085016151c4565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b50600881016153686153516101a085016151d0565b825463ffffffff191663ffffffff91909116178255565b613aa16153786101c085016151d0565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e081016153eb60e08401614867565b6153f860e0840182614581565b50615406610100840161515b565b61ffff1661010083015261541d610120840161515b565b61ffff16610120830152615434610140840161515b565b61ffff1661014083015261544b610160840161515b565b61ffff16610160830152615462610180840161515b565b61ffff166101808301526154796101a08401615192565b63ffffffff166101a08301526154926101c08401615192565b63ffffffff81166101c0840152614bf7565b6040810181835f5b60028110156154db5781356154c081615181565b63ffffffff16835260209283019291909101906001016154ac565b50505092915050565b5f600182016154f5576154f5614daf565b5060010190565b5f5f8335601e19843603018112615511575f5ffd5b8301803591506001600160401b0382111561552a575f5ffd5b602001915036819003821315613c27575f5ffd5b5f6020828403121561554e575f5ffd5b813561456381615021565b87815286602082015260a060408201525f61557760a083018861464d565b828103606084015261558a818789614f18565b9050828103608084015261559f818587614f18565b9a9950505050505050505050565b81516001600160401b038111156155c6576155c6614df1565b6155da816155d48454614d5c565b84614e05565b6020601f821160018114615607575f83156155f55750848201515b6155ff8482614e50565b855550614e49565b5f84815260208120601f198516915b828110156156365787850151825560209485019460019092019101615616565b508482101561565357868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561569c57815163ffffffff16835260209283019290910190600101615677565b505050949350505050565b604081016156b58285614ccd565b614563602083018461461b565b604051601f8201601f191681016001600160401b03811182821017156156ea576156ea614df1565b604052919050565b5f6001600160401b0382111561570a5761570a614df1565b5060051b60200190565b5f82601f830112615723575f5ffd5b8151615736615731826156f2565b6156c2565b8082825260208201915060208360051b860101925085831115615757575f5ffd5b602085015b8381101561577457805183526020928301920161575c565b5095945050505050565b5f5f6040838503121561578f575f5ffd5b82516001600160401b038111156157a4575f5ffd5b8301601f810185136157b4575f5ffd5b80516157c2615731826156f2565b8082825260208201915060208360051b8501019250878311156157e3575f5ffd5b6020840193505b8284101561580e5783516157fd81614534565b8252602093840193909101906157ea565b8095505050505060208301516001600160401b0381111561582d575f5ffd5b61583985828601615714565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f6158746060830185614f65565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b82811015614f9e57815186526020958601959091019060010161589e565b6001600160a01b03841681526060602082018190525f906158df90830185614f65565b82810360408401526143ac818561588c565b604081525f6159036040830185614f65565b8281036020840152614f5c818561588c56fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", + "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6159ad806100d65f395ff3fe608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e03660046145b3565b61092e565b005b61030f6102f53660046145d5565b5f908152600960205260409020546001600160a01b031690565b60405161031c91906145f9565b60405180910390f35b61030f6103333660046145d5565b60096020525f90815260409020546001600160a01b031681565b61036061035b366004614620565b6109da565b60405163ffffffff909116815260200161031c565b6102e56103833660046145b3565b610a16565b6102e5610396366004614658565b610abb565b6103bd6103a93660046145d5565b5f908152600f602052604090205460ff1690565b60405161031c919061469a565b6103dd6103d83660046145d5565b610acf565b60405161031c9e9d9c9b9a999897969594939291906146e6565b61040a6104053660046145d5565b610c7a565b60405161031c91906148c0565b6104366104253660046145d5565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e56104523660046148dd565b610ef7565b6102e56104653660046145d5565b611134565b6102e56104783660046145b3565b6111c3565b61049061048b366004614973565b611256565b60405161031c919061498c565b60045461030f906001600160a01b031681565b61043660055481565b6102e56112ed565b6102e56104cf36600461499e565b611300565b6102e56104e23660046145d5565b611389565b6102e56104f53660046149cc565b611488565b6102e5610508366004614a29565b61157c565b60015461030f906001600160a01b031681565b61030f611688565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b6105556116b6565b60405161031c9190614a77565b6102e56105703660046145d5565b6116fc565b6105556105833660046145d5565b61186a565b61059b6105963660046145d5565b6118c3565b60405161031c929190614a98565b61030f6105b73660046145d5565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614aae565b6118ea565b604051901515815260200161031c565b610436610602366004614b25565b611b82565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614b5c565b61030f6107673660046145d5565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614c69565b612106565b6102e56107a2366004614d0e565b612336565b6102e56107b53660046145b3565b6123f2565b6102e56107c83660046149cc565b612499565b6105e46107db3660046145b3565b60076020525f908152604090205460ff1681565b61043660065481565b6102e561080636600461499e565b612556565b6102e56108193660046145d5565b612610565b61084061082c3660046145d5565b5f908152600d602052604090205460ff1690565b60405161031c9190614d48565b6102e561085b366004614d56565b61264d565b6102e561086e3660046145b3565b6128da565b6102e5610881366004614d70565b612974565b60025461030f906001600160a01b031681565b6102e56108a73660046145b3565b612c21565b6108bf6108ba366004614b25565b612c5b565b60405161031c929190614da7565b6103bd6108db3660046145d5565b61356c565b6102e56108ee3660046145b3565b613706565b61030f6109013660046145d5565b600a6020525f90815260409020546001600160a01b031681565b6102e56109293660046145b3565b61379e565b61093661382d565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e61382d565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b815260040161098891906145f9565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab09083906145f9565b60405180910390a150565b610ac361382d565b610acc8161385f565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614dc7565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614dc7565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c82614421565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf614672565b6003811115610cd057610cd0614672565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152600160a01b900460ff166060820152600782018054608090920191610d5290614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90614dc7565b8015610dc95780601f10610da057610100808354040283529160200191610dc9565b820191905f5260205f20905b815481529060010190602001808311610dac57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e1a90614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690614dc7565b8015610e915780601f10610e6857610100808354040283529160200191610e91565b820191905f5260205f20905b815481529060010190602001808311610e7457829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610ef15760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f0061391c565b805490915060ff600160401b82041615906001600160401b03165f81158015610f265750825b90505f826001600160401b03166001148015610f415750303b155b905081158015610f4f575080155b15610f6d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f9757845460ff60401b1916600160401b1785555b610fa033613946565b610fa987612610565b610fb28b613706565b610fbb8a6128da565b610fc48961092e565b610fcd88610a16565b610fd68661385f565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110bf611688565b6001600160a01b03168c6001600160a01b0316146110e0576110e08c612c21565b831561112657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61113c61382d565b5f8181526009602052604090205481906001600160a01b0316611175576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111cb61382d565b6001600160a01b0381165f90815260076020526040902054819060ff16611206576040516321ac7c5f60e01b815260040161098891906145f9565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab09083906145f9565b600b6020525f90815260409020805461126e90614dc7565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90614dc7565b80156112e55780601f106112bc576101008083540402835291602001916112e5565b820191905f5260205f20905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b6112f561382d565b6112fe5f613957565b565b61130861382d565b6001600160a01b0381161580159061133957505f828152600a60205260409020546001600160a01b03828116911614155b829061135b576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113b35760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113d8576113d8614672565b146113fd57816001826040516337e1404160e01b815260040161098893929190614df9565b5f828152600d60205260409020805460ff191660021790556015546114229042614e2e565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f5160206159815f395f51905f526001600260405161147c929190614e41565b60405180910390a25050565b5f546001600160a01b031633146114b25760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff1660028160068111156114e2576114e2614672565b1461150757836002826040516337e1404160e01b815260040161098893929190614df9565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f5160206159815f395f51905f526002600360405161156e929190614e41565b60405180910390a250505050565b61158461382d565b806115c05760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b60ff83165f908152600b6020526040902080546115dc90614dc7565b15905061162b5760405162461bcd60e51b815260206004820152601b60248201527f506172616d53657420616c7265616479207265676973746572656400000000006044820152606401610988565b60ff83165f908152600b60205260409020611647828483614ecf565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161167b93929190614fab565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6116d760405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff16600681600681111561172157611721614672565b14829061174457604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c60205260409020548281611775576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c6020526040812081905561178f846139c7565b5f858152601160205260409020546002549192506001600160a01b03908116916117bc9183911685613ab4565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b697906117f2908890879087908790600401615013565b5f604051808303815f87803b158015611809575f5ffd5b505af115801561181b573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a0731784845160405161185b929190918252602082015260400190565b60405180910390a25050505050565b61188b60405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118e08482613b11565b9250925050915091565b5f5f6118f587610c7a565b5f888152600d602052604090205490915060ff16600381600681111561191d5761191d614672565b1488600383909192611945576040516337e1404160e01b815260040161098893929190614df9565b5050505f888152600e60209081526040918290208251606081018452815481526001820154928101839052600290910154928101929092528990428110156119a9576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119e05760405163017e35e560e71b815260048101929092526024820152604401610988565b5050610160830151899015611a0b57604051637eb9cea960e11b815260040161098891815260200190565b505f8888604051611a1d92919061505e565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff19166004179055601754909150611a5f9042614e2e565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611aac908d9085908c908c9060040161506d565b6020604051808303815f875af1158015611ac8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aec9190615099565b9450888886611b1057604051632f9f8ab960e01b81526004016109889291906150b4565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611b449291906150b4565b60405180910390a2895f5160206159815f395f51905f5260036004604051611b6d929190614e41565b60405180910390a25050505095945050505050565b5f80601281611b9460208601866150c7565b6003811115611ba557611ba5614672565b6003811115611bb657611bb6614672565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611bdd579050505050505090505f81600160028110611c3457611c3461504a565b602002015163ffffffff1611835f016020810190611c5291906150c7565b90611c715760405163286c068d60e11b815260040161098891906150e0565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d9c576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d7b91906150c7565b90611d9a5760405163010b971d60e31b815260040161098891906150e0565b505b6101c081015163ffffffff1615611deb576101c081015184519063ffffffff9081169082161015611de957604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611e185760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611e369161ffff16906150ee565b611e409190615105565b61271061ffff1683610160015161ffff16601560010154611e6191906150ee565b611e6b9190615105565b61271061ffff1684610140015161ffff1660155f0154611e8b91906150ee565b611e959190615105565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611ee1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f059190615124565b611f0f9190614e2e565b611f19919061513b565b611f239190614e2e565b611f2d9190614e2e565b611f379190614e2e565b90505f611f4560018661513b565b611f509060026150ee565b611f5b9060026150ee565b611f66906006614e2e565b90505f85845f0151611f7891906150ee565b905081868560200151611f8b91906150ee565b611f9591906150ee565b611f9f9082614e2e565b90506001861115611fe7576002611fb760018861513b565b611fc190886150ee565b8560400151611fd091906150ee565b611fda9190615105565b611fe49082614e2e565b90505b81868560c00151611ff891906150ee565b61200291906150ee565b61200c9082614e2e565b90508286856060015161201f91906150ee565b61202991906150ee565b6120339082614e2e565b905084846080015161204591906150ee565b61204f9082614e2e565b9050600185111561209757600261206760018761513b565b61207190876150ee565b856040015161208091906150ee565b61208a9190615105565b6120949082614e2e565b90505b60a08401516120a69082614e2e565b610100850151909150612710906120c19061ffff1682614e2e565b6120cb90836150ee565b6120d59190615105565b975087806120f957604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f61211189610c7a565b5f8a8152600d602052604090205490915060ff16600481600681111561213957612139614672565b148a600483909192612161576040516337e1404160e01b815260040161098893929190614df9565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b90428110156121c4576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121e18a8c83614ecf565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b60405161222592919061505e565b6040519081900381206001600160e01b031960e084901b168252612253918c908c908c908c9060040161514e565b602060405180830381865afa15801561226e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122929190615099565b93508989856122b657604051632f9f8ab960e01b81526004016109889291906150b4565b50506122c18b613c99565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b6040516122f79493929190615186565b60405180910390a28a5f5160206159815f395f51905f5260046005604051612320929190614e41565b60405180910390a2505050979650505050505050565b5f546001600160a01b031633148061235857506003546001600160a01b031633145b61237557604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff1611801561238b5750600d60ff821611155b6123d05760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b6123ee828260ff16600d8111156123e9576123e9614672565b614105565b5050565b6123fa61382d565b6001600160a01b0381166124505760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b031633146124c4576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b15801561250e575f5ffd5b505af1158015612520573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161147c91815260200190565b61255e61382d565b6001600160a01b0381161580159061258f57505f828152600960205260409020546001600160a01b03828116911614155b82906125b1576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b61261861382d565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b61265561382d565b61271061266a610120830161010084016151d1565b61ffff161115612682610120830161010084016151d1565b906126a7576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126bd610140830161012084016151d1565b61ffff1611156126d5610140830161012084016151d1565b906126fa576040516301027fc160e21b815261ffff9091166004820152602401610988565b50612710612710610160830161014084016151d1565b61ffff161115612728610160830161014084016151d1565b9061274d57604051633239953960e01b815261ffff9091166004820152602401610988565b50612710612763610180830161016084016151d1565b61ffff16111561277b610180830161016084016151d1565b906127a057604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127b66101a0830161018084016151d1565b61ffff1611156127ce6101a0830161018084016151d1565b906127f357604051633239953960e01b815261ffff9091166004820152602401610988565b50612806610140820161012083016151d1565b61ffff16158061282f57505f612823610100830160e084016145b3565b6001600160a01b031614155b61284c5760405163015f92ff60e51b815260040160405180910390fd5b61285e6101e082016101c08301615208565b63ffffffff166128766101c083016101a08401615208565b63ffffffff16101561289b576040516392f55c6560e01b815260040160405180910390fd5b8060186128a88282615247565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab09190615405565b6128e261382d565b6001600160a01b0381161580159061290857506001546001600160a01b03828116911614155b8190612928576040516320252f0b60e01b815260040161098891906145f9565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab09083906145f9565b61297c61382d565b6129896020820182615208565b63ffffffff1661299f6040830160208401615208565b63ffffffff16101580156129c457505f6129bc6020830183615208565b63ffffffff16115b6129e157604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612b1a576101a081015163ffffffff16612aca6040840160208501615208565b63ffffffff161015612ae26040840160208501615208565b826101a001519091612b1757604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b91576101c081015163ffffffff16612b446020840184615208565b63ffffffff161015612b596020840184615208565b826101c001519091612b8e5760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612ba757612ba7614672565b6003811115612bb857612bb8614672565b815260208101919091526040015f20612bd291600261449e565b50826003811115612be557612be5614672565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612c14919061550f565b60405180910390a2505050565b612c2961382d565b6001600160a01b038116612c52575f604051631e4fbdf760e01b815260040161098891906145f9565b610acc81613957565b5f612c64614421565b5f601281612c7560208701876150c7565b6003811115612c8657612c86614672565b6003811115612c9757612c97614672565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612cbe579050505050505090505f81600160028110612d1557612d1561504a565b602002015163ffffffff1611845f016020810190612d3391906150c7565b90612d525760405163286c068d60e11b815260040161098891906150e0565b50602084013542811015612d7c57604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612daa5760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612dc242604089013561513b565b612dcc9190614e2e565b612dd69190614e2e565b905060055481108190612dff576040516313b783af60e21b815260040161098891815260200190565b5060075f612e1360808801606089016145b3565b6001600160a01b0316815260208101919091526040015f205460ff16612e3f60808701606088016145b3565b90612e5e5760405163295a6a6f60e11b815260040161098891906145f9565b505f612e6986611b82565b60068054965090915085905f612e7e8361554f565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612f599190890135614e2e565b5f878152600e6020908152604090912060010191909155818652612f7f908801886150c7565b85602001906003811115612f9557612f95614672565b90816003811115612fa857612fa8614672565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612ff090608089019089016145b3565b6001600160a01b031660a08087019190915261301190880160808901614973565b60ff1660c08087019190915261302990880188615567565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526130769061010089019089016155a9565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a086018190526004546130c6916001600160a01b03909116903085614260565b5f600b816130da60a08b0160808c01614973565b60ff1660ff1681526020019081526020015f2080546130f890614dc7565b80601f016020809104026020016040519081016040528092919081815260200182805461312490614dc7565b801561316f5780601f106131465761010080835404028352916020019161316f565b820191905f5260205f20905b81548152906001019060200180831161315257829003601f168201915b505050505090505f8151116131c65760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f6131d760808a0160608b016145b3565b6001600160a01b031663fefd9a8b8985856131f560a08f018f615567565b8f8060c001906132059190615567565b6040518863ffffffff1660e01b815260040161322797969594939291906155c4565b6020604051808303815f875af1158015613243573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132679190615124565b5f818152600960205260409020549091506001600160a01b031681816132a3576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b031682816132dd576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff19919091169083600381111561333b5761333b614672565b02179055506040820151816002015560608201518160030190600261336192919061453f565b506080820151600582015560a082015160068201805460c085015160ff16600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560e082015160078201906133ba9082615618565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906134229082615618565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b90613488908d9089908d906004016156cd565b6020604051808303815f875af11580156134a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c89190615099565b6134e557604051630d8dbe2560e01b815260040160405180910390fd5b6134f560808c0160608d016145b3565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b60405161352f929190614da7565b60405180910390a2895f5160206159815f395f51905f525f6001604051613557929190614e41565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff168181600681111561359057613590614672565b036135b557826001826040516337e1404160e01b815260040161098893929190614df9565b60058160068111156135c9576135c9614672565b036135ea5760405163462c7bed60e01b815260048101849052602401610988565b60068160068111156135fe576135fe614672565b0361361f57604051633de16e3560e11b815260048101849052602401610988565b5f61362a8483613b11565b935090508061364f57604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d81111561369857613698614672565b0217905550835f5160206159815f395f51905f528360066040516136bd929190614e41565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb83856040516136f7929190615712565b60405180910390a25050919050565b61370e61382d565b6001600160a01b0381161580159061373357505f546001600160a01b03828116911614155b8190613753576040516375ac4eb760e11b815260040161098891906145f9565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab09083906145f9565b6001600160a01b0381165f90815260076020526040902054819060ff16156137da5760405163b29d459560e01b815260040161098891906145f9565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab09083906145f9565b33613836611688565b6001600160a01b0316146112fe573360405163118cdaa760e01b815260040161098891906145f9565b803561387e5760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138a25760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138c65760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b61394e61429f565b610acc816142c4565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d8111156139ef576139ef614672565b1480613a0c5750600281600d811115613a0a57613a0a614672565b145b15613a44575f5b604051908082528060200260200182016040528015613a3c578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613aaa57506040513d5f823e601f3d908101601f19168201604052613aa791908101906157e9565b60015b613a3c575f613a13565b613b0c83846001600160a01b031663a9059cbb8585604051602401613ada9291906158ae565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506142cc565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613b8b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613baf9190615124565b90506001856006811115613bc557613bc5614672565b148015613bd157508042115b15613be457600180935093505050613c92565b6002856006811115613bf857613bf8614672565b148015613c055750815142115b15613c195760016003935093505050613c92565b6003856006811115613c2d57613c2d614672565b148015613c3d5750816020015142115b15613c515760016006935093505050613c92565b6004856006811115613c6557613c65614672565b148015613c755750816040015142115b15613c89576001600a935093505050613c92565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613cde573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d0591908101906157e9565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613da4576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d70908890889086906004016158c7565b5f604051808303815f87803b158015613d87575f5ffd5b505af1158015613d99573d5f5f3e3d5ffd5b505050505050505050565b825f03613e45575f858152601060205260409020546001600160a01b03168015613ddc57613ddc6001600160a01b0383168285613ab4565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e10908990899087906004016158c7565b5f604051808303815f87803b158015613e27575f5ffd5b505af1158015613e39573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613e8557506001600160a01b03811615155b15613ec157612710613e9b61ffff8416876150ee565b613ea59190615105565b92508215613ec157613ec16001600160a01b0385168285613ab4565b5f613ecc848761513b565b90505f876001600160401b03811115613ee757613ee7614e5c565b604051908082528060200260200182016040528015613f10578160200160208202803683370190505b5090505f613f1e8984615105565b90505f805b8a811015613f5d5782848281518110613f3e57613f3e61504a565b6020908102919091010152613f538383614e2e565b9150600101613f23565b505f613f69828661513b565b90508015613fa6578084613f7e60018e61513b565b81518110613f8e57613f8e61504a565b60200260200101818151613fa29190614e2e565b9052505b600154613fc0906001600160a01b038b811691168761432f565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b815260040161400493929190615927565b5f604051808303815f87803b15801561401b575f5ffd5b505af115801561402d573d5f5f3e3d5ffd5b505060015461404b92506001600160a01b038c81169250165f61432f565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d8660405161407d92919061595c565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b81526004016140c9939291906158c7565b5f604051808303815f87803b1580156140e0575f5ffd5b505af11580156140f2573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff169081600681111561412957614129614672565b0361414e57826001826040516337e1404160e01b815260040161098893929190614df9565b600581600681111561416257614162614672565b036141835760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561419757614197614672565b036141b857604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561420157614201614672565b0217905550825f5160206159815f395f51905f52826006604051614226929190614e41565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612c14929190615712565b6040516001600160a01b0384811660248301528381166044830152606482018390526142999186918216906323b872dd90608401613ada565b50505050565b6142a76143bf565b6112fe57604051631afcd79f60e31b815260040160405180910390fd5b612c2961429f565b5f5f60205f8451602086015f885af1806142eb576040513d5f823e3d81fd5b50505f513d9150811561430257806001141561430f565b6001600160a01b0384163b155b156142995783604051635274afe760e01b815260040161098891906145f9565b5f836001600160a01b031663095ea7b384846040516024016143529291906158ae565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050905061438b84826143d8565b614299576143b584856001600160a01b031663095ea7b3865f604051602401613ada9291906158ae565b61429984826142cc565b5f6143c861391c565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f519050828015614417575081156144095780600114614417565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f815260200161444961456d565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b60018301918390821561452f579160200282015f5b838211156144fd57833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144b3565b801561452d5782816101000a81549063ffffffff02191690556004016020816003010492830192600103026144fd565b505b5061453b92915061458b565b5090565b826002810192821561452f579160200282015b8281111561452f578251825591602001919060010190614552565b60405180604001604052806002906020820280368337509192915050565b5b8082111561453b575f815560010161458c565b6001600160a01b0381168114610acc575f5ffd5b5f602082840312156145c3575f5ffd5b81356145ce8161459f565b9392505050565b5f602082840312156145e5575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b80356004811061461b575f5ffd5b919050565b5f5f60408385031215614631575f5ffd5b61463a8361460d565b946020939093013593505050565b5f60608284031215610ef1575f5ffd5b5f60608284031215614668575f5ffd5b6145ce8383614648565b634e487b7160e01b5f52602160045260245ffd5b600e811061469657614696614672565b9052565b602081016139408284614686565b6004811061469657614696614672565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e81526146f6602082018f6146a8565b8c60408201528b606082015261470f608082018c6145ec565b60ff8a1660a08201526101c060c08201525f61472f6101c083018b6146b8565b61473c60e084018b6145ec565b61474a61010084018a6145ec565b876101208401528661014084015282810361016084015261476b81876146b8565b91505061477c6101808301856145ec565b8215156101a08301529f9e505050505050505050505050505050565b805f5b600281101561429957815184526020938401939091019060010161479b565b805182525f60208201516147d160208501826146a8565b506040820151604084015260608201516147ee6060850182614798565b50608082015160a084015260a082015161480b60c08501826145ec565b5060c082015160ff811660e08501525060e08201516102006101008501526148376102008501826146b8565b905061010083015161484d6101208601826145ec565b506101208301516148626101408601826145ec565b506101408301516101608501526101608301516101808501526101808301518482036101a086015261489482826146b8565b9150506101a08301516148ab6101c08601826145ec565b506101c08301518015156101e0860152613a3c565b602081525f6145ce60208301846147ba565b803561461b8161459f565b5f5f5f5f5f5f5f610120888a0312156148f4575f5ffd5b87356148ff8161459f565b9650602088013561490f8161459f565b9550604088013561491f8161459f565b9450606088013561492f8161459f565b9350608088013561493f8161459f565b925060a088013591506149558960c08a01614648565b905092959891949750929550565b803560ff8116811461461b575f5ffd5b5f60208284031215614983575f5ffd5b6145ce82614963565b602081525f6145ce60208301846146b8565b5f5f604083850312156149af575f5ffd5b8235915060208301356149c18161459f565b809150509250929050565b5f5f604083850312156149dd575f5ffd5b50508035926020909101359150565b5f5f83601f8401126149fc575f5ffd5b5081356001600160401b03811115614a12575f5ffd5b602083019150836020828501011115613c92575f5ffd5b5f5f5f60408486031215614a3b575f5ffd5b614a4484614963565b925060208401356001600160401b03811115614a5e575f5ffd5b614a6a868287016149ec565b9497909650939450505050565b81518152602080830151908201526040808301519082015260608101613940565b8215158152604081016145ce6020830184614686565b5f5f5f5f5f60608688031215614ac2575f5ffd5b8535945060208601356001600160401b03811115614ade575f5ffd5b614aea888289016149ec565b90955093505060408601356001600160401b03811115614b08575f5ffd5b614b14888289016149ec565b969995985093965092949392505050565b5f60208284031215614b35575f5ffd5b81356001600160401b03811115614b4a575f5ffd5b820161010081850312156145ce575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614bb660e08401826145ec565b50610100830151614bce61010084018261ffff169052565b50610120830151614be661012084018261ffff169052565b50610140830151614bfe61014084018261ffff169052565b50610160830151614c1661016084018261ffff169052565b50610180830151614c2e61018084018261ffff169052565b506101a0830151614c486101a084018263ffffffff169052565b506101c0830151614c626101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614c7f575f5ffd5b8735965060208801356001600160401b03811115614c9b575f5ffd5b614ca78a828b016149ec565b90975095505060408801356001600160401b03811115614cc5575f5ffd5b614cd18a828b016149ec565b90955093505060608801356001600160401b03811115614cef575f5ffd5b614cfb8a828b016149ec565b989b979a50959850939692959293505050565b5f5f60408385031215614d1f575f5ffd5b82359150614d2f60208401614963565b90509250929050565b6007811061469657614696614672565b602081016139408284614d38565b5f6101e0828403128015614d68575f5ffd5b509092915050565b5f5f60608385031215614d81575f5ffd5b614d8a8361460d565b915083606084011115614d9b575f5ffd5b50926020919091019150565b828152604060208201525f614dbf60408301846147ba565b949350505050565b600181811c90821680614ddb57607f821691505b602082108103610ef157634e487b7160e01b5f52602260045260245ffd5b83815260608101614e0d6020830185614d38565b614dbf6040830184614d38565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561394057613940614e1a565b60408101614e4f8285614d38565b6145ce6020830184614d38565b634e487b7160e01b5f52604160045260245ffd5b601f821115613b0c57805f5260205f20601f840160051c81016020851015614e955750805b601f840160051c820191505b81811015614eb4575f8155600101614ea1565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614ee657614ee6614e5c565b614efa83614ef48354614dc7565b83614e70565b5f601f841160018114614f26575f8515614f145750838201355b614f1e8682614ebb565b845550614eb4565b5f83815260208120601f198716915b82811015614f555786850135825560209485019460019092019101614f35565b5086821015614f71575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60ff84168152604060208201525f614fc7604083018486614f83565b95945050505050565b5f8151808452602084019350602083015f5b828110156150095781516001600160a01b0316865260209586019590910190600101614fe2565b5093949350505050565b848152836020820152608060408201525f6150316080830185614fd0565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f614417606083018486614f83565b8015158114610acc575f5ffd5b5f602082840312156150a9575f5ffd5b81516145ce8161508c565b602081525f614dbf602083018486614f83565b5f602082840312156150d7575f5ffd5b6145ce8261460d565b6020810161394082846146a8565b808202811582820484141761394057613940614e1a565b5f8261511f57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215615134575f5ffd5b5051919050565b8181038181111561394057613940614e1a565b858152606060208201525f615167606083018688614f83565b828103604084015261517a818587614f83565b98975050505050505050565b604081525f615199604083018688614f83565b82810360208401526151ac818587614f83565b979650505050505050565b61ffff81168114610acc575f5ffd5b803561461b816151b7565b5f602082840312156151e1575f5ffd5b81356145ce816151b7565b63ffffffff81168114610acc575f5ffd5b803561461b816151ec565b5f60208284031215615218575f5ffd5b81356145ce816151ec565b5f81356139408161459f565b5f8135613940816151b7565b5f8135613940816151ec565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c08201356006820155600781016152b761529a60e08501615223565b82546001600160a01b0319166001600160a01b0391909116178255565b6152e76152c7610100850161522f565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6153176152f7610120850161522f565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b615347615327610140850161522f565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b615377615357610160850161522f565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6153a7615387610180850161522f565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b50600881016153d36153bc6101a0850161523b565b825463ffffffff191663ffffffff91909116178255565b613b0c6153e36101c0850161523b565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e0810161545660e084016148d2565b61546360e08401826145ec565b5061547161010084016151c6565b61ffff1661010083015261548861012084016151c6565b61ffff1661012083015261549f61014084016151c6565b61ffff166101408301526154b661016084016151c6565b61ffff166101608301526154cd61018084016151c6565b61ffff166101808301526154e46101a084016151fd565b63ffffffff166101a08301526154fd6101c084016151fd565b63ffffffff81166101c0840152614c62565b6040810181835f5b600281101561554657813561552b816151ec565b63ffffffff1683526020928301929190910190600101615517565b50505092915050565b5f6001820161556057615560614e1a565b5060010190565b5f5f8335601e1984360301811261557c575f5ffd5b8301803591506001600160401b03821115615595575f5ffd5b602001915036819003821315613c92575f5ffd5b5f602082840312156155b9575f5ffd5b81356145ce8161508c565b87815286602082015260a060408201525f6155e260a08301886146b8565b82810360608401526155f5818789614f83565b9050828103608084015261560a818587614f83565b9a9950505050505050505050565b81516001600160401b0381111561563157615631614e5c565b6156458161563f8454614dc7565b84614e70565b6020601f821160018114615672575f83156156605750848201515b61566a8482614ebb565b855550614eb4565b5f84815260208120601f198516915b828110156156a15787850151825560209485019460019092019101615681565b50848210156156be57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561570757815163ffffffff168352602092830192909101906001016156e2565b505050949350505050565b604081016157208285614d38565b6145ce6020830184614686565b604051601f8201601f191681016001600160401b038111828210171561575557615755614e5c565b604052919050565b5f6001600160401b0382111561577557615775614e5c565b5060051b60200190565b5f82601f83011261578e575f5ffd5b81516157a161579c8261575d565b61572d565b8082825260208201915060208360051b8601019250858311156157c2575f5ffd5b602085015b838110156157df5780518352602092830192016157c7565b5095945050505050565b5f5f604083850312156157fa575f5ffd5b82516001600160401b0381111561580f575f5ffd5b8301601f8101851361581f575f5ffd5b805161582d61579c8261575d565b8082825260208201915060208360051b85010192508783111561584e575f5ffd5b6020840193505b828410156158795783516158688161459f565b825260209384019390910190615855565b8095505050505060208301516001600160401b03811115615898575f5ffd5b6158a48582860161577f565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f6158df6060830185614fd0565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b82811015615009578151865260209586019590910190600101615909565b6001600160a01b03841681526060602082018190525f9061594a90830185614fd0565b828103604084015261441781856158f7565b604081525f61596e6040830185614fd0565b8281036020840152614fc781856158f756fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", + "deployedBytecode": "0x608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e03660046145b3565b61092e565b005b61030f6102f53660046145d5565b5f908152600960205260409020546001600160a01b031690565b60405161031c91906145f9565b60405180910390f35b61030f6103333660046145d5565b60096020525f90815260409020546001600160a01b031681565b61036061035b366004614620565b6109da565b60405163ffffffff909116815260200161031c565b6102e56103833660046145b3565b610a16565b6102e5610396366004614658565b610abb565b6103bd6103a93660046145d5565b5f908152600f602052604090205460ff1690565b60405161031c919061469a565b6103dd6103d83660046145d5565b610acf565b60405161031c9e9d9c9b9a999897969594939291906146e6565b61040a6104053660046145d5565b610c7a565b60405161031c91906148c0565b6104366104253660046145d5565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e56104523660046148dd565b610ef7565b6102e56104653660046145d5565b611134565b6102e56104783660046145b3565b6111c3565b61049061048b366004614973565b611256565b60405161031c919061498c565b60045461030f906001600160a01b031681565b61043660055481565b6102e56112ed565b6102e56104cf36600461499e565b611300565b6102e56104e23660046145d5565b611389565b6102e56104f53660046149cc565b611488565b6102e5610508366004614a29565b61157c565b60015461030f906001600160a01b031681565b61030f611688565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b6105556116b6565b60405161031c9190614a77565b6102e56105703660046145d5565b6116fc565b6105556105833660046145d5565b61186a565b61059b6105963660046145d5565b6118c3565b60405161031c929190614a98565b61030f6105b73660046145d5565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614aae565b6118ea565b604051901515815260200161031c565b610436610602366004614b25565b611b82565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614b5c565b61030f6107673660046145d5565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614c69565b612106565b6102e56107a2366004614d0e565b612336565b6102e56107b53660046145b3565b6123f2565b6102e56107c83660046149cc565b612499565b6105e46107db3660046145b3565b60076020525f908152604090205460ff1681565b61043660065481565b6102e561080636600461499e565b612556565b6102e56108193660046145d5565b612610565b61084061082c3660046145d5565b5f908152600d602052604090205460ff1690565b60405161031c9190614d48565b6102e561085b366004614d56565b61264d565b6102e561086e3660046145b3565b6128da565b6102e5610881366004614d70565b612974565b60025461030f906001600160a01b031681565b6102e56108a73660046145b3565b612c21565b6108bf6108ba366004614b25565b612c5b565b60405161031c929190614da7565b6103bd6108db3660046145d5565b61356c565b6102e56108ee3660046145b3565b613706565b61030f6109013660046145d5565b600a6020525f90815260409020546001600160a01b031681565b6102e56109293660046145b3565b61379e565b61093661382d565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e61382d565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b815260040161098891906145f9565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab09083906145f9565b60405180910390a150565b610ac361382d565b610acc8161385f565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614dc7565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614dc7565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c82614421565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf614672565b6003811115610cd057610cd0614672565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152600160a01b900460ff166060820152600782018054608090920191610d5290614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90614dc7565b8015610dc95780601f10610da057610100808354040283529160200191610dc9565b820191905f5260205f20905b815481529060010190602001808311610dac57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e1a90614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690614dc7565b8015610e915780601f10610e6857610100808354040283529160200191610e91565b820191905f5260205f20905b815481529060010190602001808311610e7457829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610ef15760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f0061391c565b805490915060ff600160401b82041615906001600160401b03165f81158015610f265750825b90505f826001600160401b03166001148015610f415750303b155b905081158015610f4f575080155b15610f6d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f9757845460ff60401b1916600160401b1785555b610fa033613946565b610fa987612610565b610fb28b613706565b610fbb8a6128da565b610fc48961092e565b610fcd88610a16565b610fd68661385f565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110bf611688565b6001600160a01b03168c6001600160a01b0316146110e0576110e08c612c21565b831561112657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61113c61382d565b5f8181526009602052604090205481906001600160a01b0316611175576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111cb61382d565b6001600160a01b0381165f90815260076020526040902054819060ff16611206576040516321ac7c5f60e01b815260040161098891906145f9565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab09083906145f9565b600b6020525f90815260409020805461126e90614dc7565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90614dc7565b80156112e55780601f106112bc576101008083540402835291602001916112e5565b820191905f5260205f20905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b6112f561382d565b6112fe5f613957565b565b61130861382d565b6001600160a01b0381161580159061133957505f828152600a60205260409020546001600160a01b03828116911614155b829061135b576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113b35760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113d8576113d8614672565b146113fd57816001826040516337e1404160e01b815260040161098893929190614df9565b5f828152600d60205260409020805460ff191660021790556015546114229042614e2e565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f5160206159815f395f51905f526001600260405161147c929190614e41565b60405180910390a25050565b5f546001600160a01b031633146114b25760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff1660028160068111156114e2576114e2614672565b1461150757836002826040516337e1404160e01b815260040161098893929190614df9565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f5160206159815f395f51905f526002600360405161156e929190614e41565b60405180910390a250505050565b61158461382d565b806115c05760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b60ff83165f908152600b6020526040902080546115dc90614dc7565b15905061162b5760405162461bcd60e51b815260206004820152601b60248201527f506172616d53657420616c7265616479207265676973746572656400000000006044820152606401610988565b60ff83165f908152600b60205260409020611647828483614ecf565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161167b93929190614fab565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6116d760405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff16600681600681111561172157611721614672565b14829061174457604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c60205260409020548281611775576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c6020526040812081905561178f846139c7565b5f858152601160205260409020546002549192506001600160a01b03908116916117bc9183911685613ab4565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b697906117f2908890879087908790600401615013565b5f604051808303815f87803b158015611809575f5ffd5b505af115801561181b573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a0731784845160405161185b929190918252602082015260400190565b60405180910390a25050505050565b61188b60405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118e08482613b11565b9250925050915091565b5f5f6118f587610c7a565b5f888152600d602052604090205490915060ff16600381600681111561191d5761191d614672565b1488600383909192611945576040516337e1404160e01b815260040161098893929190614df9565b5050505f888152600e60209081526040918290208251606081018452815481526001820154928101839052600290910154928101929092528990428110156119a9576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119e05760405163017e35e560e71b815260048101929092526024820152604401610988565b5050610160830151899015611a0b57604051637eb9cea960e11b815260040161098891815260200190565b505f8888604051611a1d92919061505e565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff19166004179055601754909150611a5f9042614e2e565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611aac908d9085908c908c9060040161506d565b6020604051808303815f875af1158015611ac8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aec9190615099565b9450888886611b1057604051632f9f8ab960e01b81526004016109889291906150b4565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611b449291906150b4565b60405180910390a2895f5160206159815f395f51905f5260036004604051611b6d929190614e41565b60405180910390a25050505095945050505050565b5f80601281611b9460208601866150c7565b6003811115611ba557611ba5614672565b6003811115611bb657611bb6614672565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611bdd579050505050505090505f81600160028110611c3457611c3461504a565b602002015163ffffffff1611835f016020810190611c5291906150c7565b90611c715760405163286c068d60e11b815260040161098891906150e0565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d9c576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d7b91906150c7565b90611d9a5760405163010b971d60e31b815260040161098891906150e0565b505b6101c081015163ffffffff1615611deb576101c081015184519063ffffffff9081169082161015611de957604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611e185760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611e369161ffff16906150ee565b611e409190615105565b61271061ffff1683610160015161ffff16601560010154611e6191906150ee565b611e6b9190615105565b61271061ffff1684610140015161ffff1660155f0154611e8b91906150ee565b611e959190615105565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611ee1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f059190615124565b611f0f9190614e2e565b611f19919061513b565b611f239190614e2e565b611f2d9190614e2e565b611f379190614e2e565b90505f611f4560018661513b565b611f509060026150ee565b611f5b9060026150ee565b611f66906006614e2e565b90505f85845f0151611f7891906150ee565b905081868560200151611f8b91906150ee565b611f9591906150ee565b611f9f9082614e2e565b90506001861115611fe7576002611fb760018861513b565b611fc190886150ee565b8560400151611fd091906150ee565b611fda9190615105565b611fe49082614e2e565b90505b81868560c00151611ff891906150ee565b61200291906150ee565b61200c9082614e2e565b90508286856060015161201f91906150ee565b61202991906150ee565b6120339082614e2e565b905084846080015161204591906150ee565b61204f9082614e2e565b9050600185111561209757600261206760018761513b565b61207190876150ee565b856040015161208091906150ee565b61208a9190615105565b6120949082614e2e565b90505b60a08401516120a69082614e2e565b610100850151909150612710906120c19061ffff1682614e2e565b6120cb90836150ee565b6120d59190615105565b975087806120f957604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f61211189610c7a565b5f8a8152600d602052604090205490915060ff16600481600681111561213957612139614672565b148a600483909192612161576040516337e1404160e01b815260040161098893929190614df9565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b90428110156121c4576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121e18a8c83614ecf565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b60405161222592919061505e565b6040519081900381206001600160e01b031960e084901b168252612253918c908c908c908c9060040161514e565b602060405180830381865afa15801561226e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122929190615099565b93508989856122b657604051632f9f8ab960e01b81526004016109889291906150b4565b50506122c18b613c99565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b6040516122f79493929190615186565b60405180910390a28a5f5160206159815f395f51905f5260046005604051612320929190614e41565b60405180910390a2505050979650505050505050565b5f546001600160a01b031633148061235857506003546001600160a01b031633145b61237557604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff1611801561238b5750600d60ff821611155b6123d05760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b6123ee828260ff16600d8111156123e9576123e9614672565b614105565b5050565b6123fa61382d565b6001600160a01b0381166124505760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b031633146124c4576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b15801561250e575f5ffd5b505af1158015612520573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161147c91815260200190565b61255e61382d565b6001600160a01b0381161580159061258f57505f828152600960205260409020546001600160a01b03828116911614155b82906125b1576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b61261861382d565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b61265561382d565b61271061266a610120830161010084016151d1565b61ffff161115612682610120830161010084016151d1565b906126a7576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126bd610140830161012084016151d1565b61ffff1611156126d5610140830161012084016151d1565b906126fa576040516301027fc160e21b815261ffff9091166004820152602401610988565b50612710612710610160830161014084016151d1565b61ffff161115612728610160830161014084016151d1565b9061274d57604051633239953960e01b815261ffff9091166004820152602401610988565b50612710612763610180830161016084016151d1565b61ffff16111561277b610180830161016084016151d1565b906127a057604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127b66101a0830161018084016151d1565b61ffff1611156127ce6101a0830161018084016151d1565b906127f357604051633239953960e01b815261ffff9091166004820152602401610988565b50612806610140820161012083016151d1565b61ffff16158061282f57505f612823610100830160e084016145b3565b6001600160a01b031614155b61284c5760405163015f92ff60e51b815260040160405180910390fd5b61285e6101e082016101c08301615208565b63ffffffff166128766101c083016101a08401615208565b63ffffffff16101561289b576040516392f55c6560e01b815260040160405180910390fd5b8060186128a88282615247565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab09190615405565b6128e261382d565b6001600160a01b0381161580159061290857506001546001600160a01b03828116911614155b8190612928576040516320252f0b60e01b815260040161098891906145f9565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab09083906145f9565b61297c61382d565b6129896020820182615208565b63ffffffff1661299f6040830160208401615208565b63ffffffff16101580156129c457505f6129bc6020830183615208565b63ffffffff16115b6129e157604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612b1a576101a081015163ffffffff16612aca6040840160208501615208565b63ffffffff161015612ae26040840160208501615208565b826101a001519091612b1757604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b91576101c081015163ffffffff16612b446020840184615208565b63ffffffff161015612b596020840184615208565b826101c001519091612b8e5760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612ba757612ba7614672565b6003811115612bb857612bb8614672565b815260208101919091526040015f20612bd291600261449e565b50826003811115612be557612be5614672565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612c14919061550f565b60405180910390a2505050565b612c2961382d565b6001600160a01b038116612c52575f604051631e4fbdf760e01b815260040161098891906145f9565b610acc81613957565b5f612c64614421565b5f601281612c7560208701876150c7565b6003811115612c8657612c86614672565b6003811115612c9757612c97614672565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612cbe579050505050505090505f81600160028110612d1557612d1561504a565b602002015163ffffffff1611845f016020810190612d3391906150c7565b90612d525760405163286c068d60e11b815260040161098891906150e0565b50602084013542811015612d7c57604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612daa5760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612dc242604089013561513b565b612dcc9190614e2e565b612dd69190614e2e565b905060055481108190612dff576040516313b783af60e21b815260040161098891815260200190565b5060075f612e1360808801606089016145b3565b6001600160a01b0316815260208101919091526040015f205460ff16612e3f60808701606088016145b3565b90612e5e5760405163295a6a6f60e11b815260040161098891906145f9565b505f612e6986611b82565b60068054965090915085905f612e7e8361554f565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612f599190890135614e2e565b5f878152600e6020908152604090912060010191909155818652612f7f908801886150c7565b85602001906003811115612f9557612f95614672565b90816003811115612fa857612fa8614672565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612ff090608089019089016145b3565b6001600160a01b031660a08087019190915261301190880160808901614973565b60ff1660c08087019190915261302990880188615567565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526130769061010089019089016155a9565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a086018190526004546130c6916001600160a01b03909116903085614260565b5f600b816130da60a08b0160808c01614973565b60ff1660ff1681526020019081526020015f2080546130f890614dc7565b80601f016020809104026020016040519081016040528092919081815260200182805461312490614dc7565b801561316f5780601f106131465761010080835404028352916020019161316f565b820191905f5260205f20905b81548152906001019060200180831161315257829003601f168201915b505050505090505f8151116131c65760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f6131d760808a0160608b016145b3565b6001600160a01b031663fefd9a8b8985856131f560a08f018f615567565b8f8060c001906132059190615567565b6040518863ffffffff1660e01b815260040161322797969594939291906155c4565b6020604051808303815f875af1158015613243573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132679190615124565b5f818152600960205260409020549091506001600160a01b031681816132a3576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b031682816132dd576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff19919091169083600381111561333b5761333b614672565b02179055506040820151816002015560608201518160030190600261336192919061453f565b506080820151600582015560a082015160068201805460c085015160ff16600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560e082015160078201906133ba9082615618565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906134229082615618565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b90613488908d9089908d906004016156cd565b6020604051808303815f875af11580156134a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c89190615099565b6134e557604051630d8dbe2560e01b815260040160405180910390fd5b6134f560808c0160608d016145b3565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b60405161352f929190614da7565b60405180910390a2895f5160206159815f395f51905f525f6001604051613557929190614e41565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff168181600681111561359057613590614672565b036135b557826001826040516337e1404160e01b815260040161098893929190614df9565b60058160068111156135c9576135c9614672565b036135ea5760405163462c7bed60e01b815260048101849052602401610988565b60068160068111156135fe576135fe614672565b0361361f57604051633de16e3560e11b815260048101849052602401610988565b5f61362a8483613b11565b935090508061364f57604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d81111561369857613698614672565b0217905550835f5160206159815f395f51905f528360066040516136bd929190614e41565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb83856040516136f7929190615712565b60405180910390a25050919050565b61370e61382d565b6001600160a01b0381161580159061373357505f546001600160a01b03828116911614155b8190613753576040516375ac4eb760e11b815260040161098891906145f9565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab09083906145f9565b6001600160a01b0381165f90815260076020526040902054819060ff16156137da5760405163b29d459560e01b815260040161098891906145f9565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab09083906145f9565b33613836611688565b6001600160a01b0316146112fe573360405163118cdaa760e01b815260040161098891906145f9565b803561387e5760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138a25760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138c65760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b61394e61429f565b610acc816142c4565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d8111156139ef576139ef614672565b1480613a0c5750600281600d811115613a0a57613a0a614672565b145b15613a44575f5b604051908082528060200260200182016040528015613a3c578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613aaa57506040513d5f823e601f3d908101601f19168201604052613aa791908101906157e9565b60015b613a3c575f613a13565b613b0c83846001600160a01b031663a9059cbb8585604051602401613ada9291906158ae565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506142cc565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613b8b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613baf9190615124565b90506001856006811115613bc557613bc5614672565b148015613bd157508042115b15613be457600180935093505050613c92565b6002856006811115613bf857613bf8614672565b148015613c055750815142115b15613c195760016003935093505050613c92565b6003856006811115613c2d57613c2d614672565b148015613c3d5750816020015142115b15613c515760016006935093505050613c92565b6004856006811115613c6557613c65614672565b148015613c755750816040015142115b15613c89576001600a935093505050613c92565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613cde573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d0591908101906157e9565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613da4576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d70908890889086906004016158c7565b5f604051808303815f87803b158015613d87575f5ffd5b505af1158015613d99573d5f5f3e3d5ffd5b505050505050505050565b825f03613e45575f858152601060205260409020546001600160a01b03168015613ddc57613ddc6001600160a01b0383168285613ab4565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e10908990899087906004016158c7565b5f604051808303815f87803b158015613e27575f5ffd5b505af1158015613e39573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613e8557506001600160a01b03811615155b15613ec157612710613e9b61ffff8416876150ee565b613ea59190615105565b92508215613ec157613ec16001600160a01b0385168285613ab4565b5f613ecc848761513b565b90505f876001600160401b03811115613ee757613ee7614e5c565b604051908082528060200260200182016040528015613f10578160200160208202803683370190505b5090505f613f1e8984615105565b90505f805b8a811015613f5d5782848281518110613f3e57613f3e61504a565b6020908102919091010152613f538383614e2e565b9150600101613f23565b505f613f69828661513b565b90508015613fa6578084613f7e60018e61513b565b81518110613f8e57613f8e61504a565b60200260200101818151613fa29190614e2e565b9052505b600154613fc0906001600160a01b038b811691168761432f565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b815260040161400493929190615927565b5f604051808303815f87803b15801561401b575f5ffd5b505af115801561402d573d5f5f3e3d5ffd5b505060015461404b92506001600160a01b038c81169250165f61432f565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d8660405161407d92919061595c565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b81526004016140c9939291906158c7565b5f604051808303815f87803b1580156140e0575f5ffd5b505af11580156140f2573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff169081600681111561412957614129614672565b0361414e57826001826040516337e1404160e01b815260040161098893929190614df9565b600581600681111561416257614162614672565b036141835760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561419757614197614672565b036141b857604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561420157614201614672565b0217905550825f5160206159815f395f51905f52826006604051614226929190614e41565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612c14929190615712565b6040516001600160a01b0384811660248301528381166044830152606482018390526142999186918216906323b872dd90608401613ada565b50505050565b6142a76143bf565b6112fe57604051631afcd79f60e31b815260040160405180910390fd5b612c2961429f565b5f5f60205f8451602086015f885af1806142eb576040513d5f823e3d81fd5b50505f513d9150811561430257806001141561430f565b6001600160a01b0384163b155b156142995783604051635274afe760e01b815260040161098891906145f9565b5f836001600160a01b031663095ea7b384846040516024016143529291906158ae565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050905061438b84826143d8565b614299576143b584856001600160a01b031663095ea7b3865f604051602401613ada9291906158ae565b61429984826142cc565b5f6143c861391c565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f519050828015614417575081156144095780600114614417565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f815260200161444961456d565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b60018301918390821561452f579160200282015f5b838211156144fd57833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144b3565b801561452d5782816101000a81549063ffffffff02191690556004016020816003010492830192600103026144fd565b505b5061453b92915061458b565b5090565b826002810192821561452f579160200282015b8281111561452f578251825591602001919060010190614552565b60405180604001604052806002906020820280368337509192915050565b5b8082111561453b575f815560010161458c565b6001600160a01b0381168114610acc575f5ffd5b5f602082840312156145c3575f5ffd5b81356145ce8161459f565b9392505050565b5f602082840312156145e5575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b80356004811061461b575f5ffd5b919050565b5f5f60408385031215614631575f5ffd5b61463a8361460d565b946020939093013593505050565b5f60608284031215610ef1575f5ffd5b5f60608284031215614668575f5ffd5b6145ce8383614648565b634e487b7160e01b5f52602160045260245ffd5b600e811061469657614696614672565b9052565b602081016139408284614686565b6004811061469657614696614672565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e81526146f6602082018f6146a8565b8c60408201528b606082015261470f608082018c6145ec565b60ff8a1660a08201526101c060c08201525f61472f6101c083018b6146b8565b61473c60e084018b6145ec565b61474a61010084018a6145ec565b876101208401528661014084015282810361016084015261476b81876146b8565b91505061477c6101808301856145ec565b8215156101a08301529f9e505050505050505050505050505050565b805f5b600281101561429957815184526020938401939091019060010161479b565b805182525f60208201516147d160208501826146a8565b506040820151604084015260608201516147ee6060850182614798565b50608082015160a084015260a082015161480b60c08501826145ec565b5060c082015160ff811660e08501525060e08201516102006101008501526148376102008501826146b8565b905061010083015161484d6101208601826145ec565b506101208301516148626101408601826145ec565b506101408301516101608501526101608301516101808501526101808301518482036101a086015261489482826146b8565b9150506101a08301516148ab6101c08601826145ec565b506101c08301518015156101e0860152613a3c565b602081525f6145ce60208301846147ba565b803561461b8161459f565b5f5f5f5f5f5f5f610120888a0312156148f4575f5ffd5b87356148ff8161459f565b9650602088013561490f8161459f565b9550604088013561491f8161459f565b9450606088013561492f8161459f565b9350608088013561493f8161459f565b925060a088013591506149558960c08a01614648565b905092959891949750929550565b803560ff8116811461461b575f5ffd5b5f60208284031215614983575f5ffd5b6145ce82614963565b602081525f6145ce60208301846146b8565b5f5f604083850312156149af575f5ffd5b8235915060208301356149c18161459f565b809150509250929050565b5f5f604083850312156149dd575f5ffd5b50508035926020909101359150565b5f5f83601f8401126149fc575f5ffd5b5081356001600160401b03811115614a12575f5ffd5b602083019150836020828501011115613c92575f5ffd5b5f5f5f60408486031215614a3b575f5ffd5b614a4484614963565b925060208401356001600160401b03811115614a5e575f5ffd5b614a6a868287016149ec565b9497909650939450505050565b81518152602080830151908201526040808301519082015260608101613940565b8215158152604081016145ce6020830184614686565b5f5f5f5f5f60608688031215614ac2575f5ffd5b8535945060208601356001600160401b03811115614ade575f5ffd5b614aea888289016149ec565b90955093505060408601356001600160401b03811115614b08575f5ffd5b614b14888289016149ec565b969995985093965092949392505050565b5f60208284031215614b35575f5ffd5b81356001600160401b03811115614b4a575f5ffd5b820161010081850312156145ce575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614bb660e08401826145ec565b50610100830151614bce61010084018261ffff169052565b50610120830151614be661012084018261ffff169052565b50610140830151614bfe61014084018261ffff169052565b50610160830151614c1661016084018261ffff169052565b50610180830151614c2e61018084018261ffff169052565b506101a0830151614c486101a084018263ffffffff169052565b506101c0830151614c626101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614c7f575f5ffd5b8735965060208801356001600160401b03811115614c9b575f5ffd5b614ca78a828b016149ec565b90975095505060408801356001600160401b03811115614cc5575f5ffd5b614cd18a828b016149ec565b90955093505060608801356001600160401b03811115614cef575f5ffd5b614cfb8a828b016149ec565b989b979a50959850939692959293505050565b5f5f60408385031215614d1f575f5ffd5b82359150614d2f60208401614963565b90509250929050565b6007811061469657614696614672565b602081016139408284614d38565b5f6101e0828403128015614d68575f5ffd5b509092915050565b5f5f60608385031215614d81575f5ffd5b614d8a8361460d565b915083606084011115614d9b575f5ffd5b50926020919091019150565b828152604060208201525f614dbf60408301846147ba565b949350505050565b600181811c90821680614ddb57607f821691505b602082108103610ef157634e487b7160e01b5f52602260045260245ffd5b83815260608101614e0d6020830185614d38565b614dbf6040830184614d38565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561394057613940614e1a565b60408101614e4f8285614d38565b6145ce6020830184614d38565b634e487b7160e01b5f52604160045260245ffd5b601f821115613b0c57805f5260205f20601f840160051c81016020851015614e955750805b601f840160051c820191505b81811015614eb4575f8155600101614ea1565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614ee657614ee6614e5c565b614efa83614ef48354614dc7565b83614e70565b5f601f841160018114614f26575f8515614f145750838201355b614f1e8682614ebb565b845550614eb4565b5f83815260208120601f198716915b82811015614f555786850135825560209485019460019092019101614f35565b5086821015614f71575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60ff84168152604060208201525f614fc7604083018486614f83565b95945050505050565b5f8151808452602084019350602083015f5b828110156150095781516001600160a01b0316865260209586019590910190600101614fe2565b5093949350505050565b848152836020820152608060408201525f6150316080830185614fd0565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f614417606083018486614f83565b8015158114610acc575f5ffd5b5f602082840312156150a9575f5ffd5b81516145ce8161508c565b602081525f614dbf602083018486614f83565b5f602082840312156150d7575f5ffd5b6145ce8261460d565b6020810161394082846146a8565b808202811582820484141761394057613940614e1a565b5f8261511f57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215615134575f5ffd5b5051919050565b8181038181111561394057613940614e1a565b858152606060208201525f615167606083018688614f83565b828103604084015261517a818587614f83565b98975050505050505050565b604081525f615199604083018688614f83565b82810360208401526151ac818587614f83565b979650505050505050565b61ffff81168114610acc575f5ffd5b803561461b816151b7565b5f602082840312156151e1575f5ffd5b81356145ce816151b7565b63ffffffff81168114610acc575f5ffd5b803561461b816151ec565b5f60208284031215615218575f5ffd5b81356145ce816151ec565b5f81356139408161459f565b5f8135613940816151b7565b5f8135613940816151ec565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c08201356006820155600781016152b761529a60e08501615223565b82546001600160a01b0319166001600160a01b0391909116178255565b6152e76152c7610100850161522f565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6153176152f7610120850161522f565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b615347615327610140850161522f565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b615377615357610160850161522f565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6153a7615387610180850161522f565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b50600881016153d36153bc6101a0850161523b565b825463ffffffff191663ffffffff91909116178255565b613b0c6153e36101c0850161523b565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e0810161545660e084016148d2565b61546360e08401826145ec565b5061547161010084016151c6565b61ffff1661010083015261548861012084016151c6565b61ffff1661012083015261549f61014084016151c6565b61ffff166101408301526154b661016084016151c6565b61ffff166101608301526154cd61018084016151c6565b61ffff166101808301526154e46101a084016151fd565b63ffffffff166101a08301526154fd6101c084016151fd565b63ffffffff81166101c0840152614c62565b6040810181835f5b600281101561554657813561552b816151ec565b63ffffffff1683526020928301929190910190600101615517565b50505092915050565b5f6001820161556057615560614e1a565b5060010190565b5f5f8335601e1984360301811261557c575f5ffd5b8301803591506001600160401b03821115615595575f5ffd5b602001915036819003821315613c92575f5ffd5b5f602082840312156155b9575f5ffd5b81356145ce8161508c565b87815286602082015260a060408201525f6155e260a08301886146b8565b82810360608401526155f5818789614f83565b9050828103608084015261560a818587614f83565b9a9950505050505050505050565b81516001600160401b0381111561563157615631614e5c565b6156458161563f8454614dc7565b84614e70565b6020601f821160018114615672575f83156156605750848201515b61566a8482614ebb565b855550614eb4565b5f84815260208120601f198516915b828110156156a15787850151825560209485019460019092019101615681565b50848210156156be57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561570757815163ffffffff168352602092830192909101906001016156e2565b505050949350505050565b604081016157208285614d38565b6145ce6020830184614686565b604051601f8201601f191681016001600160401b038111828210171561575557615755614e5c565b604052919050565b5f6001600160401b0382111561577557615775614e5c565b5060051b60200190565b5f82601f83011261578e575f5ffd5b81516157a161579c8261575d565b61572d565b8082825260208201915060208360051b8601019250858311156157c2575f5ffd5b602085015b838110156157df5780518352602092830192016157c7565b5095945050505050565b5f5f604083850312156157fa575f5ffd5b82516001600160401b0381111561580f575f5ffd5b8301601f8101851361581f575f5ffd5b805161582d61579c8261575d565b8082825260208201915060208360051b85010192508783111561584e575f5ffd5b6020840193505b828410156158795783516158688161459f565b825260209384019390910190615855565b8095505050505060208301516001600160401b03811115615898575f5ffd5b6158a48582860161577f565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f6158df6060830185614fd0565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b82811015615009578151865260209586019590910190600101615909565b6001600160a01b03841681526060602082018190525f9061594a90830185614fd0565b828103604084015261441781856158f7565b604081525f61596e6040830185614fd0565b8281036020840152614fc781856158f756fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", "linkReferences": {}, "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/Enclave.sol", - "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" + "buildInfoId": "solc-0_8_28-a5591f76a7a8353e3d0dd83e83c16479678f73a9" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json b/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json index 50b72f1e09..739fb88b9e 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/IBondingRegistry.sol/IBondingRegistry.json @@ -940,5 +940,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/IBondingRegistry.sol", - "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" + "buildInfoId": "solc-0_8_28-a5591f76a7a8353e3d0dd83e83c16479678f73a9" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json b/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json index 2e343c9f86..1cc20d8da0 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/ICiphernodeRegistry.sol/ICiphernodeRegistry.json @@ -965,5 +965,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/ICiphernodeRegistry.sol", - "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" + "buildInfoId": "solc-0_8_28-a5591f76a7a8353e3d0dd83e83c16479678f73a9" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json b/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json index 65a13c5bbc..7596014063 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/IEnclave.sol/IEnclave.json @@ -2078,5 +2078,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/IEnclave.sol", - "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" + "buildInfoId": "solc-0_8_28-a5591f76a7a8353e3d0dd83e83c16479678f73a9" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json b/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json index 24346a4165..a41540bdda 100644 --- a/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json +++ b/packages/enclave-contracts/artifacts/contracts/interfaces/ISlashingManager.sol/ISlashingManager.json @@ -954,5 +954,5 @@ "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/interfaces/ISlashingManager.sol", - "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" + "buildInfoId": "solc-0_8_28-a5591f76a7a8353e3d0dd83e83c16479678f73a9" } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json b/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json index 3942281caf..bb462308d4 100644 --- a/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json +++ b/packages/enclave-contracts/artifacts/contracts/registry/CiphernodeRegistryOwnable.sol/CiphernodeRegistryOwnable.json @@ -1320,5 +1320,5 @@ }, "immutableReferences": {}, "inputSourceName": "project/contracts/registry/CiphernodeRegistryOwnable.sol", - "buildInfoId": "solc-0_8_28-65ea15484a3d5c12e1bbcdde34515144d66c50a2" + "buildInfoId": "solc-0_8_28-a5591f76a7a8353e3d0dd83e83c16479678f73a9" } \ No newline at end of file diff --git a/packages/enclave-contracts/contracts/Enclave.sol b/packages/enclave-contracts/contracts/Enclave.sol index 5b5ad9949d..7fc516129e 100644 --- a/packages/enclave-contracts/contracts/Enclave.sol +++ b/packages/enclave-contracts/contracts/Enclave.sol @@ -660,6 +660,7 @@ contract Enclave is IEnclave, OwnableUpgradeable { bytes calldata encodedParams ) public onlyOwner { require(encodedParams.length > 0, "Empty params"); + require(paramSetRegistry[paramSet].length == 0, "ParamSet already registered"); paramSetRegistry[paramSet] = encodedParams; emit ParamSetRegistered(paramSet, encodedParams); } diff --git a/packages/enclave-contracts/contracts/interfaces/IEnclave.sol b/packages/enclave-contracts/contracts/interfaces/IEnclave.sol index 09257481c9..cb6c1dd58d 100644 --- a/packages/enclave-contracts/contracts/interfaces/IEnclave.sol +++ b/packages/enclave-contracts/contracts/interfaces/IEnclave.sol @@ -28,7 +28,9 @@ interface IEnclave { } /// @notice BFV encryption parameter sets. - /// @dev Each variant maps to a threshold BFV preset. The DKG counterpart + /// @dev Each variant maps to a threshold BFV preset. The DKG counterpart is + /// derived automatically via `BfvPreset::dkg_counterpart()` on the node side. + /// @notice Lifecycle stages of an E3 computation enum E3Stage { None, diff --git a/tests/integration/restart.sh b/tests/integration/restart.sh deleted file mode 100755 index 9f64835300..0000000000 --- a/tests/integration/restart.sh +++ /dev/null @@ -1,252 +0,0 @@ -#!/usr/bin/env bash - -# Restart/resilience integration tests. -# -# Tests different scenarios of killing and restarting nodes and the aggregator -# to verify the system recovers correctly. -# -# Scenarios: -# 1. Kill aggregator after key published, restart, complete E3 -# 4. Kill aggregator during DKG (before key published), restart, DKG completes -# 5. Kill and restart a ciphernode mid-DKG, DKG completes -# 6. Kill all nodes and aggregator, restart all, complete E3 -# -# Skipped: -# 2. Kill one ciphernode after key published (aggregator has no timeout for missing shares) -# 3. Kill aggregator during decryption (sync queries one peer which may not have all shares yet) - -set -eu - -THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" - -source "$THIS_DIR/fns.sh" -source "$THIS_DIR/lib/utils.sh" - -E3_ID=0 # Incremented per committee:new call - -# ── Common setup ────────────────────────────────────────────────────────────── - -heading "Start the EVM node" - -launch_evm - -until curl -sf -X POST http://localhost:8545 -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' > /dev/null; do - sleep 1 -done - -pnpm evm:clean -pnpm evm:deploy --network localhost - -enclave_wallet_set ag "$PRIVATE_KEY_AG" -enclave_wallet_set cn1 "$PRIVATE_KEY_CN1" -enclave_wallet_set cn2 "$PRIVATE_KEY_CN2" -enclave_wallet_set cn3 "$PRIVATE_KEY_CN3" -enclave_wallet_set cn4 "$PRIVATE_KEY_CN4" -enclave_wallet_set cn5 "$PRIVATE_KEY_CN5" - -heading "Setup ZK prover" -$ENCLAVE_BIN noir setup - -ENCODED_PARAMS=0x$($SCRIPT_DIR/lib/pack_e3_params.sh \ - --moduli 0xffffee001 \ - --moduli 0xffffc4001 \ - --degree 512 \ - --plaintext-modulus 100) - -# Register ciphernodes once (persists across scenarios via on-chain state) -pnpm ciphernode:add --ciphernode-address $CIPHERNODE_ADDRESS_1 --network localhost -pnpm ciphernode:add --ciphernode-address $CIPHERNODE_ADDRESS_2 --network localhost -pnpm ciphernode:add --ciphernode-address $CIPHERNODE_ADDRESS_3 --network localhost -pnpm ciphernode:add --ciphernode-address $CIPHERNODE_ADDRESS_4 --network localhost -pnpm ciphernode:add --ciphernode-address $CIPHERNODE_ADDRESS_5 --network localhost - -# ── Helpers ─────────────────────────────────────────────────────────────────── - -clean_output() { - rm -f "$SCRIPT_DIR/output/pubkey.bin" "$SCRIPT_DIR/output/output.bin" "$SCRIPT_DIR/output/plaintext.txt" -} - -# Hard-stop all enclave processes between scenarios (keeps anvil running) -reset_nodes() { - enclave_nodes_down - sleep 2 - # Force-kill any leftover enclave processes from the previous scenario - pkill -9 -f "target/debug/enclave" || true - sleep 1 - clean_output -} - -request_committee() { - CURRENT_TIMESTAMP=$(get_evm_timestamp) - INPUT_WINDOW_START=$((CURRENT_TIMESTAMP + 20)) - INPUT_WINDOW_END=$((CURRENT_TIMESTAMP + 30)) - - pnpm committee:new \ - --network localhost \ - --input-window-start "$INPUT_WINDOW_START" \ - --input-window-end "$INPUT_WINDOW_END" \ - --e3-params "$ENCODED_PARAMS" \ - --committee-size 0 \ - --proof-aggregation-enabled false -} - -publish_ciphertext() { - local e3_id="$1" - - $SCRIPT_DIR/lib/fake_encrypt.sh \ - --input "$SCRIPT_DIR/output/pubkey.bin" \ - --output "$SCRIPT_DIR/output/output.bin" \ - --plaintext $PLAINTEXT \ - --params "$ENCODED_PARAMS" - - pnpm e3-program:publishInput --network localhost --e3-id "$e3_id" --data 0x12345678 - - sleep 6 - - waiton "$SCRIPT_DIR/output/output.bin" - - pnpm e3:publishCiphertext --e3-id "$e3_id" --network localhost \ - --data-file "$SCRIPT_DIR/output/output.bin" --proof 0x12345678 -} - -verify_plaintext() { - local scenario="$1" - - waiton "$SCRIPT_DIR/output/plaintext.txt" 300 - - ACTUAL=$(cut -d',' -f1,2 "$SCRIPT_DIR/output/plaintext.txt") - - if [[ "$ACTUAL" != "$PLAINTEXT"* ]]; then - echo "Invalid plaintext decrypted: actual='$ACTUAL' expected='$PLAINTEXT'" - echo "$scenario — FAILED" - exit 1 - fi - - heading "$scenario — PASSED" -} - -# ── Scenario 1: Kill aggregator after key published, restart ────────────────── - -heading "Scenario 1: Aggregator restart after key published" - -enclave_nodes_up -waiton-files "$ROOT_DIR/target/debug/fake_encrypt" -sleep 4 - -request_committee -waiton "$SCRIPT_DIR/output/pubkey.bin" - -heading "Scenario 1: Killing aggregator" -enclave_nodes_stop ag -sleep 2 - -heading "Scenario 1: Restarting aggregator" -enclave_nodes_start ag -sleep 4 - -heading "Scenario 1: Publishing ciphertext after aggregator restart" -publish_ciphertext "$E3_ID" -verify_plaintext "Scenario 1: Aggregator restart after key published" - -reset_nodes -E3_ID=$((E3_ID + 1)) - -# ── Scenario 4: Kill aggregator during DKG ──────────────────────────────────── - -heading "Scenario 4: Aggregator restart during DKG" - -enclave_nodes_up -sleep 4 - -request_committee - -# Kill aggregator immediately — DKG is in progress -heading "Scenario 4: Killing aggregator during DKG" -sleep 1 -enclave_nodes_stop ag -sleep 2 - -heading "Scenario 4: Restarting aggregator" -enclave_nodes_start ag - -# DKG should complete after aggregator restarts and syncs -waiton "$SCRIPT_DIR/output/pubkey.bin" - -heading "Scenario 4: Publishing ciphertext" -publish_ciphertext "$E3_ID" -verify_plaintext "Scenario 4: Aggregator restart during DKG" - -reset_nodes -E3_ID=$((E3_ID + 1)) - -# ── Scenario 5: Kill and restart ciphernode mid-DKG ─────────────────────────── - -heading "Scenario 5: Ciphernode restart mid-DKG" - -enclave_nodes_up -sleep 4 - -request_committee - -# Kill ciphernode during DKG -heading "Scenario 5: Killing ciphernode cn3 during DKG" -sleep 1 -enclave_nodes_stop cn3 -sleep 2 - -heading "Scenario 5: Restarting ciphernode cn3" -enclave_nodes_start cn3 - -# DKG should complete with cn3 back -waiton "$SCRIPT_DIR/output/pubkey.bin" - -heading "Scenario 5: Publishing ciphertext" -publish_ciphertext "$E3_ID" -verify_plaintext "Scenario 5: Ciphernode restart mid-DKG" - -reset_nodes -E3_ID=$((E3_ID + 1)) - -# ── Scenario 6: Kill all nodes, restart all ─────────────────────────────────── - -heading "Scenario 6: Full cluster restart" - -enclave_nodes_up -sleep 4 - -request_committee -waiton "$SCRIPT_DIR/output/pubkey.bin" - -heading "Scenario 6: Killing all nodes" -enclave_nodes_down -sleep 3 - -heading "Scenario 6: Restarting all nodes" -enclave_nodes_up -sleep 6 - -heading "Scenario 6: Publishing ciphertext after full restart" -publish_ciphertext "$E3_ID" -verify_plaintext "Scenario 6: Full cluster restart" - -# ── Done ────────────────────────────────────────────────────────────────────── - -gracefull_shutdown - -heading "All restart tests PASSED !" -echo -e "\033[32m - ██████ - ██████ - ██████ - ██████ - ██████ - ██████ - ██ ██████ - ████ ██████ - ██████ ██████ - ██████████ - ████████ - ██████ - ████ - ██ - \033[0m" From d0c2cc7d6755ada0e849ffb710b5338072e6d6c5 Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Tue, 7 Apr 2026 14:24:07 +0100 Subject: [PATCH 05/10] chore: remove unnecessary files --- .../flow-trace/07_CIPHERNODE_E3_DEEP_DIVE.md | 1370 ---- fhe.md | 932 --- logs.txt | 2770 -------- logs_c0c3_debug.txt | 6149 ----------------- templates/default/logs.txt | 2764 -------- 5 files changed, 13985 deletions(-) delete mode 100644 agent/flow-trace/07_CIPHERNODE_E3_DEEP_DIVE.md delete mode 100644 fhe.md delete mode 100644 logs.txt delete mode 100644 logs_c0c3_debug.txt delete mode 100644 templates/default/logs.txt diff --git a/agent/flow-trace/07_CIPHERNODE_E3_DEEP_DIVE.md b/agent/flow-trace/07_CIPHERNODE_E3_DEEP_DIVE.md deleted file mode 100644 index e43f3d86d2..0000000000 --- a/agent/flow-trace/07_CIPHERNODE_E3_DEEP_DIVE.md +++ /dev/null @@ -1,1370 +0,0 @@ -# Ciphernode E3 Deep Dive — Clinical Code-Level Flow - -Every step, every decision, every failure path. Code references are `file:line` relative to -`crates/`. - ---- - -## Master Flow — Bird's Eye View - -``` - ON-CHAIN CIPHERNODE SOFTWARE - ───────── ─────────────────── - Enclave.request() - │ - ▼ - CommitteeFinalized ──────────────► CiphernodeSelected (per selected node) - │ - ┌─────────┴─────────┐ - ▼ ▼ - ThresholdKeyshare PublicKeyAggregator - (per node) (aggregator node) - │ │ - ┌─────┴─────┐ │ - │ PHASE 1 │ │ - │ BFV Key │ │ - │ Exchange │ │ - └─────┬─────┘ │ - │ │ - ┌─────┴─────┐ │ - │ PHASE 2 │ │ - │ TrBFV │ │ - │ Shares │ │ - │ C1-C3 │ │ - └─────┬─────┘ │ - │ │ - ┌─────┴─────┐ │ - │ PHASE 3 │ │ - │ C2/C3 │ │ - │ Verify │ │ - └─────┬─────┘ │ - │ │ - ┌─────┴─────┐ ┌─────┴─────┐ - │ PHASE 4 │ │ PHASE 5 │ - │ C4 Dec │ │ C1 Verify│ - │ Key Calc │ │ C5 Agg │ - └─────┬─────┘ └─────┬─────┘ - │ │ - │ PublicKeyAggregated - │ │ - ▼ ▼ - CiphertextOutput ───────► PHASE 6: Threshold Decryption (C6) - Published │ - ┌─────┴─────┐ - │ PHASE 7 │ - │ C6 Verify│ ThresholdPlaintextAggregator - │ C7 Agg │ - └─────┬─────┘ - │ - PlaintextAggregated - │ - ▼ - publishPlaintextOutput() ──► ON-CHAIN -``` - ---- - -## Actors: Who Does What - -``` -┌──────────────────────────────────────────────────────────────────┐ -│ PER-NODE ACTORS │ -├──────────────────────────────────────────────────────────────────┤ -│ │ -│ ThresholdKeyshare Main DKG state machine │ -│ keyshare/src/threshold_keyshare.rs │ -│ │ -│ ProofRequestActor Generates + signs C0-C7 proofs │ -│ zk-prover/src/actors/proof_request.rs │ -│ │ -│ ProofVerificationActor Verifies C0 proofs (ECDSA+ZK) │ -│ zk-prover/src/actors/proof_verification.rs │ -│ │ -│ ShareVerificationActor Verifies C1-C4/C6 (ECDSA+ZK+gates) │ -│ zk-prover/src/actors/share_verification.rs │ -│ │ -│ CommitmentConsistencyChecker Post-ZK cross-circuit checks │ -│ zk-prover/src/actors/commitment_consistency_checker.rs │ -│ │ -│ NodeProofAggregator Per-node recursive proof folding │ -│ zk-prover/src/actors/node_proof_aggregator.rs │ -│ │ -│ AccusationManager Off-chain accusation quorum │ -│ zk-prover/src/actors/accusation_manager.rs │ -│ │ -├──────────────────────────────────────────────────────────────────┤ -│ AGGREGATOR-ONLY ACTORS │ -├──────────────────────────────────────────────────────────────────┤ -│ │ -│ PublicKeyAggregator Collects keyshares, C1, C5, PK agg │ -│ aggregator/src/publickey_aggregator.rs │ -│ │ -│ ThresholdPlaintextAggregator Collects C6, threshold decrypt │ -│ aggregator/src/threshold_plaintext_aggregator.rs │ -│ │ -├──────────────────────────────────────────────────────────────────┤ -│ EVM ACTORS │ -├──────────────────────────────────────────────────────────────────┤ -│ │ -│ EnclaveSolWriter Publishes PK + plaintext on-chain │ -│ evm/src/enclave_sol_writer.rs │ -│ │ -│ SlashingManagerSolWriter Submits slash proposals on-chain │ -│ evm/src/slashing_manager_sol_writer.rs │ -│ │ -└──────────────────────────────────────────────────────────────────┘ -``` - ---- - -## Proof Map & Connections - -``` - ┌─────────────────────────────────────────────┐ - │ PROOF DEPENDENCY GRAPH │ - └─────────────────────────────────────────────┘ - - ┌─────┐ ┌─────┐ - │ C0 │──pk_commitment──────────────────────────► │ C3a │ (CrossParty, CCC) - │PkBfv│──pk_commitment──────────────────────────► │ C3b │ (CrossParty, CCC) - └─────┘ └─────┘ - │ - ┌─────┐ ┌─────┐ │ - │ C1 │──pk_commitment──────────────► │ C5 │ │ - │PkGen│ │PkAgg│ │ All happen during DKG - └──┬──┘ └─────┘ │ - │ │ - │ sk_commitment ─────────────────────┐ │ - │ e_sm_commitment ──────────────┐ │ │ - │ │ │ │ - ┌──┴──┐ │ │ ┌──┴──┐ - │ C2a │ SkShareComputation │ │ │ C2b │ ESmShareComputation - └─────┘ │ │ └─────┘ - │ │ - ┌─────┐ │ │ ┌─────┐ - │ C4b │──e_sm_commitment───────────┘ │ │ C4a │──sk_commitment────┘ - │ ESM │ (gate) │ │ SK │ (gate) - └─────┘ │ └─────┘ - │ │ │ - │ ┌─────┐ │ │ - └────────►│ C6 │◄─────────────────┘─────────────┘ - │ThDec│ expected_sk_commitment, expected_e_sm_commitment - └──┬──┘ - │ - ┌──┴──┐ - │ C7 │ DecryptedSharesAggregation - │ Agg │ - └─────┘ -``` - -### Public Signals Layout - -``` -C0 PkBfv: - ┌─────────────────────────┬──────────────────┐ - │ public inputs (varies) │ pk_commitment │ ◄── OUTPUT (TAIL) - └─────────────────────────┴──────────────────┘ - -C1 PkGeneration: - ┌──────────────────┬──────────────────┬────────────────────┐ - │ sk_commitment │ pk_commitment │ e_sm_commitment │ ◄── ALL OUTPUTS (no inputs) - └──────────────────┴──────────────────┴────────────────────┘ - -C3 ShareEncryption: - ┌───────────────────────────┬──────────────────────────────┐ - │ expected_pk_commitment │ expected_message_commitment │ ◄── ALL INPUTS (no outputs) - └───────────────────────────┴──────────────────────────────┘ - -C6 ThresholdShareDecryption: - ┌───────────────────────────┬──────────────────────────────┬──────────────────┐ - │ expected_sk_commitment │ expected_e_sm_commitment │ d_commitment │ - └───────────────────────────┴──────────────────────────────┴──────────────────┘ - INPUT (HEAD) INPUT (HEAD) OUTPUT (TAIL) - -C5 PkAggregation: - ┌─────────────────────────────────────────────────┬──────────────────┐ - │ pk_commitments[0] ... pk_commitments[H-1] │ commitment │ - └─────────────────────────────────────────────────┴──────────────────┘ - H INPUT FIELDS (HEAD) OUTPUT (TAIL) -``` - ---- - -## PHASE 1: BFV Key Exchange - -### Step 1.1: Node Selected - -``` -CiphernodeSelected event - │ - ▼ -┌─────────────────────────────────────────────┐ -│ handle_ciphernode_selected() │ -│ keyshare/src/threshold_keyshare.rs:738 │ -├─────────────────────────────────────────────┤ -│ │ -│ Is state == Init? │ -│ │ │ -│ ├── NO ──► ignore event, return │ -│ │ │ -│ ▼ YES │ -│ Generate BFV keypair: │ -│ sk = SecretKey::random() (line 751) │ -│ pk = PublicKey::new(&sk) (line 752) │ -│ │ -│ Encrypt sk locally: │ -│ sk_bfv = SensitiveBytes (line 754) │ -│ │ -│ Publish EncryptionKeyPending │ -│ { pk_bfv bytes } (line 771) │ -│ │ -│ STATE: Init ──► CollectingEncryptionKeys │ -│ │ -│ FAILURE MODES: │ -│ • BFV key generation panics │ -│ → node crashes, doesn't participate │ -│ • Already past Init │ -│ → event silently ignored │ -└─────────────────────────────────────────────┘ -``` - -### Step 1.2: C0 Proof Generation - -``` -EncryptionKeyPending event - │ - ▼ -┌─────────────────────────────────────────────────┐ -│ ProofRequestActor │ -│ zk-prover/src/actors/proof_request.rs │ -├─────────────────────────────────────────────────┤ -│ │ -│ Build C0 proof request │ -│ Publish ComputeRequest::zk(PkBfv proof) │ -│ │ │ -│ ▼ │ -│ ZK multithread generates C0 proof │ -│ │ │ -│ ├── SUCCESS │ -│ │ Sign proof: SignedProofPayload │ -│ │ ProofType::C0PkBfv │ -│ │ Publish EncryptionKeyCreated │ -│ │ { pk, signed_c0_proof } │ -│ │ Also: DKGInnerProofReady │ -│ │ (for per-node recursive fold) │ -│ │ │ -│ └── FAILURE │ -│ Proof generation fails │ -│ → EncryptionKeyCreated published │ -│ WITHOUT C0 proof (proof=None) │ -│ → other nodes can still collect │ -│ the key but C0 verify will fail │ -└─────────────────────────────────────────────────┘ -``` - -### Step 1.3: Collecting Encryption Keys - -``` -EncryptionKeyCreated events arriving from all N nodes - │ - ▼ -┌──────────────────────────────────────────────────────────┐ -│ handle_encryption_key_created() │ -│ keyshare/src/threshold_keyshare.rs:606 │ -├──────────────────────────────────────────────────────────┤ -│ │ -│ Is sender expelled? │ -│ ├── YES ──► ignore, return │ -│ ▼ NO │ -│ │ -│ Add to EncryptionKeyCollector │ -│ │ │ -│ ├── Not all N keys yet ──► wait for more │ -│ │ │ -│ ▼ All N keys collected │ -│ Emit AllEncryptionKeysCollected │ -│ │ -│ CONCURRENT: C0 VERIFICATION (per key, separate actor) │ -│ ┌────────────────────────────────────────────────┐ │ -│ │ ProofVerificationActor │ │ -│ │ zk-prover/src/actors/proof_verification.rs:74 │ │ -│ │ │ │ -│ │ For each EncryptionKeyCreated with C0 proof: │ │ -│ │ │ │ │ -│ │ ├── ECDSA validation: │ │ -│ │ │ Recover address from signature │ │ -│ │ │ │ │ │ -│ │ │ ├── FAIL: bad signature │ │ -│ │ │ │ → SignedProofFailed │ │ -│ │ │ │ → ProofVerificationFailed │ │ -│ │ │ │ → AccusationManager triggered │ │ -│ │ │ │ │ │ -│ │ │ ▼ PASS │ │ -│ │ │ │ │ -│ │ ├── ZK verification (multithread): │ │ -│ │ │ │ │ │ -│ │ │ ├── FAIL: circuit violation │ │ -│ │ │ │ → SignedProofFailed │ │ -│ │ │ │ → ProofVerificationFailed │ │ -│ │ │ │ → AccusationManager triggered │ │ -│ │ │ │ │ │ -│ │ │ ▼ PASS │ │ -│ │ │ │ │ -│ │ ▼ │ │ -│ │ ProofVerificationPassed emitted │ │ -│ │ → CCC caches (address, C0PkBfv, signals) │ │ -│ │ → AccusationManager caches as passed │ │ -│ │ → Used later for C0→C3 link check │ │ -│ └────────────────────────────────────────────────┘ │ -│ │ -│ FAILURE MODES: │ -│ • Member expelled during collection │ -│ → removed from collector, threshold_n decremented │ -│ → if remaining < threshold needed → E3Failed │ -│ • Timeout (collector has deadline) │ -│ → EncryptionKeyCollectionFailed │ -│ → E3Failed published │ -│ • No C0 proof attached │ -│ → key still collected (C0 verify skipped) │ -│ → party may be flagged later by CCC │ -└──────────────────────────────────────────────────────────┘ -``` - -### Step 1.4: Transition to Share Generation - -``` -AllEncryptionKeysCollected - │ - ▼ -┌──────────────────────────────────────────────────────┐ -│ handle_all_encryption_keys_collected() │ -│ keyshare/src/threshold_keyshare.rs:784 │ -├──────────────────────────────────────────────────────┤ -│ │ -│ STATE: CollectingEncryptionKeys │ -│ ──► GeneratingThresholdShare │ -│ │ -│ Publish ComputeRequest::trbfv(GenPkShareAndSkSss) │ -│ Contains: │ -│ • All collected BFV public keys │ -│ • TrBFV config (threshold params) │ -│ • CRP seed for deterministic randomness │ -│ │ -│ FAILURE MODES: │ -│ • TrBFV computation fails │ -│ → ComputeRequestError │ -│ → node stuck in GeneratingThresholdShare │ -│ → eventually times out on-chain │ -└──────────────────────────────────────────────────────┘ -``` - ---- - -## PHASE 2: Share Computation & Proof Generation - -### Step 2.1: TrBFV Shares Generated - -``` -ComputeResponse(GenPkShareAndSkSss) - │ - ▼ -┌──────────────────────────────────────────────────────┐ -│ handle_gen_pk_share_and_sk_sss_response() │ -│ keyshare/src/threshold_keyshare.rs:877 │ -├──────────────────────────────────────────────────────┤ -│ │ -│ Extracts: │ -│ pk_share — this node's public key share │ -│ sk_sss — Shamir shares of secret key │ -│ (one share per recipient node) │ -│ esi_sss — Shamir shares of smudging noise │ -│ (per ESI index, per recipient) │ -│ │ -│ Stores locally (encrypted at rest) │ -│ │ -│ Triggers share encryption + proof generation │ -│ (see Step 2.2) │ -│ │ -│ FAILURE MODES: │ -│ • Response contains error │ -│ → node cannot proceed │ -│ → on-chain timeout will trigger E3Failed │ -└──────────────────────────────────────────────────────┘ -``` - -### Step 2.2: Encrypt Shares & Build Proof Requests - -``` -handle_shares_generated() -keyshare/src/threshold_keyshare.rs:1012 - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ │ -│ 1. Decrypt sk_sss and esi_sss from local storage (line 1055-1059) │ -│ │ -│ 2. For each recipient node j (j ≠ self): │ -│ Encrypt sk_share[j] using recipient's BFV public key │ -│ Encrypt esi_share[j][k] for each ESI index k │ -│ Capture encryption witnesses (u_rns, e0_rns, e1_rns) │ -│ (line 1078-1092) │ -│ │ -│ 3. Build proof requests: │ -│ │ -│ ┌─────────────────────────────────────────────────────────────┐ │ -│ │ PROOF REQUESTS CREATED │ │ -│ ├─────────────────────────────────────────────────────────────┤ │ -│ │ │ │ -│ │ C1: PkGenerationProofRequest × 1 │ │ -│ │ Proves: TrBFV key generation correct │ │ -│ │ Outputs: (sk_commitment, pk_commitment, e_sm_commitment)│ │ -│ │ │ │ -│ │ C2a: ShareComputationProofRequest(SecretKey) × 1 │ │ -│ │ Proves: Shamir SSS of secret key correct │ │ -│ │ Outputs: (key_hash, commitment) │ │ -│ │ │ │ -│ │ C2b: ShareComputationProofRequest(SmudgingNoise) × 1 │ │ -│ │ Proves: Shamir SSS of smudging noise correct │ │ -│ │ Outputs: (key_hash, commitment) │ │ -│ │ │ │ -│ │ C3a: ShareEncryptionProofRequest × L_sk*(N-1) │ │ -│ │ Proves: BFV encryption of SK share correct │ │ -│ │ Inputs: (expected_pk_commitment, expected_msg_commitment)│ │ -│ │ L_sk = num_moduli_sk, N-1 = other nodes │ │ -│ │ │ │ -│ │ C3b: ShareEncryptionProofRequest × L_esm*E*(N-1) │ -│ │ Proves: BFV encryption of ESM share correct │ │ -│ │ L_esm = num_moduli_esi, E = num_esi │ │ -│ │ Inputs: (expected_pk_commitment, expected_msg_commitment)│ │ -│ │ │ │ -│ │ TOTAL per node = 3 + L_sk*(N-1) + L_esm*E*(N-1) │ │ -│ └─────────────────────────────────────────────────────────────┘ │ -│ │ -│ 4. All requests sent to ProofRequestActor │ -│ → ComputeRequest::zk per proof │ -│ → ZK multithread generates each proof │ -│ → On completion: sign with ECDSA │ -│ → Bundle into ThresholdShareCreated event per recipient │ -│ │ -│ FAILURE MODES: │ -│ • Decryption of local shares fails │ -│ → node crashes or returns error │ -│ • BFV encryption fails for a recipient │ -│ → share not sent to that recipient │ -│ • ZK proof generation fails for any proof │ -│ → proof missing from ThresholdShareCreated │ -│ → recipient marks sender as incomplete (pre_dishonest) │ -└──────────────────────────────────────────────────────────────────────────┘ -``` - -### Step 2.3: ThresholdShareCreated Broadcast - -``` -┌──────────────────────────────────────────────────────────────┐ -│ ThresholdShareCreated event (one per recipient) │ -│ events/src/enclave_event/threshold_share_created.rs │ -├──────────────────────────────────────────────────────────────┤ -│ │ -│ Payload: │ -│ ┌────────────────────────────────────────────────────┐ │ -│ │ e3_id: E3id │ │ -│ │ share: Arc (encrypted share data) │ │ -│ │ target_party_id: u64 (recipient) │ │ -│ │ signed_c2a_proof: Option │ │ -│ │ signed_c2b_proof: Option │ │ -│ │ signed_c3a_proofs: Vec │ │ -│ │ signed_c3b_proofs: Vec │ │ -│ └────────────────────────────────────────────────────┘ │ -│ │ -│ Sent via P2P gossip to the recipient node │ -│ │ -│ CONCURRENT: Each proof is also wrapped + emitted as │ -│ DKGInnerProofReady for NodeProofAggregator folding │ -│ │ -└──────────────────────────────────────────────────────────────┘ -``` - ---- - -## PHASE 3: Share Collection & C2/C3 Verification - -### Step 3.1: Collecting All Shares - -``` -ThresholdShareCreated events from all (N-1) other nodes - │ - ▼ -┌──────────────────────────────────────────────────────────────┐ -│ ThresholdShareCollector │ -│ Collects until all N-1 shares received or timeout │ -├──────────────────────────────────────────────────────────────┤ -│ │ -│ For each arriving share: │ -│ Is sender expelled? ──YES──► ignore │ -│ Already received from sender? ──YES──► ignore │ -│ Add to collection │ -│ │ -│ When all (N-1) shares collected: │ -│ → AllThresholdSharesCollected │ -│ │ -│ FAILURE MODES: │ -│ • Timeout before all shares arrive │ -│ → ThresholdShareCollectionFailed │ -│ → E3Failed(InsufficientCommitteeMembers) │ -│ → ThresholdKeyshare actor stopped │ -│ │ -│ • Member expelled during collection │ -│ → removed from expected set │ -│ → if remaining collected = new expected → complete │ -│ → if too few remain → E3Failed │ -└──────────────────────────────────────────────────────────────┘ -``` - -### Step 3.2: Pre-Dishonest Classification - -``` -AllThresholdSharesCollected - │ - ▼ -┌──────────────────────────────────────────────────────────────┐ -│ handle_all_threshold_shares_collected() │ -│ keyshare/src/threshold_keyshare.rs:1225 │ -├──────────────────────────────────────────────────────────────┤ -│ │ -│ For each party's share, check proof completeness: │ -│ │ -│ ┌─────────────────────────────────────────────────────┐ │ -│ │ PROOF COMPLETENESS CHECK │ │ -│ │ │ │ -│ │ Has C2a proof? ──NO──► no_proof_parties │ │ -│ │ Has C2b proof? ──NO──► no_proof_parties │ │ -│ │ │ │ -│ │ C3a count == expected? │ │ -│ │ expected = own share's num_moduli_sk │ │ -│ │ ──NO──► incomplete_proof_parties │ │ -│ │ │ │ -│ │ C3b count == expected? │ │ -│ │ expected = own share's num_esi * num_moduli_esi │ │ -│ │ ──NO──► incomplete_proof_parties │ │ -│ └─────────────────────────────────────────────────────┘ │ -│ │ -│ pre_dishonest = no_proof_parties ∪ incomplete_proof_parties │ -│ │ -│ Are ALL parties pre_dishonest? (no proofs to verify at all) │ -│ │ │ -│ ├── YES: honest_count = N - |pre_dishonest| │ -│ │ honest_count > threshold_m? │ -│ │ ├── NO ──► E3Failed(InsufficientCommittee) │ -│ │ ▼ YES │ -│ │ Skip verification, go directly to │ -│ │ proceed_with_decryption_key_calculation() │ -│ │ │ -│ ▼ NO (some parties have proofs) │ -│ Dispatch C2/C3 verification (Step 3.3) │ -│ │ -└──────────────────────────────────────────────────────────────┘ -``` - -### Step 3.3: C2/C3 Verification (ShareVerificationActor) - -``` -ShareVerificationDispatched { kind: ShareProofs, share_proofs, pre_dishonest } - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ ShareVerificationActor::verify_proofs() │ -│ zk-prover/src/actors/share_verification.rs:269 │ -├──────────────────────────────────────────────────────────────────────────┤ -│ │ -│ FOR EACH party in share_proofs: │ -│ │ -│ ┌─────────────────────────────────────────────────────────────────┐ │ -│ │ Is party in pre_dishonest? │ │ -│ │ ├── YES ──► SKIP entirely (no ECDSA, no ZK) (line 290) │ │ -│ │ │ No events emitted. │ │ -│ │ │ Pre_dishonest parties have no proof payload │ │ -│ │ │ to build fault evidence from. │ │ -│ │ │ │ │ -│ │ ▼ NO │ │ -│ │ │ │ -│ │ ECDSA VALIDATION (inline, line 400-468): │ │ -│ │ ┌───────────────────────────────────────────────────────┐ │ │ -│ │ │ For each SignedProofPayload in party's proofs: │ │ │ -│ │ │ │ │ │ -│ │ │ 1. e3_id matches? ──NO──► ECDSA FAIL │ │ │ -│ │ │ 2. Signature recovery succeeds? │ │ │ -│ │ │ ──NO──► ECDSA FAIL │ │ │ -│ │ │ 3. All proofs from same address (signer consistency)?│ │ │ -│ │ │ ──NO──► ECDSA FAIL │ │ │ -│ │ │ 4. Circuit name matches ProofType? │ │ │ -│ │ │ ──NO──► ECDSA FAIL │ │ │ -│ │ │ │ │ │ -│ │ │ ECDSA FAIL: │ │ │ -│ │ │ → party added to ecdsa_dishonest │ │ │ -│ │ │ → emit_signed_proof_failed() called │ │ │ -│ │ │ → SignedProofFailed event │ │ │ -│ │ │ → ProofVerificationFailed event │ │ │ -│ │ │ → AccusationManager picks up PVF │ │ │ -│ │ │ │ │ │ -│ │ │ ECDSA PASS: │ │ │ -│ │ │ → party added to ecdsa_passed_parties │ │ │ -│ │ └───────────────────────────────────────────────────────┘ │ │ -│ └─────────────────────────────────────────────────────────────────┘ │ -│ │ -│ All parties ECDSA-failed? │ -│ ├── YES ──► all_dishonest = pre_dishonest ∪ ecdsa_dishonest │ -│ │ publish_complete() immediately │ -│ │ (no ZK needed) │ -│ │ │ -│ ▼ NO (at least one party passed ECDSA) │ -│ │ -│ Recover addresses for ECDSA-passed parties (line 307-314) │ -│ Compute proof hashes + cache public_signals (line 329-360) │ -│ │ -│ DISPATCH ZK VERIFICATION (multithread): │ -│ ComputeRequest::zk(VerifyShareProofs { ecdsa_passed_parties }) │ -│ → only ECDSA-passed parties are ZK-verified │ -│ → pre_dishonest and ecdsa_dishonest are NOT sent to ZK │ -│ │ -│ Store in self.pending: │ -│ PendingVerification { e3_id, kind, ec, ecdsa_dishonest, │ -│ pre_dishonest, dispatched_party_ids, party_addresses, │ -│ party_proof_hashes, party_public_signals, party_signed_proofs } │ -│ │ -│ FAILURE MODES: │ -│ • ComputeRequest publish fails │ -│ → all dispatched parties treated as dishonest │ -│ → publish_complete() with everyone dishonest │ -│ • ZK multithread crashes │ -│ → ComputeRequestError received │ -│ → all dispatched parties treated as dishonest │ -└──────────────────────────────────────────────────────────────────────────┘ -``` - -### Step 3.4: ZK Results Processing - -``` -ComputeResponse arrives with ZK results - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ handle_compute_response() │ -│ zk-prover/src/actors/share_verification.rs:471 │ -├──────────────────────────────────────────────────────────────────────────┤ -│ │ -│ Build all_dishonest = pre_dishonest ∪ ecdsa_dishonest │ -│ │ -│ CROSS-CHECK: every dispatched party must appear in results │ -│ Missing party? → add to all_dishonest (defense-in-depth) (line 507) │ -│ │ -│ FOR EACH ZK result: │ -│ │ -│ ┌──────────────────────────────────────────────────────────────────┐ │ -│ │ Party not in dispatched_party_ids? │ │ -│ │ → IGNORE (spurious result, defense-in-depth) (line 519) │ │ -│ │ │ │ -│ │ result.all_verified == false? (ZK FAILED) │ │ -│ │ │ │ │ -│ │ ▼ │ │ -│ │ Add to all_dishonest (line 530) │ │ -│ │ emit_signed_proof_failed() (line 538-544) │ │ -│ │ → SignedProofFailed event │ │ -│ │ → ProofVerificationFailed event │ │ -│ │ → AccusationManager picks up PVF │ │ -│ │ │ │ -│ │ result.all_verified == true? (ZK PASSED) │ │ -│ │ │ │ │ -│ │ ├── Party in all_dishonest already? │ │ -│ │ │ ├── YES → SUPPRESS ProofVerificationPassed (line 546)│ │ -│ │ │ │ Log warning (should be unreachable) │ │ -│ │ │ │ │ │ -│ │ │ ▼ NO │ │ -│ │ │ Emit ProofVerificationPassed per proof type (line 548) │ │ -│ │ │ → CCC caches for commitment link checks │ │ -│ │ │ → AccusationManager caches as passed │ │ -│ │ │ │ │ -│ └──────────────────────────────────────────────────────────────────┘ │ -│ │ -│ CACHE C4 SIGNALS (if kind == DecryptionProofs): │ -│ For each ZK-passed honest party: │ -│ c4_signals_cache[e3_id][party_id] = public_signals (line 597) │ -│ (used later by C4→C6 gate) │ -│ │ -│ EVICT C4 CACHE (if kind == ThresholdDecryptionProofs): │ -│ c4_signals_cache.remove(e3_id) (line 595) │ -│ (cache no longer needed after C6 verification) │ -│ │ -│ publish_complete(e3_id, kind, all_dishonest) │ -│ → ShareVerificationComplete event │ -│ │ -└──────────────────────────────────────────────────────────────────────────┘ -``` - -### Step 3.5: Post-Verification Threshold Check - -``` -ShareVerificationComplete { kind: ShareProofs, dishonest_parties } - │ - ▼ -┌──────────────────────────────────────────────────────────────┐ -│ handle_share_verification_complete(ShareProofs) │ -│ keyshare/src/threshold_keyshare.rs:1395 │ -├──────────────────────────────────────────────────────────────┤ -│ │ -│ honest_parties = all_parties - dishonest_parties │ -│ │ -│ honest_count > threshold_m? │ -│ │ │ -│ ├── NO ──► E3Failed(InsufficientCommitteeMembers) │ -│ │ Actor stops. │ -│ │ │ -│ ▼ YES │ -│ proceed_with_decryption_key_calculation() │ -│ (PHASE 4) │ -│ │ -└──────────────────────────────────────────────────────────────┘ -``` - ---- - -## PHASE 4: Decryption Key Computation & C4 Proofs - -### Step 4.1: Decrypt Received Shares & Validate Dimensions - -``` -proceed_with_decryption_key_calculation() -keyshare/src/threshold_keyshare.rs:1501 - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ │ -│ 1. Filter to honest parties only (line 1523-1531) │ -│ │ -│ 2. FOR EACH honest party's share: (line 1533-1561) │ -│ ┌──────────────────────────────────────────────────────────┐ │ -│ │ Validate dimensions against own share (trusted source): │ │ -│ │ ESI count matches? ──NO──► exclude party │ │ -│ │ SK moduli count? ──NO──► exclude party │ │ -│ │ ESM moduli count? ──NO──► exclude party │ │ -│ │ │ │ -│ │ On exclusion: │ │ -│ │ → log warning with party_id + mismatch details │ │ -│ │ → party removed from honest set │ │ -│ └──────────────────────────────────────────────────────────┘ │ -│ │ -│ 3. RE-CHECK THRESHOLD after exclusions (line 1638-1650) │ -│ remaining > threshold_m? │ -│ ├── NO ──► E3Failed(InsufficientCommitteeMembers) │ -│ ▼ YES │ -│ │ -│ 4. Collect ciphertexts for C4 proofs (line 1670-1699) │ -│ C4a: SK share ciphertexts from honest parties │ -│ C4b: ESM share ciphertexts per smudging noise index │ -│ │ -│ 5. Decrypt all shares using own BFV secret key (line 1702-1740) │ -│ │ -│ 6. Compute decryption key aggregation │ -│ ComputeRequest::trbfv(CalculateDecryptionKey) (line 1742) │ -│ │ -│ 7. Build C4 proof requests (line 1759-1784) │ -│ sk_request: DkgShareDecryptionProofRequest (for C4a) │ -│ esm_requests: Vec (for C4b) │ -│ │ -│ FAILURE MODES: │ -│ • All parties excluded by dimension check │ -│ → E3Failed │ -│ • BFV decryption fails │ -│ → error, node cannot continue │ -│ • Compute request fails │ -│ → ComputeRequestError, node stuck │ -└──────────────────────────────────────────────────────────────────────────┘ -``` - -### Step 4.2: C4 Proof Generation, Signing, Broadcast - -``` -DecryptionShareProofsPending - │ - ▼ -┌──────────────────────────────────────────────────────────────┐ -│ ProofRequestActor::handle_decryption_share_proofs_pending() │ -│ zk-prover/src/actors/proof_request.rs:550 │ -├──────────────────────────────────────────────────────────────┤ -│ │ -│ Generate C4a (SK decryption proof): │ -│ ComputeRequest::zk(DkgShareDecryption(sk_request)) │ -│ ProofType: C4aSkShareDecryption │ -│ Output: commitment (in public_signals tail) │ -│ │ -│ Generate C4b (ESM decryption proofs): │ -│ FOR EACH ESI index: │ -│ ComputeRequest::zk(DkgShareDecryption(esm_request[i])) │ -│ ProofType: C4bESmShareDecryption │ -│ │ -│ On all complete: │ -│ Sign each proof with ECDSA │ -│ Publish DecryptionKeyShared event: │ -│ { party_id, node, │ -│ signed_sk_decryption_proof, │ -│ signed_e_sm_decryption_proofs: Vec } │ -│ │ -│ Also: DKGInnerProofReady for recursive fold │ -│ │ -│ FAILURE MODES: │ -│ • Any ZK proof generation fails │ -│ → that proof missing from DecryptionKeyShared │ -│ → recipient marks sender's proof count wrong │ -│ → sender becomes pre_dishonest │ -│ • Signing fails │ -│ → same result │ -└──────────────────────────────────────────────────────────────┘ -``` - -### Step 4.3: C4 Collection & Verification - -``` -DecryptionKeyShared events from all honest parties - │ - ▼ -┌──────────────────────────────────────────────────────────────┐ -│ DecryptionKeySharedCollector │ -│ │ -│ Collect until all honest parties' C4 proofs received │ -│ │ │ -│ ├── Timeout ──► DecryptionKeySharedCollectionFailed │ -│ │ → E3Failed, actor stopped │ -│ │ │ -│ ▼ All collected │ -│ AllDecryptionKeySharesCollected │ -│ │ │ -│ ▼ │ -│ dispatch_c4_verification() │ -│ keyshare/src/threshold_keyshare.rs:1929 │ -│ │ │ -│ ▼ │ -│ PRE-VALIDATION (line 1944-1979): │ -│ For each party: │ -│ ESM proof count == expected? │ -│ ──NO──► pre_dishonest │ -│ │ -│ Still enough honest? ──NO──► E3Failed │ -│ │ -│ ShareVerificationDispatched { kind: DecryptionProofs } │ -│ → Same ECDSA + ZK flow as C2/C3 (Step 3.3-3.4) │ -│ → C4 public_signals cached on ZK pass (for C4→C6 gate) │ -│ │ -│ ShareVerificationComplete { kind: DecryptionProofs } │ -│ → Update honest set, threshold check │ -│ → Publish KeyshareCreated (Exchange #4) │ -│ { pk_share, signed_pk_generation_proof (C1) } │ -└──────────────────────────────────────────────────────────────┘ -``` - ---- - -## PHASE 5: Public Key Aggregation (Aggregator) - -### Step 5.1-5.7: Complete Aggregation Flow - -``` -KeyshareCreated events from all N nodes - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ PublicKeyAggregator │ -│ aggregator/src/publickey_aggregator.rs │ -├──────────────────────────────────────────────────────────────────────────┤ -│ │ -│ STATE: Collecting │ -│ │ -│ Collect KeyshareCreated { pk_share, C1 proof } from each node │ -│ Track insertion order → party_id mapping │ -│ │ -│ All N keyshares received? │ -│ ├── NO ──► wait (or member expelled → remove + re-check) │ -│ ▼ YES │ -│ │ -│ STATE: Collecting ──► VerifyingC1 │ -│ │ -│ Dispatch C1 verification: │ -│ ShareVerificationDispatched { kind: PkGenerationProofs } │ -│ → Same ECDSA + ZK flow │ -│ │ │ -│ ▼ │ -│ ShareVerificationComplete { kind: PkGenerationProofs } │ -│ │ │ -│ ▼ │ -│ handle_c1_verification_complete() (line 232) │ -│ │ -│ POST-C1 COMMITMENT CROSS-CHECK (line 271-309): │ -│ ┌──────────────────────────────────────────────────────────────────┐ │ -│ │ For each ZK-passed party: │ │ -│ │ 1. Compute pk_commitment from raw keyshare bytes │ │ -│ │ (hash the polynomial coefficients) │ │ -│ │ 2. Extract pk_commitment from C1 proof's public_signals │ │ -│ │ (field index 1 in PK_GENERATION_OUTPUTS) │ │ -│ │ 3. Compare: │ │ -│ │ MATCH → party stays honest │ │ -│ │ MISMATCH → add to dishonest_parties │ │ -│ │ emit SignedProofFailed │ │ -│ │ (keyshare doesn't match what C1 proves) │ │ -│ └──────────────────────────────────────────────────────────────────┘ │ -│ │ -│ Re-filter to honest entries after commitment check (line 341) │ -│ │ -│ honest_keyshares.len() > threshold_m? (line 361) │ -│ ├── NO ──► E3Failed │ -│ ▼ YES │ -│ │ -│ AGGREGATE PUBLIC KEY: │ -│ fhe.get_aggregate_public_key(honest_keyshares) (line 384) │ -│ │ -│ STATE: VerifyingC1 ──► GeneratingC5Proof │ -│ │ -│ Emit PkAggregationProofPending (triggers C5 proof gen) │ -│ │ -│ ┌──────────────────────────────────────────────────────────────────┐ │ -│ │ C5 PROOF + CROSS-NODE FOLD (concurrent) │ │ -│ │ │ │ -│ │ C5 Proof: │ │ -│ │ ProofRequestActor generates PkAggregation proof │ │ -│ │ Public signals: [pk_commitments[0..H], pk_agg_commitment] │ │ -│ │ Sign → PkAggregationProofSigned │ │ -│ │ │ │ -│ │ Cross-Node Fold: │ │ -│ │ Collect DKGRecursiveAggregationComplete from each honest party │ │ -│ │ Fold all per-node proofs into single cross-node proof │ │ -│ │ (or skip if proof aggregation disabled) │ │ -│ │ │ │ -│ │ BOTH MUST COMPLETE before publishing │ │ -│ └──────────────────────────────────────────────────────────────────┘ │ -│ │ -│ try_publish_complete() (line 639) │ -│ Preconditions: C5 signed AND fold done │ -│ │ -│ Publish PublicKeyAggregated: │ -│ { pubkey, nodes, pk_aggregation_proof, dkg_aggregated_proof } │ -│ │ -│ STATE: GeneratingC5Proof ──► Complete │ -│ │ -│ ON-CHAIN: EnclaveSolWriter publishes the aggregated PK │ -│ │ -└──────────────────────────────────────────────────────────────────────────┘ -``` - ---- - -## PHASE 6: Threshold Decryption (C6) - -``` -CiphertextOutputPublished (on-chain event, computation is done) - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ handle_ciphertext_output_published() │ -│ keyshare/src/threshold_keyshare.rs:2056 │ -├──────────────────────────────────────────────────────────────────────────┤ -│ │ -│ STATE: ReadyForDecryption ──► Decrypting │ -│ │ -│ Store ciphertext bytes │ -│ ComputeRequest::trbfv(CalculateDecryptionShare) │ -│ Uses: sk_poly_sum, es_poly_sum, ciphertexts │ -│ │ │ -│ ▼ │ -│ ComputeResponse → d_share_poly (decryption share polynomial) │ -│ │ │ -│ ▼ │ -│ STATE: Decrypting ──► GeneratingDecryptionProof │ -│ │ -│ Publish ShareDecryptionProofPending │ -│ → ProofRequestActor generates C6 proof │ -│ → ProofType: C6ThresholdShareDecryption │ -│ → Public inputs: expected_sk_commitment, expected_e_sm_commitment │ -│ → Public output: d_commitment │ -│ → Sign with ECDSA │ -│ │ │ -│ ▼ │ -│ Publish DecryptionshareCreated: │ -│ { party_id, decryption_share, signed_decryption_proofs, │ -│ wrapped_proofs (for cross-node fold) } │ -│ │ -│ FAILURE MODES: │ -│ • Not in ReadyForDecryption state │ -│ → event ignored (wrong lifecycle phase) │ -│ • Decryption share computation fails │ -│ → ComputeRequestError, node stuck │ -│ • C6 proof generation fails │ -│ → DecryptionshareCreated not published │ -│ → aggregator won't receive this node's share │ -│ → may still succeed if enough other shares │ -└──────────────────────────────────────────────────────────────────────────┘ -``` - ---- - -## PHASE 7: Plaintext Reconstruction (Aggregator) - -``` -DecryptionshareCreated events from all N nodes - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ ThresholdPlaintextAggregator │ -│ aggregator/src/threshold_plaintext_aggregator.rs │ -├──────────────────────────────────────────────────────────────────────────┤ -│ │ -│ STATE: Collecting │ -│ Collect shares + C6 proofs until all N received │ -│ │ -│ STATE: Collecting ──► VerifyingC6 │ -│ │ -│ ══════════════════════════════════════════════════════════════ │ -│ ║ C4→C6 GATE (PRE-VERIFICATION) ║ │ -│ ║ share_verification.rs:164-225 ║ │ -│ ║ ║ │ -│ ║ Before dispatching ZK, for EACH party: ║ │ -│ ║ ║ │ -│ ║ Has cached C4 signals for this party? ║ │ -│ ║ │ ║ │ -│ ║ ├── NO ──► skip gate, ZK will still verify ║ │ -│ ║ │ (no cached data = can't compare) ║ │ -│ ║ │ ║ │ -│ ║ ▼ YES ║ │ -│ ║ ║ │ -│ ║ Is party already pre_dishonest? ║ │ -│ ║ ├── YES ──► skip (already flagged) ║ │ -│ ║ ▼ NO ║ │ -│ ║ ║ │ -│ ║ Check C4a→C6: sk_commitment ║ │ -│ ║ Extract sk_commitment from C4a public_signals ║ │ -│ ║ Extract expected_sk_commitment from C6 public_signals ║ │ -│ ║ Match? ──NO──► mismatch = true ║ │ -│ ║ ║ │ -│ ║ Check C4b→C6: e_sm_commitment ║ │ -│ ║ Extract e_sm_commitment from C4b public_signals ║ │ -│ ║ Extract expected_e_sm_commitment from C6 pub signals ║ │ -│ ║ Match? ──NO──► mismatch = true ║ │ -│ ║ ║ │ -│ ║ mismatch == true? ║ │ -│ ║ │ ║ │ -│ ║ ├── YES: ║ │ -│ ║ │ pre_dishonest.insert(party_id) ║ │ -│ ║ │ emit_signed_proof_failed() ║ │ -│ ║ │ → SignedProofFailed ║ │ -│ ║ │ → ProofVerificationFailed ║ │ -│ ║ │ → AccusationManager triggered ║ │ -│ ║ │ ║ │ -│ ║ ▼ NO: party passes gate ║ │ -│ ║ ║ │ -│ ══════════════════════════════════════════════════════════════ │ -│ │ -│ ShareVerificationDispatched { kind: ThresholdDecryptionProofs } │ -│ → pre_dishonest parties skip ECDSA + ZK entirely │ -│ → Same ECDSA + ZK flow for remaining parties │ -│ → c4_signals_cache EVICTED after verification (line 595) │ -│ │ │ -│ ▼ │ -│ ShareVerificationComplete { kind: ThresholdDecryptionProofs } │ -│ │ │ -│ ▼ │ -│ handle_c6_verification_complete() (line 292) │ -│ │ -│ Filter to honest shares only (line 323-328) │ -│ honest_shares.len() > threshold_m? (line 330-335) │ -│ ├── NO ──► error (cannot compute plaintext) │ -│ ▼ YES │ -│ │ -│ STATE: VerifyingC6 ──► Computing │ -│ │ -│ ComputeRequest::trbfv(CalculateThresholdDecryption) │ -│ Uses only honest shares │ -│ │ │ -│ ▼ │ -│ ComputeResponse → plaintext │ -│ │ -│ STATE: Computing ──► GeneratingC7Proof │ -│ │ -│ C7 proof generation (ProofRequestActor) │ -│ Proves: correct plaintext reconstruction │ -│ │ │ -│ ▼ │ -│ try_publish_complete() (line 536) │ -│ Preconditions: C7 proofs ready AND C6 fold done │ -│ │ │ -│ ▼ │ -│ PlaintextAggregated event: │ -│ { decrypted_output, aggregation_proofs (C7), │ -│ c6_aggregated_proof (cross-node fold) } │ -│ │ │ -│ ▼ │ -│ EnclaveSolWriter → publishPlaintextOutput() on-chain │ -│ │ -│ STATE: GeneratingC7Proof ──► Complete │ -│ │ -└──────────────────────────────────────────────────────────────────────────┘ -``` - ---- - -## ACCUSATION & SLASHING FLOW - -``` -ProofVerificationFailed event -(emitted by ShareVerificationActor or ProofVerificationActor) - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ AccusationManager::on_local_proof_failure() │ -│ zk-prover/src/actors/accusation_manager.rs:314 │ -├──────────────────────────────────────────────────────────────────────────┤ -│ │ -│ 1. Resolve accused address (from event or committee lookup) │ -│ 2. Cache in received_data[(accused, proof_type)] = { hash, failed } │ -│ 3. Already accused for (accused, proof_type)? ──YES──► return (dedup) │ -│ 4. Create ProofFailureAccusation: │ -│ accusation_id = keccak256(chainId, e3_id, accused, proof_type) │ -│ Sign with ECDSA (matches Solidity typehash) │ -│ 5. Broadcast via P2P gossip │ -│ 6. Cast own vote: agrees=true, signed │ -│ 7. Start 300s timeout │ -│ 8. check_quorum() immediately (in case threshold_m == 1) │ -│ │ -└──────────────────────────┬───────────────────────────────────────────────┘ - │ - P2P gossip to other committee members - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ AccusationManager::on_accusation_received() │ -│ zk-prover/src/actors/accusation_manager.rs:435 │ -├──────────────────────────────────────────────────────────────────────────┤ -│ │ -│ Verify accuser is committee member ──FAIL──► ignore │ -│ Verify accused is committee member ──FAIL──► ignore │ -│ Is it my own accusation? ──YES──► ignore (already voted) │ -│ Verify ECDSA signature on accusation ──FAIL──► ignore │ -│ Already pending for this accusation_id? ──YES──► ignore (dedup) │ -│ │ -│ DETERMINE VOTE: │ -│ ┌──────────────────────────────────────────────────────────────────┐ │ -│ │ │ │ -│ │ Have local cache for (accused, proof_type)? │ │ -│ │ │ │ │ -│ │ ├── YES, verification_passed == false │ │ -│ │ │ → vote agrees=true (our verification also failed) │ │ -│ │ │ │ │ -│ │ ├── YES, verification_passed == true │ │ -│ │ │ → vote agrees=false (our verification passed) │ │ -│ │ │ │ │ -│ │ └── NO (cache miss): │ │ -│ │ │ │ │ -│ │ ├── proof_type is C3a/C3b AND forwarded payload present │ │ -│ │ │ → validate forwarded ECDSA │ │ -│ │ │ ├── INVALID → abstain (return, no vote) │ │ -│ │ │ ▼ VALID │ │ -│ │ │ → dispatch async ZK re-verification │ │ -│ │ │ → DEFER vote (cast after ZK completes) │ │ -│ │ │ → on ZK result: agrees = !zk_passed │ │ -│ │ │ │ │ -│ │ └── other proof type, no forwarded payload │ │ -│ │ → ABSTAIN (return without voting) │ │ -│ │ │ │ -│ └──────────────────────────────────────────────────────────────────┘ │ -│ │ -│ Sign vote with ECDSA, broadcast via P2P │ -│ check_quorum() │ -│ │ -└──────────────────────────────────────────────────────────────────────────┘ - - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ check_quorum() │ -│ zk-prover/src/actors/accusation_manager.rs:740 │ -├──────────────────────────────────────────────────────────────────────────┤ -│ │ -│ agree_count >= threshold_m? │ -│ │ │ -│ ├── YES: │ -│ │ All agreeing voters saw same data_hash? │ -│ │ ├── YES → AccusedFaulted (SLASHABLE) │ -│ │ └── NO → Equivocation (SLASHABLE) │ -│ │ → emit AccusationQuorumReached immediately │ -│ │ │ -│ └── NO: │ -│ Can quorum still be reached (with remaining voters)? │ -│ ├── YES → wait for more votes │ -│ └── NO → resolve: │ -│ Multiple data_hashes across votes? │ -│ ├── YES → Equivocation (SLASHABLE) │ -│ └── NO → │ -│ Only accuser says bad, others say good? │ -│ ├── YES → AccuserLied (NOT slashable) │ -│ └── NO → Inconclusive (NOT slashable) │ -│ │ -│ ON TIMEOUT (300s, line 830-886): │ -│ Same resolution logic as "cannot reach quorum" │ -│ │ -└──────────────────────────────────────────────────────────────────────────┘ - │ - ▼ (only if SLASHABLE) -┌──────────────────────────────────────────────────────────────────────────┐ -│ SlashingManagerSolWriter │ -│ evm/src/slashing_manager_sol_writer.rs:91 │ -├──────────────────────────────────────────────────────────────────────────┤ -│ │ -│ AccusationQuorumReached { outcome = AccusedFaulted | Equivocation } │ -│ │ -│ Sort agreeing voters by address (ascending) │ -│ Am I in the top 3? │ -│ ├── NO ──► don't submit (leave to others) │ -│ ▼ YES │ -│ │ -│ Staggered submission (prevent wasted gas): │ -│ Rank 0 (lowest address): submit immediately │ -│ Rank 1: wait 30s, then submit │ -│ Rank 2: wait 60s, then submit │ -│ │ -│ On-chain: SlashingManager.proposeSlash(e3_id, operator, evidence) │ -│ Evidence = abi.encode(proofType, voters[], agrees[], hashes[], sigs[])│ -│ │ -│ Contract verifies: │ -│ • Array lengths match │ -│ • numVotes >= threshold_m │ -│ • Each voter: ascending order, no self-vote, active member │ -│ • Each ECDSA signature valid (matches Solidity typehash) │ -│ • Replay protection (no double-slash) │ -│ → ATOMIC EXECUTION: slash ticket + license + expel from committee │ -│ │ -└──────────────────────────────────────────────────────────────────────────┘ -``` - ---- - -## MEMBER EXPULSION (at any phase) - -``` -SlashExecuted event (on-chain slash confirmed) - │ - ▼ -┌──────────────────────────────────────────────────────────────────────────┐ -│ CommitteeMemberExpelled event emitted │ -│ Received by ALL actors simultaneously │ -├──────────────────────────────────────────────────────────────────────────┤ -│ │ -│ ThresholdKeyshare::handle_committee_member_expelled() │ -│ keyshare/src/threshold_keyshare.rs:519 │ -│ 1. Add to expelled_parties set │ -│ 2. Remove from honest_parties │ -│ 3. Remove from all collectors: │ -│ • EncryptionKeyCollector │ -│ • ThresholdShareCollector │ -│ • DecryptionKeySharedCollector │ -│ 4. If collector now considers "all collected" │ -│ → triggers next phase transition │ -│ 5. If threshold can't be met → E3Failed │ -│ │ -│ PublicKeyAggregator::handle_member_expelled() │ -│ aggregator/src/publickey_aggregator.rs:777 │ -│ 1. Remove keyshare and C1 proof │ -│ 2. Decrement threshold_n │ -│ 3. If in Collecting and now "all received" │ -│ → transition to VerifyingC1 │ -│ 4. If threshold can't be met → E3Failed │ -│ │ -│ AccusationManager: │ -│ 1. Purge votes from expelled member │ -│ 2. Remove from committee list │ -│ 3. Re-check pending quorums │ -│ │ -└──────────────────────────────────────────────────────────────────────────┘ -``` - ---- - -## ON-CHAIN TIMEOUTS - -``` -┌──────────────────────────────────────────────────────────────────────────┐ -│ TIMEOUT DEADLINES │ -├──────────────────────┬───────────────────────┬───────────────────────────┤ -│ Phase │ Deadline │ On Expiry │ -├──────────────────────┼───────────────────────┼───────────────────────────┤ -│ Committee Formation │ committeeDeadline │ markE3Failed() callable │ -│ (Requested→Finalized)│ │ → E3Failed │ -│ │ │ → Requester refunded │ -├──────────────────────┼───────────────────────┼───────────────────────────┤ -│ DKG │ dkgDeadline │ markE3Failed() callable │ -│ (Finalized→KeyPub) │ │ → E3Failed │ -│ │ │ → Partial refund │ -├──────────────────────┼───────────────────────┼───────────────────────────┤ -│ Computation │ computeDeadline │ markE3Failed() callable │ -│ (KeyPub→Ciphertext) │ │ → E3Failed │ -│ │ │ → Partial refund │ -├──────────────────────┼───────────────────────┼───────────────────────────┤ -│ Decryption │ decryptionDeadline │ markE3Failed() callable │ -│ (Ciphertext→Complete)│ │ → E3Failed │ -│ │ │ → Partial refund │ -└──────────────────────┴───────────────────────┴───────────────────────────┘ - -Anyone can call markE3Failed() after a deadline expires. -On failure: slashed funds go to E3RefundManager. -On success: fees split between CN rewards and protocol treasury. -``` - ---- - -## COMPLETE FAILURE CATALOG - -``` -┌──────────────────────────────────────────────────────────────────────────┐ -│ # │ WHERE │ WHAT │ CONSEQUENCE │ -├────┼──────────────────────────┼───────────────────────┼───────────────────┤ -│ 1 │ Step 1.1 │ BFV keygen fails │ Node can't join │ -│ 2 │ Step 1.3 │ Key collection timeout│ E3Failed │ -│ 3 │ Step 1.3 │ C0 ECDSA fails │ Accusation │ -│ 4 │ Step 1.3 │ C0 ZK fails │ Accusation │ -│ 5 │ Step 1.3 │ Member expelled │ Recheck threshold │ -│ 6 │ Step 1.4 │ TrBFV compute fails │ Node stuck │ -│ 7 │ Step 2.2 │ BFV encryption fails │ Missing share │ -│ 8 │ Step 2.2 │ ZK proof gen fails │ Incomplete proofs │ -│ 9 │ Step 3.1 │ Share collect timeout │ E3Failed │ -│ 10 │ Step 3.1 │ Member expelled │ Recheck threshold │ -│ 11 │ Step 3.2 │ No proofs from party │ pre_dishonest │ -│ 12 │ Step 3.2 │ Wrong proof count │ pre_dishonest │ -│ 13 │ Step 3.2 │ All pre_dishonest │ Skip to threshold │ -│ 14 │ Step 3.3 │ ECDSA e3_id mismatch │ ecdsa_dishonest │ -│ 15 │ Step 3.3 │ ECDSA sig invalid │ ecdsa_dishonest │ -│ 16 │ Step 3.3 │ ECDSA signer mismatch │ ecdsa_dishonest │ -│ 17 │ Step 3.3 │ Circuit name wrong │ ecdsa_dishonest │ -│ 18 │ Step 3.3 │ All ECDSA fail │ Skip ZK │ -│ 19 │ Step 3.3 │ ZK dispatch fails │ All dishonest │ -│ 20 │ Step 3.4 │ ZK verification fails │ Accusation │ -│ 21 │ Step 3.4 │ Missing from ZK result│ Treated dishonest │ -│ 22 │ Step 3.5 │ honest ≤ threshold_m │ E3Failed │ -│ 23 │ Step 4.1 │ Dimension mismatch │ Party excluded │ -│ 24 │ Step 4.1 │ All excluded by dims │ E3Failed │ -│ 25 │ Step 4.1 │ BFV decryption fails │ Node stuck │ -│ 26 │ Step 4.2 │ C4 proof gen fails │ Missing proofs │ -│ 27 │ Step 4.3 │ C4 collect timeout │ E3Failed │ -│ 28 │ Step 4.3 │ Wrong ESM proof count │ pre_dishonest │ -│ 29 │ Step 4.3 │ C4 ECDSA/ZK fails │ Accusation │ -│ 30 │ Step 4.3 │ honest ≤ threshold │ E3Failed │ -│ 31 │ Step 5.1-5.7 │ C1 ZK fails │ Accusation │ -│ 32 │ Step 5.1-5.7 │ C1 commitment≠keyshare│ Party excluded │ -│ 33 │ Step 5.1-5.7 │ Too few honest for agg│ E3Failed │ -│ 34 │ Step 5.1-5.7 │ C5 proof gen fails │ PK not published │ -│ 35 │ Step 5.1-5.7 │ Cross-node fold fails │ PK not published │ -│ 36 │ Phase 6 │ Not in ReadyForDecrypt│ Event ignored │ -│ 37 │ Phase 6 │ Decrypt share fails │ Node stuck │ -│ 38 │ Phase 6 │ C6 proof gen fails │ Share not sent │ -│ 39 │ Phase 7 │ C4→C6 gate mismatch │ Accusation │ -│ 40 │ Phase 7 │ C6 ECDSA/ZK fails │ Accusation │ -│ 41 │ Phase 7 │ Too few honest decrypt│ Cannot compute │ -│ 42 │ Phase 7 │ C7 proof gen fails │ Not published │ -│ 43 │ Phase 7 │ C6 fold fails │ Not published │ -│ 44 │ Any phase │ On-chain timeout │ markE3Failed() │ -│ 45 │ Any phase │ Member expelled │ Recheck threshold │ -└────┴──────────────────────────┴───────────────────────┴───────────────────┘ -``` diff --git a/fhe.md b/fhe.md deleted file mode 100644 index 6a830f71d4..0000000000 --- a/fhe.md +++ /dev/null @@ -1,932 +0,0 @@ -Fully Homomorphic Encryption — From Zero to Hero - -A complete lecture series covering every concept you need, built from the ground up. - ---- - -Lecture 1: What Problem Are We Solving? - -The Dream - -Imagine you have medical records. You want a cloud server to run analytics on them — but you don't -trust the server. You want to encrypt the data, send the encrypted data to the server, have the -server compute on the encrypted data, and get back an encrypted result that only you can decrypt. - -This is Fully Homomorphic Encryption (FHE). - -You: encrypt(x) ──────► Server: f(encrypt(x)) ──────► You: decrypt(result) = f(x) ↑ Server never -sees x! - -The server computes f on ciphertext and gets the same answer as if it computed f on plaintext. It -never learns what x is. - -Why Is This Hard? - -Normal encryption (like AES) scrambles data so thoroughly that you can't do math on it. FHE needs -encryption that is: - -1. Secure — can't break it -2. Structured — addition and multiplication "pass through" the encryption - -The trick: noise-based encryption. We hide the message behind random noise. But every operation -makes the noise grow. Eventually the noise overwhelms the message and decryption fails. The central -challenge of FHE is managing noise. - ---- - -Lecture 2: Modular Arithmetic & The Torus - -Modular Arithmetic (Clock Math) - -On a 12-hour clock, 10 + 5 = 3 (we wrap around). This is arithmetic modulo 12, written 10 + 5 ≡ 3 -(mod 12). - -More generally, a mod q means "the remainder when dividing a by q". All arithmetic happens in {0, 1, -..., q-1}. - -The Torus T = R/Z - -The Torus is like a clock, but continuous. Take the real number line and wrap it so that every -integer maps to the same point. What remains is just the fractional part of any real number: - -T = R/Z = the set of real numbers modulo 1 - -Examples: 3.7 → 0.7 -0.3 → 0.7 (same point!) 1.0 → 0.0 0.25 → 0.25 - -Think of it as a circle of circumference 1. Addition wraps around naturally: 0.8 + 0.4 = 0.2 (on the -Torus). - -Why the Torus? - -The Torus is the natural home for TFHE (Torus FHE). Messages are encoded as positions on the circle, -and noise is a small random jitter around that position. As long as the jitter is small enough, we -can round back to the correct position. - -Encoding 1 bit: - - 0.0 - | - 0 ──●── 1 0 maps to position 0.0 - | 1 maps to position 0.5 - 0.5 Noise moves us slightly off these points - Decryption: round to nearest {0.0, 0.5} - -Fixed-Point Representation - -Computers can't store real numbers exactly. We approximate Torus elements using fixed-point -integers. With k bits of precision: - -Torus element t ≈ round(t × 2^k) stored as a signed integer - -Example (k = 8 bits): t = 0.25 → 0.25 × 256 = 64 → stored as 64; t = 0.75 → 0.75 × 256 = 192 → stored as 192 - ---- - -Lecture 3: Polynomials & Polynomial Rings - -Polynomials - -A polynomial is just a list of coefficients: - -p(X) = 3 + 2X + 5X² + X³ - -Coefficients: [3, 2, 5, 1] Degree: 3 - -Adding polynomials: add corresponding coefficients. Multiplying polynomials: like multiplying -multi-digit numbers, but with powers of X instead of powers of 10. - -Polynomial Rings: Z[X]/(X^N + 1) - -We work in a special ring where: - -- Coefficients are integers (Z) -- After every operation, we reduce modulo X^N + 1 - -What does "modulo X^N + 1" mean? It means X^N = -1. So any power X^{N+k} wraps around: - -X^N = -1 X^{N+1} = -X X^{N+2} = -X² ...and so on - -This keeps all polynomials at degree < N. With N = 4 as a toy example: - -(1 + X²) × (X + X³) = X + X³ + X³ + X⁵ = X + 2X³ + X⁵ = X + 2X³ + X · X⁴ = X + 2X³ + X · (-1) [since -X⁴ = -1] = 2X³ - -Why This Ring? - -The ring Z[X]/(X^N + 1) (called a cyclotomic ring) has two crucial properties: - -1. Security: The Ring-LWE problem in this ring is believed to be as hard as worst-case lattice - problems. Quantum computers can't efficiently solve it (as far as we know). -2. Efficiency: Polynomial multiplication can be done in O(N log N) using the Number Theoretic - Transform (NTT) — a variant of the Fast Fourier Transform. Without this, multiplication would be - O(N²). - ---- - -Lecture 4: LWE — Learning With Errors - -The LWE Problem - -LWE (Learning With Errors) is the mathematical hardness assumption that makes FHE secure. - -Setup: Fix a secret vector s = (s₁, s₂, ..., sₙ) with small integer entries. - -Encryption of a message m: - -1. Pick a random vector a = (a₁, a₂, ..., aₙ) -2. Compute b = ⟨a, s⟩ + m + e where e is a small random error -3. Ciphertext = (a, b) - -⟨a, s⟩ means the dot product: a₁s₁ + a₂s₂ + ... + aₙsₙ - -Decryption (knowing s): b - ⟨a, s⟩ = m + e ≈ m (round away the small error) - -Security: Without knowing s, the pair (a, b) looks completely random. The error e is what makes this -hard — without it, you could solve a system of linear equations to find s. - -Why Is LWE Hard? - -Given many samples (aᵢ, bᵢ), distinguishing them from truly random pairs is (believed to be) -computationally intractable. This is related to hard problems on lattices — geometric structures in -high-dimensional space. - -Think of it like this: you're given noisy equations and asked to find the secret. The noise makes it -impossible to use Gaussian elimination or any efficient linear algebra technique. - -Noise: The Double-Edged Sword - -- Too little noise: encryption is insecure (solvable by linear algebra) -- Too much noise: decryption fails (can't round to correct message) -- Just right: secure AND decryptable - -Every homomorphic operation increases the noise. This is the fundamental tension of FHE. - ---- - -Lecture 5: Ring-LWE (RLWE) and GLWE - -From Vectors to Polynomials - -LWE works with vectors of integers. Ring-LWE replaces vectors with polynomials in Z[X]/(X^N + 1). -This gives us: - -- Compact ciphertexts: one polynomial of degree N replaces N individual integers -- Fast operations: polynomial multiplication via NTT is O(N log N) -- SIMD-like packing: N message slots in one ciphertext - -GLWE: Generalized (Ring-)LWE - -A GLWE ciphertext with rank k consists of k+1 polynomials: - -ct = (c₀, c₁, c₂, ..., cₖ) - -where: c₁, ..., cₖ are random mask polynomials c₀ = body = -∑(cᵢ · sᵢ) + m + e - - sᵢ are secret key polynomials - m is the plaintext polynomial - e is a small error polynomial - -Decryption: m + e = c₀ + ∑(cᵢ · sᵢ) = c₀ + c₁·s₁ + c₂·s₂ + ... + cₖ·sₖ - -Special cases: - -- rank = 0: trivial encryption (no mask, just ct = (m + e)) -- rank = 1: standard RLWE (most common — one mask polynomial) -- rank > 1: generalized form (more mask polynomials, different noise/security trade-offs) -- N = 1 (degree-0 polynomials = scalars): plain LWE - -The Encryption/Decryption Dance - -Let's trace through a concrete example with rank = 1, N = 4: - -Secret key: s₁(X) = 1 + X - X³ (small coefficients) - -ENCRYPT message m(X) = 5 + 3X²: 1. Sample random mask: c₁(X) = 7 - 2X + X² + 4X³ 2. Sample small -error: e(X) = 0 + 1 - 1 + 0 (tiny!) 3. Compute body: c₀ = -c₁ · s₁ + m + e (polynomial -multiplication mod X⁴+1, then add message and error) 4. Ciphertext: ct = (c₀, c₁) - -DECRYPT (knowing s₁): 1. Compute: c₀ + c₁ · s₁ = m + e 2. Round away e → m = 5 + 3X² ✓ - ---- - -Lecture 6: The Torus Representation in Detail - -Base-2^K Decomposition (Limbs) - -Here's where poulpy gets clever. Instead of storing each Torus coefficient as a single large -integer, poulpy decomposes it into limbs (digits in base 2^K): - -coefficient c = c₀ + c₁·2^{-K} + c₂·2^{-2K} + ... + c\_{d-1}·2^{-(d-1)K} - -Think of this like writing a number in a particular base: Decimal 1234 = 1×10³ + 2×10² + 3×10¹ + -4×10⁰ (base 10, 4 digits) Binary 1011 = 1×2³ + 0×2² + 1×2¹ + 1×2⁰ (base 2, 4 digits) Base-2^K: c₀ + -c₁·2^{-K} + ... (base 2^K, d limbs) - -Parameters: - -- base2k (K) — bits per limb (e.g., K = 17 means each limb holds a 17-bit value) -- size (d) — number of limbs -- Total precision = d × K bits - -The Bivariate View: Z[X, Y] - -Here's the mathematical elegance. If we treat the limb index as a second variable Y = 2^{-K}, then a -GLWE coefficient becomes a bivariate polynomial: - -c(X, Y) = c₀(X) + c₁(X)·Y + c₂(X)·Y² + ... + c\_{d-1}(X)·Y^{d-1} - -where each cⱼ(X) is a polynomial in X of degree < N - -So a single GLWE polynomial is really a 2D array: Limb 0 Limb 1 Limb 2 ... Coeff X⁰: c₀[0] c₁[0] -c₂[0] Coeff X¹: c₀[1] c₁[1] c₂[1] Coeff X²: c₀[2] c₁[2] c₂[2] ... Coeff X^{N-1}: c₀[N-1] c₁[N-1] -c₂[N-1] - -Why Limbs? — Normalization and Rescaling - -Normalization is the process of propagating carries between limbs, just like carrying in decimal -addition: - -Base-10 example: [3, 15, 7] → [3, 5, 8] (carry the 1 from 15) Base-2^K: [c₀, c₁, c₂] where cⱼ might -overflow 2^K → propagate carries → all cⱼ in [-2^{K-1}, 2^{K-1}) - -Rescaling (changing precision) is just bit-shifting — you drop or add limbs. Compare this to -RNS-based systems where rescaling requires expensive basis conversion. This is one of poulpy's key -advantages. - ---- - -Lecture 7: Fast Polynomial Multiplication - -The Bottleneck - -GLWE encryption, decryption, and every homomorphic operation require polynomial multiplication in -Z[X]/(X^N + 1). Naive multiplication is O(N²). With N = 1024 or 2048, this is too slow. - -The FFT/NTT Trick - -The Discrete Fourier Transform converts a polynomial from coefficient representation to evaluation -representation (values at specific points): - -Coefficient domain: p(X) = [a₀, a₁, a₂, ..., a_{N-1}] ↓ Forward FFT/NTT Evaluation domain: [p(ω⁰), -p(ω¹), p(ω²), ..., p(ω^{N-1})] where ω is a primitive root of unity - -The key insight: multiplication of polynomials in coefficient domain becomes pointwise -multiplication in evaluation domain: - -Coefficient: p(X) × q(X) — O(N²) Evaluation: p(ωⁱ) × q(ωⁱ) — O(N) pointwise, each i independently! - -Total: O(N log N) for FFT + O(N) pointwise + O(N log N) for inverse FFT = O(N log N) ≪ O(N²) - -Negacyclic Convolution - -We need multiplication mod (X^N + 1), not just mod X^N. This requires a negacyclic transform — we -use roots of X^{2N} - 1 that satisfy ω^N = -1, which automatically handles the negation when -wrapping around. - -Two Backend Implementations - -FFT64 (Floating-Point): - -- Uses f64 (64-bit doubles) for the transform -- Fast, simple, but introduces small rounding errors -- Works for moderate precision requirements -- ScalarPrep = f64, ScalarBig = i64 - -NTT120 (Exact Integer via CRT): - -- Uses Number Theoretic Transform — FFT but in modular arithmetic (integers mod a prime) -- Works over 4 primes simultaneously: Q = Q₀ × Q₁ × Q₂ × Q₃ ≈ 2^{120} -- Each prime is ~30 bits, so NTT fits in 32-bit arithmetic -- Chinese Remainder Theorem (CRT) reconstructs the full result -- Exact — no floating-point error whatsoever - -NTT120 Pipeline: - -Coefficient (i64) ↓ encode CRT residues: [c mod Q₀, c mod Q₁, c mod Q₂, c mod Q₃] (Q120a format) ↓ -forward NTT (independently on each prime) NTT domain: [ĉ mod Q₀, ĉ mod Q₁, ĉ mod Q₂, ĉ mod Q₃] -(Q120b format) ↓ pointwise multiply ↓ inverse NTT CRT residues of product ↓ CRT reconstruction -(Barrett reduction, no division) Exact result (i128) - -The Three Domains - -Every polynomial lives in one of three representations: - -┌───────────────────┬───────────┬──────────────┬──────────────────────────────────┐ │ Domain │ Type -│ Scalar │ Purpose │ -├───────────────────┼───────────┼──────────────┼──────────────────────────────────┤ │ Coefficient │ -VecZnx │ i64 │ Storage, addition, serialization │ -├───────────────────┼───────────┼──────────────┼──────────────────────────────────┤ │ DFT/NTT │ -VecZnxDft │ f64 or Q120b │ Fast multiplication │ -├───────────────────┼───────────┼──────────────┼──────────────────────────────────┤ │ Big -(accumulator) │ VecZnxBig │ i64 or i128 │ IDFT output before normalization │ -└───────────────────┴───────────┴──────────────┴──────────────────────────────────┘ - -Lifecycle: VecZnx ──[forward DFT]──► VecZnxDft ──[pointwise ops]──► VecZnxDft │ VecZnx -◄──[normalize]── VecZnxBig ◄──[inverse DFT]───────────┘ - ---- - -Lecture 8: SVP, VMP — The Building Blocks - -SVP: Scalar-Vector Product - -What: Multiply one polynomial (scalar) against a vector of polynomials. - -Where it's used: Encryption and decryption — multiplying by the secret key polynomial. - -Setup: scalar s(X) ──[prepare]──► SvpPPol (s in DFT domain, stored once) - -Operation: SvpPPol × VecZnxDft ──[pointwise mul per column]──► VecZnxDft - - Conceptually: [v₁, v₂, ..., vₖ] × s = [v₁·s, v₂·s, ..., vₖ·s] - But done in DFT domain, so each multiplication is O(N) pointwise. - -The "prepare" step (one-time DFT of the scalar) amortizes the cost across many multiplications. - -VMP: Vector-Matrix Product - -What: Multiply a vector of polynomials against a prepared matrix of polynomials. - -Where it's used: Keyswitching and external products — the core FHE operations. - -Setup: Matrix M ──[prepare]──► VmpPMat (each row in DFT domain) - -Operation: VecZnxDft × VmpPMat ──[frequency-domain mat-vec product]──► VecZnxDft - - This is like standard matrix-vector multiplication, - but each "scalar multiply" is a pointwise DFT multiplication, - and each "addition" is pointwise DFT addition. - -Think of it as: the gadget decomposition digits of the input vector are multiplied against the rows -of the keyswitching/GGSW matrix, all in DFT domain for speed. - ---- - -Lecture 9: Gadget Decomposition — Controlling Noise - -The Noise Growth Problem - -When you multiply two ciphertexts naively, the noise squares. After a few multiplications, it -overwhelms the message: - -After 1 multiplication: noise ≈ e² After 2 multiplications: noise ≈ e⁴ After k multiplications: -noise ≈ e^{2^k} - -This grows astronomically fast! - -The Gadget Trick - -Instead of multiplying ciphertexts directly, we use gadget decomposition to keep noise linear. - -Idea: Decompose one operand into small digits, multiply each digit by a pre-encrypted version of the -other operand at the corresponding scale, and sum up. - -Analogy — multiplication by decomposition in decimal: Instead of: 1234 × secret - -Decompose: 1234 = 1×1000 + 2×100 + 3×10 + 4×1 - -Compute: 1 × (secret × 1000) ← pre-computed and encrypted + 2 × (secret × 100) ← pre-computed and -encrypted + 3 × (secret × 10) ← pre-computed and encrypted + 4 × (secret × 1) ← pre-computed and -encrypted - -The crucial point: the multipliers (1, 2, 3, 4) are small (single digits), so they contribute very -little noise. The pre-encrypted scaled versions of secret are computed once during key generation. - -Formal Gadget Decomposition - -Parameters: - -- dnum — number of digits -- dsize — limbs per digit (each limb is base2k bits) -- Digit width = dsize × base2k bits -- Total precision covered = dnum × dsize × base2k bits - -Decomposition of value v with precision k bits: - -v = d₀ · β⁰ + d₁ · β¹ + ... + d\_{dnum-1} · β^{dnum-1} - -where β = 2^{dsize × base2k} (the digit base) and each dᵢ ∈ [-β/2, β/2) (small!) - -Noise analysis: Noise per digit: proportional to dᵢ ≤ β/2 = 2^{dsize·base2k - 1} Total noise: -proportional to dnum × β/2 - -Trade-off: - -- More digits (dnum ↑) → smaller digits (β ↓) → less noise per digit -- But more digits → more additions → more total accumulated noise -- Sweet spot depends on the specific parameters and operation - ---- - -Lecture 10: GGSW and the External Product - -GGSW Ciphertext - -A GGSW ciphertext encrypts a message m in a special matrix form that enables the external product. -It's a dnum × (rank+1) matrix of GLWE ciphertexts: - -GGSW(m) = | GLWE(m · 1 · β⁰) GLWE(m · s₁ · β⁰) ... | ← digit 0 | GLWE(m · 1 · β¹) GLWE(m · s₁ · β¹) -... | ← digit 1 | ... ... ... | | GLWE(m · 1 · β^{d-1}) GLWE(m · s₁ · β^{d-1}) | ← digit d-1 - -Each row encrypts the message m scaled by the gadget power β^i Each column encrypts m multiplied by -a different component (1, s₁, s₂, ...) - -The External Product: GGSW × GLWE - -This is the most important operation in TFHE. It multiplies a GLWE ciphertext by a GGSW-encrypted -message: - -Input: GLWE(a) and GGSW(m) Output: GLWE(a · m) - -Algorithm: - -1. Decompose GLWE(a) into digits: a = d₀ + d₁·β + d₂·β² + ... + d\_{dnum-1}·β^{dnum-1} - -2. Multiply each digit by the corresponding GGSW row: result = Σᵢ dᵢ × GGSW[i] - -3. The gadget powers cancel out: Σᵢ dᵢ × GLWE(m · β^i) = GLWE(m · Σᵢ dᵢ · β^i) = GLWE(m · a) - -Why noise stays small: Each digit dᵢ is small (bounded by β/2), so the noise contribution of each -row is proportional to a small number times the GGSW encryption noise. Much better than multiplying -two full-size ciphertexts! - -Implementation (how poulpy does it): - -1. For each digit dᵢ of the GLWE: dᵢ_dft = FFT(dᵢ) ← coefficient → DFT domain res_dft += VMP(dᵢ_dft, - GGSW_prepared[i]) ← vector-matrix product in DFT domain -2. res_big = IFFT(res_dft) ← DFT → big accumulator -3. result = normalize(res_big) ← big → coefficient domain - ---- - -Lecture 11: Keyswitching - -Why Keyswitching? - -Sometimes we need to convert a ciphertext from one secret key to another. This happens when: - -- Changing the ring dimension (e.g., LWE ↔ GLWE) -- Changing the rank (e.g., rank 2 → rank 1) -- After bootstrapping (which uses a different key internally) - -How It Works - -We need a keyswitching key — a GGLWE that encrypts the old secret key s₀ under the new secret key -s₁: - -KSK = GGLWE\_{s₁}(s₀) - -= for each digit i, for each component j of s₀: GLWE\_{s₁}(s₀[j] · β^i) - -Keyswitching operation: Input: ct = (c₀, c₁, ..., c\_{rank_in}) under s₀ Output: ct' under s₁ - -1. Take the mask components c₁, ..., c\_{rank_in} -2. Decompose them into digits -3. Multiply against the KSK (vector-matrix product): result_dft = VMP(decompose(masks), KSK) -4. Add the body: result = IDFT(result_dft) + c₀ -5. Normalize - -Intuition: The mask components cᵢ were originally multiplied by sᵢ₀ (old key). The KSK encrypts sᵢ₀ -under the new key, so we're effectively re-encrypting the contribution of each mask component. - ---- - -Lecture 12: The CMux Gate - -What Is CMux? - -CMux (Controlled Multiplexer) is the fundamental gate for homomorphic circuits. It selects between -two values based on an encrypted bit: - -CMux(selector, true_val, false_val): if selector = 1: output true_val if selector = 0: output -false_val - -Algebraically: result = (true_val - false_val) · selector + false_val = selector · true_val + (1 - -selector) · false_val - -Implementation with External Product - -- selector is a GGSW ciphertext (encrypting 0 or 1) -- true_val and false_val are GLWE ciphertexts - -1. diff = true_val - false_val ← GLWE subtraction (trivial, no noise growth) -2. product = ExternalProduct(selector, diff) ← GGSW × GLWE -3. result = product + false_val ← GLWE addition (trivial) - -If selector = 1: result = diff · 1 + false_val = true_val If selector = 0: result = diff · 0 + -false_val = false_val - -The beauty: the selector is encrypted. The server doesn't know which value was selected. And the -noise growth is controlled by the gadget decomposition. - ---- - -Lecture 13: Blind Rotation (Programmable Bootstrapping) - -The Noise Problem, Revisited - -Every homomorphic operation adds noise. After enough operations, the noise overwhelms the message -and decryption fails. We need a way to reset the noise while keeping the data encrypted. - -This is bootstrapping — the most expensive but most critical operation in FHE. - -What Blind Rotation Does - -It evaluates an arbitrary function f on an encrypted input, producing a fresh (low-noise) -ciphertext: - -Input: LWE(x) — noisy encryption of x Output: GLWE(f(x)) — fresh encryption of f(x) - -The function f is encoded as a Lookup Table (LUT) polynomial. - -The word "blind" means the rotation happens without knowing x — everything is done on ciphertexts. - -The Algorithm (CGGI Method) - -Step 0 — Encode the LUT: Encode the function f as a polynomial where coefficient j stores f(j): - -LUT(X) = f(0) + f(1)·X + f(2)·X² + ... + f(2N-1)·X^{2N-1} - -To evaluate f(x), we need to rotate this polynomial by x positions so that f(x) appears at -position 0. - -Step 1 — Initial rotation by the body: ACC = X^{-b} · LUT (rotate by b, the LWE body, which is -public in the ciphertext) - -Step 2 — Accumulate mask contributions: For each LWE mask coefficient aᵢ (there are n_lwe of them): - -ACC = ACC + (X^{aᵢ} - 1) · ExternalProduct(BRK[i], ACC) - -where BRK[i] is a Blind Rotation Key — a GGSW encryption of the i-th secret key bit sᵢ. - -What happens here? Let's trace the logic: - -ExternalProduct(BRK[i], ACC) = ACC · sᵢ (homomorphically) - -(X^{aᵢ} - 1) · ACC · sᵢ: - If sᵢ = 1: adds (X^{aᵢ} - 1) · ACC to the accumulator → net effect: ACC -gets rotated by aᵢ (because ACC + (X^{aᵢ} - 1)·ACC = X^{aᵢ}·ACC) - If sᵢ = 0: adds 0 (no change) - -After all n_lwe iterations: ACC has been rotated by: b + Σ(aᵢ · sᵢ) = b + ⟨a,s⟩ = m + e - -Total rotation ≈ m (plus small error from rounding) - -Step 3 — Extract result: Coefficient 0 of the final ACC polynomial contains f(m). - -Why It's Called "Programmable" - -By changing the LUT polynomial, you can compute any function of the encrypted input. Want to compute -AND? Put the AND truth table in the LUT. Want square root? Put square root values in the LUT. This -is incredibly flexible. - -Block-Binary Optimization - -The standard algorithm does one external product per LWE coefficient (n_lwe products). The -block-binary variant batches multiple coefficients together: - -Instead of processing aᵢ one at a time, process block_size coefficients together. - -This works when the secret key has a special structure (binary block distribution: exactly one 1 per -block of coefficients). - -Result: fewer external products → faster bootstrapping. - ---- - -Lecture 14: Circuit Bootstrapping (GLWE → GGSW) - -Why Do We Need This? - -After blind rotation, we get a GLWE ciphertext. But for CMux gates, we need GGSW ciphertexts. -Circuit bootstrapping bridges this gap: - -Input: GLWE(bit) or LWE(bit) Output: GGSW(bit) — ready for use in CMux gates - -The Three-Stage Pipeline - -Stage 1: Blind Rotation Run blind rotation with a special LUT that encodes the GGSW row structure: - -For each GGSW row i: LUT[j] = j × 2^{base2k × (dnum - 1 - i)} - -This produces a GLWE ciphertext whose coefficients encode the scaled message values needed for each -GGSW row. - -Stage 2: Trace (Coefficient Extraction via Automorphisms) - -The GLWE from Stage 1 has the values we need scattered across different coefficients. We need to -isolate them. - -Automorphism σₚ maps X → X^p in the ring. The trace operation applies several automorphisms and -averages the results, which zeros out certain coefficients while preserving others: - -Trace*gap(c) = (1/gap) · Σ*{j=0}^{gap-1} σ\_{1+j·(N/gap)}(c) - -This keeps every gap-th coefficient and zeros out the rest. Using automorphism keys (pre-computed -GGLWE ciphertexts), this is done homomorphically. - -Stage 3: GGLWE-to-GGSW Key-Switch - -The trace output is in GGLWE form. A final keyswitching step (using a tensor key) converts it to the -proper GGSW format: - -GGLWE intermediate → [tensor key-switch] → GGSW(bit) - -End Result - -We now have a GGSW ciphertext with fresh noise, ready to be used as a CMux selector. This is the key -enabler for arbitrary circuits. - ---- - -Lecture 15: BDD Arithmetic — Computing on Encrypted Integers - -The Goal - -We want to perform word-level arithmetic on encrypted integers (u8, u16, u32, u64): - -encrypt(a) + encrypt(b) → encrypt(a + b) encrypt(a) × encrypt(b) → encrypt(a × b) encrypt(a) & -encrypt(b) → encrypt(a & b) ...all without decrypting! - -Binary Decision Diagrams (BDDs) - -A BDD is a compact representation of a Boolean function as a directed acyclic graph. Each internal -node tests one input bit and branches left (0) or right (1): - -Example: f(x₁, x₂) = x₁ AND x₂ - - x₁ - / \ - 0 x₂ - / \ - 0 1 - -Any Boolean function (including addition carry chains, comparisons, etc.) can be represented as a -BDD. Multi-output functions (like 32-bit addition with 32 output bits) are represented as shared -BDDs where different outputs share internal nodes. - -The Three-Phase Pipeline - -Phase 1: Pack & Encrypt - -Each bit of the plaintext integer is encrypted separately, then packed into a single GLWE polynomial -using clever bit interleaving: - -FheUint: 32 bits packed in one GLWE polynomial - -Bit layout (interleaved for efficient byte extraction): bit_index(i) = ((i & 7) << LOG_BYTES) | -(i >> 3) - -This layout enables extracting whole bytes with a single polynomial rotation + trace. - -Phase 2: Prepare (Circuit Bootstrap Each Bit) - -For each of the 32 bits: - -1. Extract the bit as an LWE ciphertext (GLWE-to-LWE keyswitching) -2. Circuit bootstrap it to a GGSW ciphertext -3. Prepare (DFT-transform) the GGSW - -FheUint (packed GLWE) → FheUintPrepared (32 independent GGSWs in DFT domain) - -This is embarrassingly parallel — each bit is independent. Poulpy uses multi-threading here, with -dedicated scratch arenas per thread. - -Phase 3: Evaluate BDD Circuit - -Walk the BDD level by level. At each node: - -- CMux node: result = CMux(input_bit[selector], high_child, low_child) -- Copy node: pass through unchanged -- None: unused slot - -For each BDD level (top to bottom): For each node in level: if Cmux(bit_idx, hi, lo): state[j] = -CMux(bits[bit_idx], state[hi], state[lo]) if Copy: state[j] = state[j] (unchanged) Swap level -buffers - -The final level writes directly into the output GLWE polynomial, producing a fresh FheUint result. - -Supported Operations - -Each operation has a statically compiled BDD (generated at compile time): - -┌───────────────┬───────────────────────────────────────┐ │ Operation │ Description │ -├───────────────┼───────────────────────────────────────┤ │ Add │ 32-bit addition with carry chain │ -├───────────────┼───────────────────────────────────────┤ │ Sub │ 32-bit subtraction │ -├───────────────┼───────────────────────────────────────┤ │ Sll, Srl, Sra │ Shift left/right -(logical/arithmetic) │ ├───────────────┼───────────────────────────────────────┤ │ And, Or, Xor │ -Bitwise operations │ ├───────────────┼───────────────────────────────────────┤ │ Slt, Sltu │ -Signed/unsigned less-than comparison │ └───────────────┴───────────────────────────────────────┘ - -Blind Selection - -An additional primitive: select from 2^k encrypted values based on an encrypted index: - -glwe_blind_selection(index_bits, values[0..2^k]): Uses a tree of CMux gates (log₂ depth) Output: -values[index] — without revealing which index was selected - -This enables oblivious array access — critical for privacy-preserving computation. - ---- - -Lecture 16: Putting It All Together — End-to-End Flow - -The Complete Pipeline - - ┌─────────────────────────────────────┐ - │ KEY GENERATION │ - │ │ - │ Secret Key (s) │ - │ ↓ │ - │ Blind Rotation Keys (BRK) │ - │ = GGSW encryptions of s bits │ - │ ↓ │ - │ Automorphism Keys (ATK) │ - │ = GGLWE for trace operations │ - │ ↓ │ - │ Tensor Switch Key (TSK) │ - │ = for GGLWE→GGSW conversion │ - │ ↓ │ - │ Keyswitching Keys (KSK) │ - │ = for GLWE↔LWE conversion │ - └─────────────────────────────────────┘ - │ - ┌───────────────┴───────────────┐ - ▼ ▼ - ┌──────────────┐ ┌──────────────┐ - │ CLIENT │ │ SERVER │ - │ │ │ │ - │ plaintext │ │ │ - │ = 42 (u32) │ │ │ - │ ↓ │ send ct │ │ - │ encrypt │ ────────────► │ FheUint │ - │ each bit │ send keys │ (packed) │ - │ │ ────────────► │ ↓ │ - │ │ │ prepare │ - │ │ │ (circuit │ - │ │ │ bootstrap │ - │ │ │ each bit) │ - │ │ │ ↓ │ - │ │ │ FheUint- │ - │ │ │ Prepared │ - │ │ │ (32 GGSWs) │ - │ │ │ ↓ │ - │ │ │ evaluate │ - │ │ │ BDD circuit │ - │ │ │ (CMux gates)│ - │ │ │ ↓ │ - │ decrypt ◄──────────────────│ FheUint │ - │ = 84 │ send result │ (result) │ - │ │ │ │ - └───────────┘ └──────────────┘ - -Noise Budget Through the Pipeline - -Operation Noise Level ────────────────────────────────────────────── Fresh encryption █░░░░░░░░░ -(tiny: σ = 3.2) - After GLWE addition █░░░░░░░░░ (adds linearly) - After external product ██░░░░░░░░ (controlled by gadget) - After blind rotation ████░░░░░░ (n_lwe external products) - After circuit bootstrapping ██░░░░░░░░ (REFRESHED! lower noise) - After BDD circuit evaluation ████░░░░░░ (CMux chain) - After another bootstrapping ██░░░░░░░░ (REFRESHED again) - ────────── - Decryption threshold: past here → errors - -The key insight: bootstrapping resets the noise. As long as the noise before bootstrapping stays -below the threshold, computation can continue indefinitely. - ---- - -Lecture 17: Memory & Performance Architecture - -Three-Layer Layout System - -Every ciphertext exists in three forms, optimized for different use cases: - -┌─────────────┐ ┌─────────────┐ ┌─────────────┐ - │ STANDARD │ │ COMPRESSED │ │ PREPARED │ │ │ │ │ │ │ - │ VecZnx │ │ VecZnx + │ │ VecZnxDft │ │ (i64 limbs) │ │ 32-byte │ │ (DFT domain)│ - │ │ │ seed │ │ │ - │ Full size │ │ ~½ size │ │ Backend- │ - │ Portable │ │ Portable │ │ specific │ - │ Serializable│ │ Serializable│ │ Fast ops │ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ - │ │ │ - │ For computation │ For storage │ For multiplication - │ and I/O │ and transfer │ and keyswitching - -Compressed form: the random mask polynomials are replaced by a 32-byte seed. The mask can be -regenerated from the seed using a PRNG. This nearly halves storage - cost. - -Prepared form: polynomials are transformed to DFT/NTT domain. This is the form used during -computation — all multiplications become pointwise and fast. - -Scratch Allocation (Zero Heap Allocation) - -Poulpy never allocates heap memory during cryptographic operations. Instead, it uses arena-style -scratch allocation: - -1. Before computation: allocate one big scratch buffer - let scratch = module.scratch_alloc(required_bytes); - -2. During computation: carve temporary slices from the buffer - let (tmp, remaining_scratch) = scratch.take_slice(size); - // use tmp... - // tmp is automatically "freed" when this operation returns - -3. Reuse the same buffer for the next operation - -Why? Memory allocation is slow and unpredictable. In cryptographic workloads with many repeated -operations (thousands of external products during bootstrapping), avoiding allocation overhead is -critical for performance. - -Backend Abstraction - -The entire architecture is backend-agnostic: - -┌──────────────────────────────────────────────┐ - │ poulpy-schemes │ │ (blind rotation, CMux, BDD) │ - ├──────────────────────────────────────────────┤ │ poulpy-core │ - │ (GLWE, GGSW, external product, keyswitch) │ ├──────────────────────────────────────────────┤ - │ poulpy-hal │ │ (API traits: VecZnxAdd, VmpApply, ...) │ - ├───────────────────┬──────────────────────────┤ - │ poulpy-cpu-ref │ poulpy-cpu-avx │ │ (portable f64 │ (AVX2 + FMA │ - │ or NTT120) │ accelerated) │ - └───────────────────┴──────────────────────────┘ - -Write your FHE scheme code once. Swap the backend by changing a type parameter. Future GPU or FPGA -backends can be added without touching the scheme code. - ---- - -Lecture 18: Exam Review — Key Concepts Cheat Sheet - -┌───────────────────────┬──────────────────────────────────────────────────────────────────────┐ │ -Concept │ One-Line Summary │ - ├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ Torus │ Real numbers mod 1; wrapping arithmetic for FHE │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ Base-2^K limbs │ Decompose Torus elements into small digits for precision control │ - ├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ LWE │ b = ⟨a,s⟩ + m + e; hardness from noise │ - ├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ GLWE │ Polynomial-ring LWE; N message slots per ciphertext │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ GGSW │ Matrix of GLWE encrypting scaled message; enables external product │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ Gadget decomposition │ Break values into small digits to control noise growth │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ External product │ GGSW × GLWE → GLWE; core FHE multiply with controlled noise │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ Keyswitching │ Convert ciphertext from one key to another via GGLWE │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ CMux │ sel ? t : f on encrypted data; uses external product │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ NTT/FFT │ Fast polynomial multiplication in O(N log N) │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ Blind rotation │ Evaluate LUT on encrypted input; refreshes noise │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ Circuit bootstrapping │ GLWE → GGSW conversion via blind rotation + trace │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ BDD arithmetic │ Word-level ops via decision diagrams of CMux gates │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ Normalization │ Carry propagation between base-2^K limbs │ -├───────────────────────┼──────────────────────────────────────────────────────────────────────┤ - │ Three layouts │ Standard (storage) → Compressed (transport) → Prepared (computation) │ -└───────────────────────┴──────────────────────────────────────────────────────────────────────┘ - -Common Exam Questions - -Q: Why does FHE need noise? - A: Without noise, LWE reduces to a system of linear equations, solvable in polynomial time. Noise -makes the problem equivalent to hard lattice problems. - -Q: Why does noise grow during computation? A: Addition increases noise linearly. Multiplication -(external product) multiplies the noise by the decomposed digits. The gadget decomposition keeps -these - digits small, but noise still accumulates. - -Q: How does bootstrapping solve the noise problem? - A: Bootstrapping evaluates the decryption function homomorphically, producing a fresh ciphertext -with low noise. The output encrypts the same message but with reset noise, enabling unlimited -further computation. - -Q: What is the advantage of the bivariate polynomial representation over RNS? - A: (1) Rescaling is a simple bit-shift, not an expensive basis conversion. (2) Digit decomposition -is O(n), not O(n²). (3) Deterministic computation — no floating-point non-determinism. (4) Unified -plaintext space across all operations. - -Q: Why separate FFT64 and NTT120 backends? - A: FFT64 (floating-point) is faster but approximate — fine for moderate precision. NTT120 (integer -CRT) is exact — needed when precision requirements are strict or when deterministic results are -mandatory. - -Q: What makes the external product efficient? - A: Gadget decomposition limits each digit's size, the GGSW pre-stores scaled encryptions at each -gadget level, VMP in DFT domain makes the actual multiplication O(N log N), and scratch allocation -avoids heap overhead. - ---- - -Good luck on the exam! The key to understanding FHE is following the noise: every design decision — -from gadget decomposition to bootstrapping to the bivariate representation — exists to keep noise -under control while enabling computation on encrypted data. diff --git a/logs.txt b/logs.txt deleted file mode 100644 index c8ff0138b1..0000000000 --- a/logs.txt +++ /dev/null @@ -1,2770 +0,0 @@ - -> enclave-example@0.0.0 test:integration /Users/ctrlc03/Documents/zk/enclave/templates/default -> ./scripts/test_integration.sh - -[SERVER] -[SERVER] > enclave-example@0.0.0 dev:server /Users/ctrlc03/Documents/zk/enclave/templates/default -[SERVER] > ./scripts/dev_server.sh -[SERVER] -[CIPHER] -[CIPHER] > enclave-example@0.0.0 dev:ciphernodes /Users/ctrlc03/Documents/zk/enclave/templates/default -[CIPHER] > ./scripts/dev_ciphernodes.sh -[CIPHER] -[PROGRAM] -[PROGRAM] > enclave-example@0.0.0 dev:program /Users/ctrlc03/Documents/zk/enclave/templates/default -[PROGRAM] > ./scripts/dev_program.sh -[PROGRAM] -[SERVER] Waiting for evm node... -[PROGRAM] enclave rev = 90bb5fedd -[PROGRAM] Waiting on ciphernodes to be ready... -[CIPHER] Waiting for local evm node... -[SERVER] Waiting for contracts to be deployed... -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Setting up ZK prover... -[CIPHER] Setting up ZK prover... -[CIPHER] -[CIPHER] target bb version: 3.0.0-nightly.20260102 -[CIPHER] target circuits version: 0.1.15 -[CIPHER] -[CIPHER] ZK prover is already set up and up to date. -[CIPHER] bb version: 3.0.0-nightly.20260102 -[CIPHER] circuits version: 0.1.15 -[CIPHER] Use --force to reinstall. -[CIPHER] 2026-03-31T14:38:31.578582Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] 2026-03-31T14:38:31.583804Z  INFO execute:execute: actix_server::builder: starting 1 workers -[CIPHER] 2026-03-31T14:38:31.583837Z  INFO execute:execute: actix_server::server: Actix runtime found; starting in Actix runtime -[CIPHER] 2026-03-31T14:38:31.583860Z  INFO execute:execute: actix_server::server: starting service: "actix-web-service-127.0.0.1:13415", workers: 1, listening on: 127.0.0.1:13415 -[CIPHER] [cn3] 2026-03-31T14:38:31.588400Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [cn1] 2026-03-31T14:38:31.588405Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] ___ ___ ___ ___ ___ -[CIPHER] [cn1] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [cn1] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [cn1] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [cn1] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [cn1] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [cn1] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [cn1] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [cn1] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [cn1] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] ___ ___ ___ ___ ___ -[CIPHER] [cn3] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [cn3] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [cn3] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [cn3] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [cn3] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [cn3] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [cn3] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn1] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn3] -[CIPHER] [cn3] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [cn3] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [cn3] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [ag] 2026-03-31T14:38:31.589044Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] ___ ___ ___ ___ ___ -[CIPHER] [ag] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [ag] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [ag] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [ag] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [ag] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [ag] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [ag] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [ag] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [ag] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [cn5] 2026-03-31T14:38:31.589101Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [cn5] -[CIPHER] [ag] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [ag] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [cn5] -[CIPHER] [cn5] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [cn5] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [cn5] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [cn5] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [cn5] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [cn5] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [cn5] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [cn5] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn4] 2026-03-31T14:38:31.589164Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] ___ ___ ___ ___ ___ -[CIPHER] [cn4] -[CIPHER] [cn4] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [cn4] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [cn4] -[CIPHER] [cn4] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [cn4] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [cn4] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [cn4] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn2] 2026-03-31T14:38:31.589231Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] ___ ___ ___ ___ ___ -[CIPHER] [cn2] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [cn2] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [cn2] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [cn2] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [cn2] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [cn2] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [cn2] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [cn2] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [cn2] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [cn5] ___ ___ ___ ___ ___ -[CIPHER] [cn5] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [cn4] -[CIPHER] [cn4] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [cn4] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [cn4] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [cn4] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [cn2] -[CIPHER] [cn5] 2026-03-31T14:38:31.644932Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/db" -[CIPHER] [cn4] 2026-03-31T14:38:31.645025Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/db" -[CIPHER] [cn2] 2026-03-31T14:38:31.645026Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/db" -[CIPHER] [cn1] 2026-03-31T14:38:31.648010Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/db" -[CIPHER] [cn2] 2026-03-31T14:38:31.650700Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.0") -[CIPHER] [cn4] 2026-03-31T14:38:31.650701Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.31337") -[CIPHER] [cn2] 2026-03-31T14:38:31.650753Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn2] 2026-03-31T14:38:31.650772Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.0/00000000000000000000.index" -[CIPHER] [cn1] 2026-03-31T14:38:31.650780Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.0") -[CIPHER] [cn1] 2026-03-31T14:38:31.650822Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn1] 2026-03-31T14:38:31.650827Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.0/00000000000000000000.index" -[CIPHER] [cn5] 2026-03-31T14:38:31.650783Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.31337") -[CIPHER] [cn5] 2026-03-31T14:38:31.650830Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn5] 2026-03-31T14:38:31.650870Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.31337/00000000000000000000.index" -[CIPHER] [cn4] 2026-03-31T14:38:31.650810Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn4] 2026-03-31T14:38:31.650817Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.31337/00000000000000000000.index" -[CIPHER] [cn3] 2026-03-31T14:38:31.650985Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/db" -[CIPHER] [ag] 2026-03-31T14:38:31.652105Z  INFO execute: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/db" -[CIPHER] [cn3] 2026-03-31T14:38:31.652524Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.0") -[CIPHER] [cn3] 2026-03-31T14:38:31.652684Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn3] 2026-03-31T14:38:31.652696Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.0/00000000000000000000.index" -[CIPHER] [ag] 2026-03-31T14:38:31.655283Z  INFO execute: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.0") -[CIPHER] [cn2] 2026-03-31T14:38:31.655366Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.31337") -[CIPHER] [cn2] 2026-03-31T14:38:31.655550Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn2] 2026-03-31T14:38:31.655556Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.31337/00000000000000000000.index" -[CIPHER] [ag] 2026-03-31T14:38:31.655565Z  INFO execute: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [ag] 2026-03-31T14:38:31.655579Z  INFO execute: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.0/00000000000000000000.index" -[CIPHER] [cn4] 2026-03-31T14:38:31.655697Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.0") -[CIPHER] [cn1] 2026-03-31T14:38:31.655741Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.31337") -[CIPHER] [cn1] 2026-03-31T14:38:31.655786Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn1] 2026-03-31T14:38:31.655789Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.31337/00000000000000000000.index" -[CIPHER] [cn4] 2026-03-31T14:38:31.655749Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn4] 2026-03-31T14:38:31.655752Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.0/00000000000000000000.index" -[CIPHER] [cn3] 2026-03-31T14:38:31.655919Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.31337") -[CIPHER] [cn3] 2026-03-31T14:38:31.655955Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn3] 2026-03-31T14:38:31.655958Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.31337/00000000000000000000.index" -[CIPHER] [cn4] 2026-03-31T14:38:31.656079Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [cn2] from_sled_store_with_buffer... -[CIPHER] [cn4] 2026-03-31T14:38:31.656094Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/db" -[CIPHER] [cn1] 2026-03-31T14:38:31.656126Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [cn2] 2026-03-31T14:38:31.656002Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/db" -[CIPHER] [cn4] from_sled_store_with_buffer... -[CIPHER] [cn1] 2026-03-31T14:38:31.656157Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/db" -[CIPHER] [cn5] 2026-03-31T14:38:31.656172Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.0") -[CIPHER] [cn1] from_sled_store_with_buffer... -[CIPHER] [cn2] 2026-03-31T14:38:31.655974Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [ag] 2026-03-31T14:38:31.656303Z  INFO execute: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [ag] 2026-03-31T14:38:31.656266Z  INFO execute: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.31337") -[CIPHER] [ag] 2026-03-31T14:38:31.656306Z  INFO execute: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.31337/00000000000000000000.index" -[CIPHER] [cn5] 2026-03-31T14:38:31.656292Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn5] 2026-03-31T14:38:31.656299Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.0/00000000000000000000.index" -[CIPHER] [cn2] 2026-03-31T14:38:31.656345Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [cn4] 2026-03-31T14:38:31.656358Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [cn1] 2026-03-31T14:38:31.656446Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [cn3] 2026-03-31T14:38:31.656469Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [cn5] 2026-03-31T14:38:31.656558Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [cn3] from_sled_store_with_buffer... -[CIPHER] [cn5] 2026-03-31T14:38:31.656684Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/db" -[CIPHER] [cn3] 2026-03-31T14:38:31.656481Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/db" -[CIPHER] [cn5] from_sled_store_with_buffer... -[CIPHER] [cn3] 2026-03-31T14:38:31.656790Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [cn4] 2026-03-31T14:38:31.656878Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [cn5] 2026-03-31T14:38:31.656927Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [cn2] 2026-03-31T14:38:31.656931Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [cn1] 2026-03-31T14:38:31.656993Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [cn5] 2026-03-31T14:38:31.657194Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [cn3] 2026-03-31T14:38:31.657218Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [cn4] 2026-03-31T14:38:31.663377Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [cn4] 2026-03-31T14:38:31.663401Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [cn3] 2026-03-31T14:38:31.663377Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [cn3] 2026-03-31T14:38:31.663405Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [cn3] 2026-03-31T14:38:31.663596Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [cn1] 2026-03-31T14:38:31.663429Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [cn1] 2026-03-31T14:38:31.663440Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [cn1] 2026-03-31T14:38:31.663666Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [cn2] 2026-03-31T14:38:31.663518Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [cn2] 2026-03-31T14:38:31.663547Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [cn2] 2026-03-31T14:38:31.663684Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [cn4] 2026-03-31T14:38:31.663581Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [cn5] 2026-03-31T14:38:31.663640Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [cn5] 2026-03-31T14:38:31.663663Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [cn5] 2026-03-31T14:38:31.663714Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [cn3] 2026-03-31T14:38:31.663781Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [cn4] 2026-03-31T14:38:31.663813Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [cn1] 2026-03-31T14:38:31.663860Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [cn5] 2026-03-31T14:38:31.663871Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [cn2] 2026-03-31T14:38:31.664144Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [ag] 2026-03-31T14:38:31.674985Z  INFO execute: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [ag] 2026-03-31T14:38:31.675036Z  INFO execute: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/db" -[CIPHER] [ag] from_sled_store_with_buffer... -[CIPHER] [ag] 2026-03-31T14:38:31.675499Z  INFO execute: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [ag] 2026-03-31T14:38:31.675728Z  INFO execute:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [ag] 2026-03-31T14:38:31.680145Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [ag] 2026-03-31T14:38:31.680160Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Attaching CommitteeFinalizer for score sortition -[CIPHER] [ag] 2026-03-31T14:38:31.680331Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [ag] 2026-03-31T14:38:31.680387Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up FheExtension -[CIPHER] [ag] 2026-03-31T14:38:31.680433Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up PublicKeyAggregationExtension -[CIPHER] [ag] 2026-03-31T14:38:31.680436Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [ag] 2026-03-31T14:38:31.680593Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [ag] 2026-03-31T14:38:31.680632Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors for aggregator -[CIPHER] [ag] 2026-03-31T14:38:31.680876Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdPlaintextAggregatorExtension -[CIPHER] [ag] 2026-03-31T14:38:31.680883Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [ag] 2026-03-31T14:38:31.680887Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [ag] 2026-03-31T14:38:31.680890Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [ag] 2026-03-31T14:38:31.681216Z  INFO execute: e3_net: Found keypair in repository -[CIPHER] [ag] 2026-03-31T14:38:31.683919Z  INFO execute: libp2p_swarm: local_peer_id=12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By -[CIPHER] [ag] 2026-03-31T14:38:31.684059Z  INFO execute: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [ag] 2026-03-31T14:38:31.684721Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [ag] 2026-03-31T14:38:31.684728Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [ag] 2026-03-31T14:38:31.684746Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [ag] 2026-03-31T14:38:31.684748Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [ag] 2026-03-31T14:38:31.684749Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [ag] 2026-03-31T14:38:31.684750Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [ag] 2026-03-31T14:38:31.685261Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [ag] 2026-03-31T14:38:31.685309Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [ag] 2026-03-31T14:38:31.685313Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [ag] 2026-03-31T14:38:31.685316Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [ag] 2026-03-31T14:38:31.685318Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [ag] 2026-03-31T14:38:31.685333Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [ag] 2026-03-31T14:38:31.685414Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [ag] 2026-03-31T14:38:31.685421Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [ag] 2026-03-31T14:38:31.685425Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [ag] 2026-03-31T14:38:31.685433Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [ag] 2026-03-31T14:38:31.686669Z  INFO execute: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [ag] 2026-03-31T14:38:31.686679Z  INFO execute: e3_sync::sync: Loading EventStore events... -[CIPHER] [ag] 2026-03-31T14:38:31.686716Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending -[CIPHER] [ag] 2026-03-31T14:38:31.686720Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending -[CIPHER] [ag] 2026-03-31T14:38:31.686721Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [ag] 2026-03-31T14:38:31.686753Z  INFO execute: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [ag] 2026-03-31T14:38:31.686756Z  INFO execute: e3_sync::sync: Replaying events to actors... -[CIPHER] [ag] 2026-03-31T14:38:31.686760Z  INFO execute: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [ag] 2026-03-31T14:38:31.686759Z  INFO execute: e3_sync::sync: Events replayed. -[CIPHER] [ag] 2026-03-31T14:38:31.688680Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x12dcf67df19a566d4775f5232aeff5834e6269f96c56cd51b107665e65c2e630), causation_id: EventId(0x12dcf67df19a566d4775f5232aeff5834e6269f96c56cd51b107665e65c2e630), origin_id: EventId(0x12dcf67df19a566d4775f5232aeff5834e6269f96c56cd51b107665e65c2e630), seq: 1, ts: 32742378805932451046379334612169053, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:38:31.690200Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [ag] 2026-03-31T14:38:31.690216Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [ag] 2026-03-31T14:38:31.690324Z  INFO execute: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [ag] 2026-03-31T14:38:31.690333Z  INFO execute: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [ag] 2026-03-31T14:38:31.690337Z  INFO execute: e3_sync::sync: Waiting until NetReady... -[CIPHER] [ag] 2026-03-31T14:38:31.693243Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn3] 2026-03-31T14:38:31.696314Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -[CIPHER] [cn3] 2026-03-31T14:38:31.696336Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -[CIPHER] [cn3] 2026-03-31T14:38:31.696368Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [cn3] 2026-03-31T14:38:31.696371Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [cn3] 2026-03-31T14:38:31.696373Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [cn3] 2026-03-31T14:38:31.696423Z  INFO execute:app: e3_net: Found keypair in repository -[CIPHER] [cn3] 2026-03-31T14:38:31.696943Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd -[CIPHER] [cn3] 2026-03-31T14:38:31.697008Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [cn3] 2026-03-31T14:38:31.697221Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [cn3] 2026-03-31T14:38:31.697223Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn3] 2026-03-31T14:38:31.697225Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn3] 2026-03-31T14:38:31.697226Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn3] 2026-03-31T14:38:31.697227Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn3] 2026-03-31T14:38:31.697227Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn3] 2026-03-31T14:38:31.697294Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn3] 2026-03-31T14:38:31.697304Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn3] 2026-03-31T14:38:31.697305Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn3] 2026-03-31T14:38:31.697307Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn3] 2026-03-31T14:38:31.697308Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn3] 2026-03-31T14:38:31.697313Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-03-31T14:38:31.697328Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-03-31T14:38:31.697333Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-03-31T14:38:31.697337Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-03-31T14:38:31.697331Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-03-31T14:38:31.697691Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [cn3] 2026-03-31T14:38:31.697697Z  INFO execute:app: e3_sync::sync: Loading EventStore events... -[CIPHER] [cn3] 2026-03-31T14:38:31.697717Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending -[CIPHER] [cn3] 2026-03-31T14:38:31.697719Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending -[CIPHER] [cn3] 2026-03-31T14:38:31.697721Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [cn3] 2026-03-31T14:38:31.697732Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [cn3] 2026-03-31T14:38:31.697734Z  INFO execute:app: e3_sync::sync: Replaying events to actors... -[CIPHER] [cn3] 2026-03-31T14:38:31.697735Z  INFO execute:app: e3_sync::sync: Events replayed. -[CIPHER] [cn3] 2026-03-31T14:38:31.697736Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [cn5] 2026-03-31T14:38:31.697684Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -[CIPHER] [cn5] 2026-03-31T14:38:31.697702Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -[CIPHER] [cn5] 2026-03-31T14:38:31.697763Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [cn5] 2026-03-31T14:38:31.697767Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [cn5] 2026-03-31T14:38:31.697770Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [cn1] 2026-03-31T14:38:31.697695Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -[CIPHER] [cn1] 2026-03-31T14:38:31.697703Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -[CIPHER] [cn1] 2026-03-31T14:38:31.697739Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [cn1] 2026-03-31T14:38:31.697741Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [cn1] 2026-03-31T14:38:31.697743Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [cn1] 2026-03-31T14:38:31.697786Z  INFO execute:app: e3_net: Found keypair in repository -[CIPHER] [cn5] 2026-03-31T14:38:31.697896Z  INFO execute:app: e3_net: Found keypair in repository -[CIPHER] [cn4] 2026-03-31T14:38:31.698397Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -[CIPHER] [cn4] 2026-03-31T14:38:31.698413Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -[CIPHER] [cn1] 2026-03-31T14:38:31.698472Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 -[CIPHER] [cn4] 2026-03-31T14:38:31.698485Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [cn4] 2026-03-31T14:38:31.698491Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [cn4] 2026-03-31T14:38:31.698494Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [cn1] 2026-03-31T14:38:31.698524Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [cn4] 2026-03-31T14:38:31.698560Z  INFO execute:app: e3_net: Found keypair in repository -[CIPHER] [cn5] 2026-03-31T14:38:31.698563Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 -[CIPHER] [cn5] 2026-03-31T14:38:31.698611Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [cn2] 2026-03-31T14:38:31.698608Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -[CIPHER] [cn2] 2026-03-31T14:38:31.698622Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -[CIPHER] [cn2] 2026-03-31T14:38:31.698700Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [cn2] 2026-03-31T14:38:31.698709Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [cn2] 2026-03-31T14:38:31.698713Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [cn1] 2026-03-31T14:38:31.698704Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [cn1] 2026-03-31T14:38:31.698708Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698712Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698711Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698772Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698780Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698782Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698797Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn1] 2026-03-31T14:38:31.698800Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn1] 2026-03-31T14:38:31.698806Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-03-31T14:38:31.698683Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xe8dabff44837ac971c548bab3c02a30d4009c256da74ab04a64fd37ea167282d), causation_id: EventId(0xe8dabff44837ac971c548bab3c02a30d4009c256da74ab04a64fd37ea167282d), origin_id: EventId(0xe8dabff44837ac971c548bab3c02a30d4009c256da74ab04a64fd37ea167282d), seq: 1, ts: 32742378806134885615844226005960545, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:38:31.698976Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.698977Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.698978Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.698980Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698710Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698713Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698778Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698781Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn1] 2026-03-31T14:38:31.698787Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn1] 2026-03-31T14:38:31.698803Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn2] 2026-03-31T14:38:31.698795Z  INFO execute:app: e3_net: Found keypair in repository -[CIPHER] [cn5] 2026-03-31T14:38:31.698971Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [cn5] 2026-03-31T14:38:31.698974Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.699049Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.699057Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.699059Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.699060Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.699061Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.699068Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn5] 2026-03-31T14:38:31.699077Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn5] 2026-03-31T14:38:31.699081Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn5] 2026-03-31T14:38:31.699083Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn5] 2026-03-31T14:38:31.699086Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn1] 2026-03-31T14:38:31.699108Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [cn1] 2026-03-31T14:38:31.699111Z  INFO execute:app: e3_sync::sync: Loading EventStore events... -[CIPHER] [cn1] 2026-03-31T14:38:31.699149Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 1 pending -[CIPHER] [cn1] 2026-03-31T14:38:31.699151Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -[CIPHER] [cn1] 2026-03-31T14:38:31.699152Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [cn1] 2026-03-31T14:38:31.699176Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [cn1] 2026-03-31T14:38:31.699178Z  INFO execute:app: e3_sync::sync: Replaying events to actors... -[CIPHER] [cn1] 2026-03-31T14:38:31.699179Z  INFO execute:app: e3_sync::sync: Events replayed. -[CIPHER] [cn1] 2026-03-31T14:38:31.699180Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [cn2] 2026-03-31T14:38:31.699335Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr -[CIPHER] [cn2] 2026-03-31T14:38:31.699378Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [cn4] 2026-03-31T14:38:31.699390Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH -[CIPHER] [cn4] 2026-03-31T14:38:31.699449Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [cn2] 2026-03-31T14:38:31.699550Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [cn2] 2026-03-31T14:38:31.699553Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn2] 2026-03-31T14:38:31.699560Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn2] 2026-03-31T14:38:31.699561Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn2] 2026-03-31T14:38:31.699562Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn2] 2026-03-31T14:38:31.699562Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.699610Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [cn5] 2026-03-31T14:38:31.699613Z  INFO execute:app: e3_sync::sync: Loading EventStore events... -[CIPHER] [cn5] 2026-03-31T14:38:31.699632Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending -[CIPHER] [cn5] 2026-03-31T14:38:31.699633Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending -[CIPHER] [cn5] 2026-03-31T14:38:31.699634Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [cn4] 2026-03-31T14:38:31.699629Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [cn4] 2026-03-31T14:38:31.699632Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn4] 2026-03-31T14:38:31.699634Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn4] 2026-03-31T14:38:31.699635Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn4] 2026-03-31T14:38:31.699636Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn4] 2026-03-31T14:38:31.699637Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn5] 2026-03-31T14:38:31.699641Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [cn5] 2026-03-31T14:38:31.699643Z  INFO execute:app: e3_sync::sync: Replaying events to actors... -[CIPHER] [cn5] 2026-03-31T14:38:31.699644Z  INFO execute:app: e3_sync::sync: Events replayed. -[CIPHER] [cn5] 2026-03-31T14:38:31.699646Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [cn2] 2026-03-31T14:38:31.699742Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn2] 2026-03-31T14:38:31.699750Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn2] 2026-03-31T14:38:31.699752Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn2] 2026-03-31T14:38:31.699753Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn2] 2026-03-31T14:38:31.699754Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn2] 2026-03-31T14:38:31.699760Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-03-31T14:38:31.699777Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn4] 2026-03-31T14:38:31.699834Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn4] 2026-03-31T14:38:31.699836Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn4] 2026-03-31T14:38:31.699837Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn4] 2026-03-31T14:38:31.699838Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn4] 2026-03-31T14:38:31.699843Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn2] 2026-03-31T14:38:31.699845Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn2] 2026-03-31T14:38:31.699855Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn2] 2026-03-31T14:38:31.699859Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn2] 2026-03-31T14:38:31.699863Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-03-31T14:38:31.699885Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-03-31T14:38:31.699892Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-03-31T14:38:31.699894Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-03-31T14:38:31.699896Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-03-31T14:38:31.699977Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 1) -[CIPHER] [cn4] 2026-03-31T14:38:31.700401Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [cn4] 2026-03-31T14:38:31.700417Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending -[CIPHER] [cn4] 2026-03-31T14:38:31.700419Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending -[CIPHER] [cn4] 2026-03-31T14:38:31.700405Z  INFO execute:app: e3_sync::sync: Loading EventStore events... -[CIPHER] [cn4] 2026-03-31T14:38:31.700420Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [cn4] 2026-03-31T14:38:31.700428Z  INFO execute:app: e3_sync::sync: Replaying events to actors... -[CIPHER] [cn4] 2026-03-31T14:38:31.700431Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [cn4] 2026-03-31T14:38:31.700427Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [ag] 2026-03-31T14:38:31.700441Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 1) -[CIPHER] [cn4] 2026-03-31T14:38:31.700429Z  INFO execute:app: e3_sync::sync: Events replayed. -[CIPHER] [cn3] 2026-03-31T14:38:31.700495Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn3] 2026-03-31T14:38:31.700504Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [cn3] 2026-03-31T14:38:31.700512Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [cn3] 2026-03-31T14:38:31.700628Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [cn3] 2026-03-31T14:38:31.700635Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... -[CIPHER] [cn3] 2026-03-31T14:38:31.700633Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [cn2] 2026-03-31T14:38:31.700856Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 1) -[CIPHER] [ag] 2026-03-31T14:38:31.700894Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn2] 2026-03-31T14:38:31.700909Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [cn2] 2026-03-31T14:38:31.700911Z  INFO execute:app: e3_sync::sync: Loading EventStore events... -[CIPHER] [cn2] 2026-03-31T14:38:31.700916Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn2] 2026-03-31T14:38:31.700924Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending -[CIPHER] [cn2] 2026-03-31T14:38:31.700926Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending -[CIPHER] [cn2] 2026-03-31T14:38:31.700927Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [cn3] 2026-03-31T14:38:31.701041Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn3] 2026-03-31T14:38:31.701558Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2) -[CIPHER] [cn2] 2026-03-31T14:38:31.701661Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [cn2] 2026-03-31T14:38:31.701664Z  INFO execute:app: e3_sync::sync: Replaying events to actors... -[CIPHER] [cn2] 2026-03-31T14:38:31.701666Z  INFO execute:app: e3_sync::sync: Events replayed. -[CIPHER] [cn2] 2026-03-31T14:38:31.701667Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [cn2] 2026-03-31T14:38:31.701692Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 2) -[CIPHER] [cn2] 2026-03-31T14:38:31.701712Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 3) -[CIPHER] [ag] 2026-03-31T14:38:31.701911Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2) -[CIPHER] [cn2] 2026-03-31T14:38:31.703737Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x65dfb533a11f894b7bfbb44f5239934459790bbe4a6eb490f48ada95c63b77d9), causation_id: EventId(0x65dfb533a11f894b7bfbb44f5239934459790bbe4a6eb490f48ada95c63b77d9), origin_id: EventId(0x65dfb533a11f894b7bfbb44f5239934459790bbe4a6eb490f48ada95c63b77d9), seq: 1, ts: 32742378806207399766797978445043941, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-03-31T14:38:31.703739Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x044b395665d9fa36a21ee215c6ab660a99ccd241606ea1448e06ed4e1c522bc9), causation_id: EventId(0x044b395665d9fa36a21ee215c6ab660a99ccd241606ea1448e06ed4e1c522bc9), origin_id: EventId(0x044b395665d9fa36a21ee215c6ab660a99ccd241606ea1448e06ed4e1c522bc9), seq: 1, ts: 32742378806161522714286661181798716, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:38:31.703805Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xe067701efbfdd9b3e621da30c14ca84bc28a8fe5c6c2092eb5248c682cf8de87), causation_id: EventId(0xe067701efbfdd9b3e621da30c14ca84bc28a8fe5c6c2092eb5248c682cf8de87), origin_id: EventId(0xe067701efbfdd9b3e621da30c14ca84bc28a8fe5c6c2092eb5248c682cf8de87), seq: 1, ts: 32742378806184581144378800481115905, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:38:31.703847Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 5 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xad41790703603750cc9a89e740b776570c8c2b05a58c4b4a4e532ff4c7d1f3bf), causation_id: EventId(0xad41790703603750cc9a89e740b776570c8c2b05a58c4b4a4e532ff4c7d1f3bf), origin_id: EventId(0xad41790703603750cc9a89e740b776570c8c2b05a58c4b4a4e532ff4c7d1f3bf), seq: 1, ts: 32742378806170100450280938511990853, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-03-31T14:38:31.704329Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [cn2] 2026-03-31T14:38:31.704336Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [cn2] 2026-03-31T14:38:31.704809Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [cn2] 2026-03-31T14:38:31.704816Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [cn2] 2026-03-31T14:38:31.704819Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... -[CIPHER] [ag] 2026-03-31T14:38:31.705052Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 3) -[CIPHER] [cn3] 2026-03-31T14:38:31.705382Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 3) -[CIPHER] [cn3] 2026-03-31T14:38:31.705842Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 4) -[CIPHER] [cn2] 2026-03-31T14:38:31.705554Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn4] 2026-03-31T14:38:31.705966Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 1) -[CIPHER] [cn4] 2026-03-31T14:38:31.705999Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 2) -[CIPHER] [cn4] 2026-03-31T14:38:31.706016Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 3) -[CIPHER] [cn4] 2026-03-31T14:38:31.706142Z  INFO e3_net::net_interface: Peer disconnected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2, cause: Some(KeepAliveTimeout)) -[CIPHER] [cn4] 2026-03-31T14:38:31.706150Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn4] 2026-03-31T14:38:31.706155Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [cn4] 2026-03-31T14:38:31.706163Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [cn4] 2026-03-31T14:38:31.706338Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [cn4] 2026-03-31T14:38:31.706353Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [cn4] 2026-03-31T14:38:31.706357Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... -[CIPHER] [cn3] 2026-03-31T14:38:31.706205Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 5) -[CIPHER] [cn1] 2026-03-31T14:38:31.706274Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 1) -[CIPHER] [cn1] 2026-03-31T14:38:31.706301Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 2) -[CIPHER] [cn1] 2026-03-31T14:38:31.706320Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 3) -[CIPHER] [cn5] 2026-03-31T14:38:31.706456Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 1) -[CIPHER] [cn5] 2026-03-31T14:38:31.706482Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 2) -[CIPHER] [cn5] 2026-03-31T14:38:31.706500Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 3) -[CIPHER] [cn2] 2026-03-31T14:38:31.706544Z  INFO e3_net::net_interface: Peer disconnected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 2, cause: Some(IO(Custom { kind: Other, error: Connection(ConnectionError(ApplicationClosed(ApplicationClose { error_code: 0, reason: b"" }))) }))) -[CIPHER] [cn1] 2026-03-31T14:38:31.706917Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn1] 2026-03-31T14:38:31.706933Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [cn1] 2026-03-31T14:38:31.706923Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [cn1] 2026-03-31T14:38:31.706985Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [cn1] 2026-03-31T14:38:31.706991Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [cn1] 2026-03-31T14:38:31.706993Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... -[CIPHER] [cn5] 2026-03-31T14:38:31.707056Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn5] 2026-03-31T14:38:31.707073Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [cn5] 2026-03-31T14:38:31.707096Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [cn1] 2026-03-31T14:38:31.707558Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 4) -[CIPHER] [cn2] 2026-03-31T14:38:31.707605Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 3) -[CIPHER] [cn4] 2026-03-31T14:38:31.707633Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 3) -[CIPHER] [cn2] 2026-03-31T14:38:31.707646Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 4) -[CIPHER] [cn2] 2026-03-31T14:38:31.707756Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [cn2] 2026-03-31T14:38:31.707759Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [cn2] 2026-03-31T14:38:31.707873Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378806319758884950943323936997, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:38:31.708018Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 4) -[CIPHER] [cn2] 2026-03-31T14:38:31.708047Z  INFO execute:app: e3_sync::sync: NetReady! -[CIPHER] [ag] 2026-03-31T14:38:31.708064Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 5) -[CIPHER] [cn2] 2026-03-31T14:38:31.708051Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [cn2] 2026-03-31T14:38:31.708120Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378806325219121196761351215333, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-03-31T14:38:31.708145Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [cn2] 2026-03-31T14:38:31.708157Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [cn2] 2026-03-31T14:38:31.708160Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [cn2] 2026-03-31T14:38:31.708161Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [cn2] 2026-03-31T14:38:31.708164Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [cn2] 2026-03-31T14:38:31.708183Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [cn2] 2026-03-31T14:38:31.708243Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378806327838558855228107544805, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn2] 2026-03-31T14:38:31.708270Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [cn2] 2026-03-31T14:38:31.708272Z  INFO execute:app: e3_sync::sync: Historical events sorted. -[CIPHER] [cn2] 2026-03-31T14:38:31.708274Z  INFO execute:app: e3_sync::sync: Effects enabled -[CIPHER] [cn2] 2026-03-31T14:38:31.708276Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [cn2] 2026-03-31T14:38:31.708277Z  INFO execute:app: e3_sync::sync: Historical events published. -[CIPHER] [cn2] 2026-03-31T14:38:31.708279Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [cn2] 2026-03-31T14:38:31.708281Z  INFO execute:app: e3_sync::sync: Sync finished. -[CIPHER] [cn2] 2026-03-31T14:38:31.708292Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn2/0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC/12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr) -[CIPHER] [cn2] 2026-03-31T14:38:31.708330Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378806329222064660756323916005, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-03-31T14:38:31.708345Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378806329332745125198581225701, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-03-31T14:38:31.708386Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [cn2] 2026-03-31T14:38:31.708441Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] [cn4] 2026-03-31T14:38:31.708552Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 4) -[CIPHER] [cn1] 2026-03-31T14:38:31.708579Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 5) -[CIPHER] [cn4] 2026-03-31T14:38:31.708696Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn4] 2026-03-31T14:38:31.708702Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [cn4] 2026-03-31T14:38:31.708703Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [cn4] 2026-03-31T14:38:31.708729Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378806337154164612452182531841, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:38:31.708902Z  INFO execute:app: e3_sync::sync: NetReady! -[CIPHER] [cn4] 2026-03-31T14:38:31.708905Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [cn4] 2026-03-31T14:38:31.708948Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378806340917300403488931061505, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:38:31.708966Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [cn4] 2026-03-31T14:38:31.708973Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [cn4] 2026-03-31T14:38:31.708975Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [cn4] 2026-03-31T14:38:31.708976Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [cn4] 2026-03-31T14:38:31.708977Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [cn4] 2026-03-31T14:38:31.708981Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [cn4] 2026-03-31T14:38:31.709000Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378806342337699697164566535937, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn1] 2026-03-31T14:38:31.709089Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn4] 2026-03-31T14:38:31.709105Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [cn4] 2026-03-31T14:38:31.709107Z  INFO execute:app: e3_sync::sync: Historical events sorted. -[CIPHER] [cn4] 2026-03-31T14:38:31.709192Z  INFO execute:app: e3_sync::sync: Effects enabled -[CIPHER] [cn4] 2026-03-31T14:38:31.709224Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [cn4] 2026-03-31T14:38:31.709225Z  INFO execute:app: e3_sync::sync: Historical events published. -[CIPHER] [cn4] 2026-03-31T14:38:31.709226Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [cn4] 2026-03-31T14:38:31.709229Z  INFO execute:app: e3_sync::sync: Sync finished. -[CIPHER] [cn4] 2026-03-31T14:38:31.709266Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn4/0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65/12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH) -[CIPHER] [cn4] 2026-03-31T14:38:31.709428Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378806345971708279685348204289, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:38:31.709445Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378806346820258507075987578625, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:38:31.709498Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [cn4] 2026-03-31T14:38:31.709510Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] [cn5] 2026-03-31T14:38:31.709687Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [cn5] 2026-03-31T14:38:31.709694Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [cn5] 2026-03-31T14:38:31.709697Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... -[CIPHER] [cn5] 2026-03-31T14:38:31.709777Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 4) -[CIPHER] [cn5] 2026-03-31T14:38:31.709806Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 5) -[CIPHER] [cn5] 2026-03-31T14:38:31.710762Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn2] 2026-03-31T14:38:31.711381Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 5) -[CIPHER] [cn4] 2026-03-31T14:38:31.711722Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 5) -[CIPHER] [ag] 2026-03-31T14:38:32.695566Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [ag] 2026-03-31T14:38:32.695591Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [ag] 2026-03-31T14:38:32.695800Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378824542061423515667859386717, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:38:32.696274Z  INFO execute: e3_sync::sync: NetReady! -[CIPHER] [ag] 2026-03-31T14:38:32.696284Z  INFO execute: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [ag] 2026-03-31T14:38:32.696453Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378824554918804135043416863069, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:38:32.696499Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [ag] 2026-03-31T14:38:32.696527Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [ag] 2026-03-31T14:38:32.696530Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [ag] 2026-03-31T14:38:32.696532Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [ag] 2026-03-31T14:38:32.696535Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [ag] 2026-03-31T14:38:32.696548Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [ag] 2026-03-31T14:38:32.696635Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378824559751851082355319386461, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:38:32.696736Z  INFO execute: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [ag] 2026-03-31T14:38:32.696743Z  INFO execute: e3_sync::sync: Historical events sorted. -[CIPHER] [ag] 2026-03-31T14:38:32.696749Z  INFO execute: e3_sync::sync: Effects enabled -[CIPHER] [ag] 2026-03-31T14:38:32.696751Z  INFO execute: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [ag] 2026-03-31T14:38:32.696753Z  INFO execute: e3_sync::sync: Historical events published. -[CIPHER] [ag] 2026-03-31T14:38:32.696755Z  INFO execute: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [ag] 2026-03-31T14:38:32.696758Z  INFO execute: e3_sync::sync: Sync finished. -[CIPHER] [ag] 2026-03-31T14:38:32.696786Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (ag/0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266/12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By) -[CIPHER] [ag] 2026-03-31T14:38:32.696873Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378824563312072688581262848349, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:38:32.696915Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378824563514986873392067916125, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:38:32.697071Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [ag] 2026-03-31T14:38:32.697108Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] [cn3] 2026-03-31T14:38:32.703403Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [cn3] 2026-03-31T14:38:32.703429Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [cn5] 2026-03-31T14:38:32.703450Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [cn5] 2026-03-31T14:38:32.703463Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [cn3] 2026-03-31T14:38:32.703648Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378824686647003565406099310433, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:38:32.703648Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378824687274192863913196060741, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-03-31T14:38:32.704012Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [cn5] 2026-03-31T14:38:32.704035Z  INFO execute:app: e3_sync::sync: NetReady! -[CIPHER] [cn5] 2026-03-31T14:38:32.704047Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [cn1] 2026-03-31T14:38:32.704036Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [cn3] 2026-03-31T14:38:32.704131Z  INFO execute:app: e3_sync::sync: NetReady! -[CIPHER] [cn3] 2026-03-31T14:38:32.704144Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [cn5] 2026-03-31T14:38:32.704144Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378824698176218611475541065797, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:38:32.704212Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [cn5] 2026-03-31T14:38:32.704215Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [cn5] 2026-03-31T14:38:32.704217Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [cn5] 2026-03-31T14:38:32.704237Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [cn1] 2026-03-31T14:38:32.704215Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32742378824697825730474072670894396, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:38:32.704268Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378824699910212554403266922337, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:38:32.704309Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [cn5] 2026-03-31T14:38:32.704288Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378824701607313009185517666373, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:38:32.704331Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [cn5] 2026-03-31T14:38:32.704189Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [cn3] 2026-03-31T14:38:32.704333Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [cn3] 2026-03-31T14:38:32.704335Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [cn5] 2026-03-31T14:38:32.704221Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [cn3] 2026-03-31T14:38:32.704347Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [cn3] 2026-03-31T14:38:32.704337Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [cn5] 2026-03-31T14:38:32.704339Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [cn5] 2026-03-31T14:38:32.704344Z  INFO execute:app: e3_sync::sync: Historical events sorted. -[CIPHER] [cn5] 2026-03-31T14:38:32.704349Z  INFO execute:app: e3_sync::sync: Effects enabled -[CIPHER] [cn5] 2026-03-31T14:38:32.704352Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [cn5] 2026-03-31T14:38:32.704355Z  INFO execute:app: e3_sync::sync: Historical events published. -[CIPHER] [cn5] 2026-03-31T14:38:32.704358Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [cn5] 2026-03-31T14:38:32.704361Z  INFO execute:app: e3_sync::sync: Sync finished. -[CIPHER] [cn5] 2026-03-31T14:38:32.704396Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn5/0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc/12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1) -[CIPHER] [cn3] 2026-03-31T14:38:32.704390Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378824703618008113218886797153, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:38:32.704455Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378824703525774392851311034437, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:38:32.704495Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378824703765582065809535205445, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-03-31T14:38:32.704586Z  INFO execute:app: e3_sync::sync: NetReady! -[CIPHER] [cn1] 2026-03-31T14:38:32.704599Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [cn5] 2026-03-31T14:38:32.704623Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] [cn5] 2026-03-31T14:38:32.704589Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [cn3] 2026-03-31T14:38:32.704733Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [cn3] 2026-03-31T14:38:32.704742Z  INFO execute:app: e3_sync::sync: Historical events sorted. -[CIPHER] [cn3] 2026-03-31T14:38:32.704747Z  INFO execute:app: e3_sync::sync: Effects enabled -[CIPHER] [cn3] 2026-03-31T14:38:32.704750Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [cn3] 2026-03-31T14:38:32.704773Z  INFO execute:app: e3_sync::sync: Historical events published. -[CIPHER] [cn3] 2026-03-31T14:38:32.704781Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [cn3] 2026-03-31T14:38:32.704788Z  INFO execute:app: e3_sync::sync: Sync finished. -[CIPHER] [cn1] 2026-03-31T14:38:32.704788Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32742378824708321927852013405763900, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:38:32.704815Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn3/0x90F79bf6EB2c4f870365E785982E1f101E93b906/12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd) -[CIPHER] [cn1] 2026-03-31T14:38:32.704838Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [cn1] 2026-03-31T14:38:32.704857Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [cn1] 2026-03-31T14:38:32.704865Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [cn1] 2026-03-31T14:38:32.704875Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [cn1] 2026-03-31T14:38:32.704861Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [cn1] 2026-03-31T14:38:32.704863Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [cn3] 2026-03-31T14:38:32.704947Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378824710867578534186740582241, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:38:32.704989Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378824711605448297135122646881, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:38:32.705054Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [cn3] 2026-03-31T14:38:32.705081Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] [cn1] 2026-03-31T14:38:32.705091Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32742378824713339442240062403803452, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn1] 2026-03-31T14:38:32.705617Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [cn1] 2026-03-31T14:38:32.705629Z  INFO execute:app: e3_sync::sync: Historical events sorted. -[CIPHER] [cn1] 2026-03-31T14:38:32.705634Z  INFO execute:app: e3_sync::sync: Effects enabled -[CIPHER] [cn1] 2026-03-31T14:38:32.705638Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [cn1] 2026-03-31T14:38:32.705645Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [cn1] 2026-03-31T14:38:32.705648Z  INFO execute:app: e3_sync::sync: Sync finished. -[CIPHER] [cn1] 2026-03-31T14:38:32.705674Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn1/0x70997970C51812dc3A010C7d01b50e0d17dc79C8/12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3) -[CIPHER] [cn1] 2026-03-31T14:38:32.705641Z  INFO execute:app: e3_sync::sync: Historical events published. -[CIPHER] [cn1] 2026-03-31T14:38:32.705801Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32742378824727229840527565696170300, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-03-31T14:38:32.705845Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32742378824727506541688671339444540, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-03-31T14:38:32.705906Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [cn1] 2026-03-31T14:38:32.705930Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] -[CIPHER] > enclave-example@0.0.0 deploy /Users/ctrlc03/Documents/zk/enclave/templates/default -[CIPHER] > pnpm clean:deployments && hardhat run scripts/deploy-local.ts --network localhost -[CIPHER] -[CIPHER] -[CIPHER] > enclave-example@0.0.0 clean:deployments /Users/ctrlc03/Documents/zk/enclave/templates/default -[CIPHER] > hardhat utils:clean-deployments -[CIPHER] -[CIPHER] Compiled 7 Solidity files with solc 0.8.28 (evm target: cancun) -[CIPHER] Nothing to compile -[CIPHER] -[CIPHER] 🚀 Deploying Enclave protocol locally... -[CIPHER] Deploying with account: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Account balance: 10000.0 -[CIPHER] Detected local network 'localhost', auto-cleaning stale deployment state... -[CIPHER] PoseidonT3 deployed to: 0x3333333C0A88F9BE4fd23ed0536F9B6c427e3B93 -[CIPHER] Deploying mock Fee token... -[CIPHER] MockFeeToken deployed to: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 -[CIPHER] Deploying ENCL token... -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Transfer restrictions disabled for local development -[CIPHER] EnclaveToken deployed to: 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Deploying EnclaveTicketToken... -[CIPHER] EnclaveTicketToken deployed to: 0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9 -[CIPHER] Deploying SlashingManager... -[CIPHER] SlashingManager deployed to: 0x5FC8d32690cc91D4c39d9d3abcBD16989F875707 -[CIPHER] Deploying CiphernodeRegistry... -[CIPHER] CiphernodeRegistry deployed to: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 -[CIPHER] Deploying BondingRegistry... -[CIPHER] [cn5] 2026-03-31T14:38:47.548179Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098515613163443956705591365, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:38:47.548339Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32742379098515945204837283477520453, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:38:47.548295Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32742379098515908311349136058417221, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:38:47.548384Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32742379098515982098325430896623685, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:38:47.548425Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32742379098516018991813578315726917, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:38:47.548175Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098515539376467658121032029, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:38:47.548301Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32742379098515908311349132312064349, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:38:47.548363Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32742379098515945204837279731167581, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:38:47.548427Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32742379098515982098325427150270813, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:38:47.548486Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32742379098516018991813574569374045, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:38:47.548698Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 -[CIPHER] [cn4] 2026-03-31T14:38:47.548174Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098515428696003219581181697, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:38:47.548337Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32742379098515945204837283448626945, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:38:47.548400Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32742379098515982098325430867730177, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:38:47.548441Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32742379098516018991813578286833409, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:38:47.548174Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098515889864605061376870241, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:38:47.548361Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32742379098516037438557651053283169, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:38:47.548448Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32742379098516129672278019601041249, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:38:47.549031Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 -[CIPHER] [cn2] 2026-03-31T14:38:47.548244Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098516959775761336722544869, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:38:47.548484Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32742379098516148119022093310592865, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:38:47.548746Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32742379098517144243202073818061029, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:38:47.548802Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32742379098517181136690221237164261, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:38:47.548403Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32742379098516074332045798472386401, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:38:47.548553Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32742379098517218030178367047891260, aggregate_id: AggregateId(0), block: Some(17), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:38:47.549040Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 -[CIPHER] [cn1] 2026-03-31T14:38:47.548870Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 -[CIPHER] BondingRegistry deployed to: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 -[CIPHER] Deploying Enclave... -[CIPHER] Enclave deployed to: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e -[CIPHER] Deploying E3RefundManager... -[CIPHER] E3RefundManager deployed to: 0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82 -[CIPHER] Setting E3RefundManager in Enclave... -[CIPHER] Configuring cross-contract dependencies... -[CIPHER] Setting Enclave address in CiphernodeRegistry... -[CIPHER] Setting BondingRegistry address in CiphernodeRegistry... -[CIPHER] Setting Submission Window in CiphernodeRegistry... -[CIPHER] SORTITION_SUBMISSION_WINDOW: 10 -[CIPHER] Setting BondingRegistry address in EnclaveTicketToken... -[CIPHER] Setting CiphernodeRegistry address in BondingRegistry... -[CIPHER] Setting Enclave address in SlashingManager... -[CIPHER] Setting BondingRegistry address in SlashingManager... -[CIPHER] Setting CiphernodeRegistry address in SlashingManager... -[CIPHER] Setting E3RefundManager address in SlashingManager... -[CIPHER] Setting SlashingManager address in Enclave... -[CIPHER] Setting SlashingManager address in BondingRegistry... -[CIPHER] Setting SlashingManager address in CiphernodeRegistry... -[CIPHER] Setting Enclave as reward distributor in BondingRegistry... -[CIPHER] Setting committee thresholds... -[CIPHER] Committee thresholds set (Micro=[1,3], Small=[2,5]) -[CIPHER] Setting pricing config... -[CIPHER] Pricing config set (treasury: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 ) -[CIPHER] Deploying Compute Provider -[CIPHER] Deploying Mock Decryption Verifier -[CIPHER] Deploying Mock Pk Verifier -[CIPHER] Deploying E3 Program -[CIPHER] -[CIPHER] MockDeployments: -[CIPHER] ---------------------------------------------------------------------- -[CIPHER] MockComputeProvider:0xc3e53F4d16Ae77Db1c982e75a937B9f60FE63690 -[CIPHER] MockDecryptionVerifier:0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB -[CIPHER] MockPkVerifier:0x9E545E3C0baAB3E08CdfD552C960A1050f373042 -[CIPHER] MockE3Program:0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9 -[CIPHER] -[CIPHER] encryptionSchemeId 0x2c2a814a0495f913a3a312fc4771e37552bc14f8a2d4075a08122d356f0849c6 -[CIPHER] Successfully enabled E3 Program in Enclave contract -[CIPHER] Deploying circuit verifiers... -[CIPHER] Deploying to network: localhost -[CIPHER] Found 3 verifier contract(s) -[CIPHER] Deploying ZKTranscriptLib... -[CIPHER] ZKTranscriptLib deployed to: 0x851356ae760d987E095750cCeb3bC6014560891C -[CIPHER] RecursiveAggregationFoldVerifier deployed to: 0xf5059a5D33d5853360D16C683c16e67980206f36 -[CIPHER] ThresholdDecryptedSharesAggregationVerifier deployed to: 0x95401dc811bb5740090279Ba06cfA8fcF6113778 -[CIPHER] ThresholdPkAggregationVerifier deployed to: 0x998abeb3E57409262aE5b751f60747921B33613E -[CIPHER] Deploying BfvDecryptionVerifier and registering for prod... -[CIPHER] BfvDecryptionVerifier deployed to: 0x70e0bA845a1A0F2DA3359C97E0285013525FFC49 -[CIPHER] Successfully set BfvDecryptionVerifier in Enclave contract -[CIPHER] Deploying BfvPkVerifier and registering for prod... -[CIPHER] BfvPkVerifier deployed to: 0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf -[CIPHER] Successfully set BfvPkVerifier in Enclave contract -[CIPHER] -[CIPHER] ============================================ -[CIPHER] Deployment Complete! -[CIPHER] ============================================ -[CIPHER] MockFeeToken: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 -[CIPHER] EnclaveToken (ENCL): 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] EnclaveTicketToken: 0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9 -[CIPHER] SlashingManager: 0x5FC8d32690cc91D4c39d9d3abcBD16989F875707 -[CIPHER] BondingRegistry: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 -[CIPHER] CiphernodeRegistry: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 -[CIPHER] E3RefundManager: 0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82 -[CIPHER] Enclave: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e -[CIPHER] DecryptionVerifier (BFV): 0x70e0bA845a1A0F2DA3359C97E0285013525FFC49 -[CIPHER] PkVerifier (BFV): 0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf -[CIPHER] Circuit Verifiers: -[CIPHER] RecursiveAggregationFoldVerifier: 0xf5059a5D33d5853360D16C683c16e67980206f36 -[CIPHER] ThresholdDecryptedSharesAggregationVerifier: 0x95401dc811bb5740090279Ba06cfA8fcF6113778 -[CIPHER] ThresholdPkAggregationVerifier: 0x998abeb3E57409262aE5b751f60747921B33613E -[CIPHER] ============================================ -[CIPHER] -[CIPHER] E3 Program enabled for Enclave's template -[CIPHER] -[CIPHER] Deployed MyProgram at address: 0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00 -[CIPHER] Deployed MockRISC0Verifier at address: 0x8f86403A4DE0BB5791fa46B8e795C547942fE4Cf -[CIPHER] -[CIPHER] -[CIPHER] Updating contracts for chain: localhost -[CIPHER] ✓ Updated enclave: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e (block 18) -[CIPHER] ✓ Updated ciphernode_registry: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 (block 14) -[CIPHER] ✓ Updated bonding_registry: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 (block 15) -[CIPHER] ✓ Updated fee_token: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 (block 9) -[CIPHER] ✓ Updated e3_program: 0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00 (block 38) -[CIPHER] -[CIPHER] ✓ enclave.config.yaml updated successfully! -[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Registering ciphernode: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... -[CIPHER] 1000 ENCL transferred to ciphernode -[CIPHER] Step 2: Minting USDC to admin... -[CIPHER] 1000 USDC minted to admin -[CIPHER] Step 3: Impersonating ciphernode for license operations... -[CIPHER] License bonded: 1000 ENCL -[CIPHER] [ag] 2026-03-31T14:39:16.547665Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633466542721514375016231261, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:16.547660Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633466542721514376373893436, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:16.547660Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633466837869419557143414625, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:16.547660Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633466819422675484376964865, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:16.547869Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [cn5] 2026-03-31T14:39:16.547865Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [cn2] 2026-03-31T14:39:16.547919Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [ag] 2026-03-31T14:39:16.547906Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [cn2] 2026-03-31T14:39:16.547733Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633467557292438432007608549, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:16.547926Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [cn3] 2026-03-31T14:39:16.547857Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [cn5] 2026-03-31T14:39:16.547660Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32742379633467151464068811177787461, aggregate_id: AggregateId(0), block: Some(46), source: Evm } } -[CIPHER] Operator registered (automatically added to CiphernodeRegistry) -[CIPHER] Step 4: Adding ticket balance via admin... -[CIPHER] [ag] 2026-03-31T14:39:20.549031Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707277499783648403897332061, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:20.549168Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32742379707277610464112846154641757, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:20.549031Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707276392979003984098592609, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:20.549155Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32742379707276485212724352646350689, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:20.549244Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn1] 2026-03-31T14:39:20.549031Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707276190064819171876829500, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:20.549158Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32742379707276319192027687843690812, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:20.549267Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true -[CIPHER] [cn1] 2026-03-31T14:39:20.549244Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn3] 2026-03-31T14:39:20.549267Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true -[CIPHER] [cn5] 2026-03-31T14:39:20.549244Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707282037682690540193382469, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:39:20.549444Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn5] 2026-03-31T14:39:20.549461Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true -[CIPHER] [cn4] 2026-03-31T14:39:20.549528Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32742379707285302756391586755124993, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:20.549466Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707275433748312151393589477, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:20.549633Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn4] 2026-03-31T14:39:20.549593Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn4] 2026-03-31T14:39:20.549439Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32742379707285173629183070788263681, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:20.549647Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true -[CIPHER] [cn2] 2026-03-31T14:39:20.549560Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32742379707275784236449551875070181, aggregate_id: AggregateId(0), block: Some(50), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:20.549364Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] Ticket balance added: 1000 USDC worth -[CIPHER] -[CIPHER] === Registration Complete === -[CIPHER] Ciphernode: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 -[CIPHER] Registered: true -[CIPHER] Active: true -[CIPHER] License Bond: 1000.0 ENCL -[CIPHER] Ticket Balance: 1000.0 USDC worth -[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Registering ciphernode: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... -[CIPHER] 1000 ENCL transferred to ciphernode -[CIPHER] Step 2: Minting USDC to admin... -[CIPHER] 1000 USDC minted to admin -[CIPHER] Step 3: Impersonating ciphernode for license operations... -[CIPHER] License bonded: 1000 ENCL -[CIPHER] [cn5] 2026-03-31T14:39:26.549212Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817961173959374542801666117, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:39:26.549421Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] [cn3] 2026-03-31T14:39:26.549206Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817961118619142320701015905, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:26.549420Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] [ag] 2026-03-31T14:39:26.549211Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817959845793801231967596893, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:26.549420Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] [cn2] 2026-03-31T14:39:26.549206Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817959605986128276709464293, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:26.549421Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] [cn1] 2026-03-31T14:39:26.549420Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] [cn1] 2026-03-31T14:39:26.549253Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817961173959374540412975420, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:26.549206Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32742379817959753560080867137298177, aggregate_id: AggregateId(0), block: Some(56), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:26.549587Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] Operator registered (automatically added to CiphernodeRegistry) -[CIPHER] Step 4: Adding ticket balance via admin... -[CIPHER] [cn5] 2026-03-31T14:39:30.549207Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891742099722156572532736069, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:39:30.549361Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891742265742853235918700613, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:39:30.549617Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] [cn5] 2026-03-31T14:39:30.549634Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [ag] 2026-03-31T14:39:30.549307Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891743907503075792322441565, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:30.549637Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891750271629781222117749085, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:30.549684Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-03-31T14:39:30.549694Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [cn2] 2026-03-31T14:39:30.549816Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891741011364256222888876261, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:30.549926Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] [cn2] 2026-03-31T14:39:30.549937Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [cn2] 2026-03-31T14:39:30.549882Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891741324958905475951253733, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:30.549971Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891741140491464739607158529, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:30.550024Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891741324958905476702674689, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:30.550070Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [cn3] 2026-03-31T14:39:30.550032Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891764401835741686408644449, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:30.550080Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891764512516206128665954145, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:30.550122Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] [cn3] 2026-03-31T14:39:30.550133Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [cn1] 2026-03-31T14:39:30.550498Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32742379891771079557096367849634108, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:30.550631Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32742379891771264024537104945150268, aggregate_id: AggregateId(0), block: Some(60), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:30.550766Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [cn4] 2026-03-31T14:39:30.550061Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] [cn1] 2026-03-31T14:39:30.550741Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] Ticket balance added: 1000 USDC worth -[CIPHER] -[CIPHER] === Registration Complete === -[CIPHER] Ciphernode: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC -[CIPHER] Registered: true -[CIPHER] Active: true -[CIPHER] License Bond: 1000.0 ENCL -[CIPHER] Ticket Balance: 1000.0 USDC worth -[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Registering ciphernode: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... -[CIPHER] 1000 ENCL transferred to ciphernode -[CIPHER] Step 2: Minting USDC to admin... -[CIPHER] 1000 USDC minted to admin -[CIPHER] Step 3: Impersonating ciphernode for license operations... -[CIPHER] License bonded: 1000 ENCL -[CIPHER] [cn5] 2026-03-31T14:39:36.548689Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002417712670722496616661061, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:39:36.548883Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] [cn1] 2026-03-31T14:39:36.548685Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002417214608632504070076732, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:36.548980Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] [cn2] 2026-03-31T14:39:36.548686Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002417325289096947935762661, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:36.548883Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] [cn4] 2026-03-31T14:39:36.548682Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002417897138163233683283713, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:36.548883Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] [cn3] 2026-03-31T14:39:36.548682Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002418450540485444026730337, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:36.548888Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] [ag] 2026-03-31T14:39:36.548715Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32742380002417435969561387227033949, aggregate_id: AggregateId(0), block: Some(66), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:36.548883Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] Operator registered (automatically added to CiphernodeRegistry) -[CIPHER] Step 4: Adding ticket balance via admin... -[CIPHER] [cn5] 2026-03-31T14:39:40.548985Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32742380076204283137191081470525509, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:40.549165Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32742380076206386066015480613056861, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:40.549240Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32742380076204430711143670366623973, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:40.549369Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32742380076204578285096260043036901, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:40.549515Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn2] 2026-03-31T14:39:40.549544Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true -[CIPHER] [cn3] 2026-03-31T14:39:40.549412Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32742380076203489927195910987810657, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:40.549567Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32742380076203951095797753726601057, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:40.549697Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn3] 2026-03-31T14:39:40.549723Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true -[CIPHER] [cn4] 2026-03-31T14:39:40.549502Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32742380076203803521845164993289985, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:40.549621Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32742380076203969542541828379254529, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:40.549724Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn4] 2026-03-31T14:39:40.549749Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true -[CIPHER] [ag] 2026-03-31T14:39:40.549455Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32742380076206552086712143999021405, aggregate_id: AggregateId(0), block: Some(70), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:40.549737Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 -[CIPHER] Ticket balance added: 1000 USDC worth -[CIPHER] -[CIPHER] === Registration Complete === -[CIPHER] Ciphernode: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 -[CIPHER] Registered: true -[CIPHER] Active: true -[CIPHER] License Bond: 1000.0 ENCL -[CIPHER] Ticket Balance: 1000.0 USDC worth -[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Registering ciphernode: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... -[CIPHER] 1000 ENCL transferred to ciphernode -[CIPHER] Step 2: Minting USDC to admin... -[CIPHER] 1000 USDC minted to admin -[CIPHER] Step 3: Impersonating ciphernode for license operations... -[CIPHER] License bonded: 1000 ENCL -[CIPHER] [ag] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186908875920696799513686365, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [cn3] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186909835151388635184727905, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186909595343715675543861564, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [cn5] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186908931260929024388694085, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [cn4] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186909927385109004675587841, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [cn5] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [cn2] 2026-03-31T14:39:46.549925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32742380186909558450227529733134565, aggregate_id: AggregateId(0), block: Some(76), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:46.550059Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] Operator registered (automatically added to CiphernodeRegistry) -[CIPHER] Step 4: Adding ticket balance via admin... -[CIPHER] [cn4] 2026-03-31T14:39:50.548706Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32742380260673144273580273237106433, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:50.548801Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32742380260673476314973600009035521, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:50.548896Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn4] 2026-03-31T14:39:50.548912Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true -[CIPHER] [cn2] 2026-03-31T14:39:50.548746Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32742380260673162720324346195237093, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:50.548823Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32742380260673457868229525548062949, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:50.548882Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn2] 2026-03-31T14:39:50.548899Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true -[CIPHER] [ag] 2026-03-31T14:39:50.549096Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32742380260682791920730819615142237, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:50.549184Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32742380260682902601195261872451933, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:50.549253Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-03-31T14:39:50.549266Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true -[CIPHER] [cn3] 2026-03-31T14:39:50.549268Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32742380260673236507300640841762657, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:50.549373Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn3] 2026-03-31T14:39:50.549441Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true -[CIPHER] [cn3] 2026-03-31T14:39:50.549325Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32742380260673476314973599065933665, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:50.549364Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32742380260688657985346260610218300, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:50.549429Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32742380260688787112554776577079612, aggregate_id: AggregateId(0), block: Some(80), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:50.549482Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 -[CIPHER] Ticket balance added: 1000 USDC worth -[CIPHER] -[CIPHER] === Registration Complete === -[CIPHER] Ciphernode: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 -[CIPHER] Registered: true -[CIPHER] Active: true -[CIPHER] License Bond: 1000.0 ENCL -[CIPHER] Ticket Balance: 1000.0 USDC worth -[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Registering ciphernode: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... -[CIPHER] 1000 ENCL transferred to ciphernode -[CIPHER] Step 2: Minting USDC to admin... -[CIPHER] 1000 USDC minted to admin -[CIPHER] Step 3: Impersonating ciphernode for license operations... -[CIPHER] License bonded: 1000 ENCL -[CIPHER] [cn1] 2026-03-31T14:39:56.547909Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371341710565910037912516924, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:39:56.548015Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] [cn5] 2026-03-31T14:39:56.547939Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371343426113108895289507909, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:39:56.548016Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] [ag] 2026-03-31T14:39:56.547960Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371343997962175176539255133, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:39:56.548046Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] [cn2] 2026-03-31T14:39:56.547993Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371344514471009243372738789, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:39:56.548075Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] [cn4] 2026-03-31T14:39:56.548061Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371344090195895548804472577, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:39:56.548140Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] [cn3] 2026-03-31T14:39:56.548293Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32742380371349605772373587017303905, aggregate_id: AggregateId(0), block: Some(86), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:39:56.548388Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] Operator registered (automatically added to CiphernodeRegistry) -[CIPHER] Step 4: Adding ticket balance via admin... -[CIPHER] [cn1] 2026-03-31T14:40:00.548339Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32742380445133501460951482569488700, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:00.548440Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32742380445133833502344809341417788, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:00.548514Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-03-31T14:40:00.548464Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32742380445136379153026979901878621, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:00.548424Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32742380445136600513955867190855521, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:00.548553Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true -[CIPHER] [cn5] 2026-03-31T14:40:00.548887Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true -[CIPHER] [cn4] 2026-03-31T14:40:00.548793Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32742380445144753974836447755771649, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:00.548994Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32742380445148166622490083271399653, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:00.549131Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 -[CIPHER] [cn1] 2026-03-31T14:40:00.548532Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true -[CIPHER] [ag] 2026-03-31T14:40:00.548532Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true -[CIPHER] [cn3] 2026-03-31T14:40:00.548495Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32742380445136674300932162029061985, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:00.548734Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32742380445142780173220560862642245, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:00.548817Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32742380445142909300429076829503557, aggregate_id: AggregateId(0), block: Some(90), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:00.548906Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 -[CIPHER] Ticket balance added: 1000 USDC worth -[CIPHER] -[CIPHER] === Registration Complete === -[CIPHER] Ciphernode: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc -[CIPHER] Registered: true -[CIPHER] Active: true -[CIPHER] License Bond: 1000.0 ENCL -[CIPHER] Ticket Balance: 1000.0 USDC worth -[CIPHER] [cn5] 2026-03-31T14:40:01.508884Z  INFO enclave::start: CMD: {"name":null,"otel":null,"quiet":false,"config":null,"verbose":0,"command":{"PrintEnv":{"vite":false,"chain":"localhost"}}} -[CIPHER] [cn5] 2026-03-31T14:40:01.509190Z  INFO execute: enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[PROGRAM] Compiling e3-polynomial v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/polynomial) -[PROGRAM] Compiling e3-zk-helpers v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/zk-helpers) -[SERVER] 📡 Setting up event listeners... -[SERVER] ✅ Event listeners set up successfully -[SERVER] 🚀 Enclave Server listening on port 8080 -[SERVER] 📡 Event listeners active -[SERVER] 📊 Sessions: http://localhost:8080/sessions -[PROGRAM] Compiling e3-bfv-client v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/bfv-client) -[PROGRAM] Compiling e3-compute-provider v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/compute-provider) -[PROGRAM] Compiling e3-program-server v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/program-server) -[PROGRAM] Compiling e3-user-program v0.1.0 (/Users/ctrlc03/Documents/zk/enclave/templates/default/program) -[PROGRAM] Compiling e3-support-scripts-dev v0.1.0 (/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/support/dev) -[PROGRAM] Finished `dev` profile [unoptimized + debuginfo] target(s) in 3.96s -[PROGRAM] Running `target/debug/e3-support-scripts-dev` -[PROGRAM] 🚀 E3 Program Server listening on http://0.0.0.0:13151 -[TEST] -[TEST] RUN v1.6.1 /Users/ctrlc03/Documents/zk/enclave/templates/default -[TEST] -[TEST] stdout | tests/integration.spec.ts:159:11 -[TEST] Testing... -[TEST] -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] E3 quote: 5206960n -[TEST] Approving fee token... -[TEST] -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] Fee token approved: 0x29f0c9b9bccf0c3429811559d674b86a02ed436f7668a10088449d2159c64456 -[TEST] -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] Requested E3... -[TEST] -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] E3 Sucessfully Requested! -[TEST] -[CIPHER] [cn3] 2026-03-31T14:40:09.568347Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [ag] 2026-03-31T14:40:09.569124Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [ag] 2026-03-31T14:40:09.569750Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611546449690320805661389149, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:09.569457Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [cn4] 2026-03-31T14:40:09.570016Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611552389541912543854468865, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:09.570166Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611552518669121059821330177, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:09.570277Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [cn4] 2026-03-31T14:40:09.570292Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [cn4] 2026-03-31T14:40:09.571130Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] -[CIPHER] [cn4] 2026-03-31T14:40:09.571145Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 index=2 ticket_id=Some(43) -[CIPHER] [cn4] 2026-03-31T14:40:09.571484Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn4] 2026-03-31T14:40:09.571503Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" ticket_id=43 -[CIPHER] [cn5] 2026-03-31T14:40:09.569780Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [cn4] 2026-03-31T14:40:09.570087Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611552500222376986111778561, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:09.570522Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611558642988153531421360197, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:09.570594Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611558753668617973678669893, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:09.570677Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611558790562106121097773125, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:09.571245Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [cn5] 2026-03-31T14:40:09.571258Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [cn5] 2026-03-31T14:40:09.572561Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] -[CIPHER] [cn5] 2026-03-31T14:40:09.572583Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc index=0 ticket_id=Some(60) -[CIPHER] [cn5] 2026-03-31T14:40:09.572726Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn5] 2026-03-31T14:40:09.572775Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" ticket_id=60 -[CIPHER] [cn3] 2026-03-31T14:40:09.569747Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611533038907379221591721825, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:09.569827Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611533370948772548363650913, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:09.569907Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611533407842260695782754145, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:09.570204Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [cn3] 2026-03-31T14:40:09.570221Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [cn3] 2026-03-31T14:40:09.571133Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] -[CIPHER] [cn3] 2026-03-31T14:40:09.571148Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x90F79bf6EB2c4f870365E785982E1f101E93b906 index=1 ticket_id=Some(60) -[CIPHER] [cn3] 2026-03-31T14:40:09.572043Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn3] 2026-03-31T14:40:09.572055Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x90F79bf6EB2c4f870365E785982E1f101E93b906" ticket_id=60 -[CIPHER] [cn2] 2026-03-31T14:40:09.570225Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [cn2] 2026-03-31T14:40:09.570865Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611567239170891879292098789, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:09.570928Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611567349851356321549408485, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:09.571009Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611567386744844468968511717, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:09.571127Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [cn2] 2026-03-31T14:40:09.571140Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [cn2] 2026-03-31T14:40:09.573083Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] -[CIPHER] [cn2] 2026-03-31T14:40:09.573104Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC index=3 ticket_id=Some(47) -[CIPHER] [cn2] 2026-03-31T14:40:09.573179Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn2] 2026-03-31T14:40:09.573192Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" ticket_id=47 -[CIPHER] [cn1] 2026-03-31T14:40:09.570357Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [cn1] 2026-03-31T14:40:09.571140Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611569139185531469767539004, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:09.571249Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [cn1] 2026-03-31T14:40:09.571260Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [cn1] 2026-03-31T14:40:09.572645Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 index=4 ticket_id=Some(47) -[CIPHER] [cn1] 2026-03-31T14:40:09.572726Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn1] 2026-03-31T14:40:09.572745Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x70997970C51812dc3A010C7d01b50e0d17dc79C8" ticket_id=47 -[CIPHER] [ag] 2026-03-31T14:40:09.569835Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611546560370785247918698845, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:09.572631Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] -[CIPHER] [cn1] 2026-03-31T14:40:09.571001Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0x6bc401927ecbd70efeeaabf0aed0ee231ba83bb0f82d01474c43c0bf31bf14f9), threshold: [1, 3], request_block: 99, committee_deadline: 1774968019, chain_id: 31337 }), ctx: EventContext { id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 1, ts: 32742380611569028505067027510229308, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:09.571063Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 2, ts: 32742380611569102292043322348435772, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:40:09.570692Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32742380611546597264273395337802077, aggregate_id: AggregateId(31337), block: Some(99), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:09.576703Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(43), node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" }), ctx: EventContext { id: EventId(0x666fdc1f214c31b682bebd56055639c5192c2c7dd79b45da8ac9eca925d9a799), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 4, ts: 32742380611587253888211854907023105, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:09.576815Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract -[CIPHER] [cn4] 2026-03-31T14:40:09.576858Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 43 for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn4] 2026-03-31T14:40:09.576867Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) -[CIPHER] [cn3] 2026-03-31T14:40:09.577935Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(60), node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906" }), ctx: EventContext { id: EventId(0x68fff20d942b0b851c11b5be48450b149306e58199142e8ae5358619e341ad4b), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 4, ts: 32742380611597510277916836474619745, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } -[CIPHER] [cn1] 2026-03-31T14:40:09.577947Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(47), node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8" }), ctx: EventContext { id: EventId(0x6ecb373f5e58588749293a5f8d320cacad4de78aca996c9f14a2f0ed72f7b069), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 4, ts: 32742380611610164744351399810332988, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } -[CIPHER] [cn1] 2026-03-31T14:40:09.578054Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract -[CIPHER] [cn3] 2026-03-31T14:40:09.578072Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) -[CIPHER] [cn3] 2026-03-31T14:40:09.578045Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract -[CIPHER] [cn3] 2026-03-31T14:40:09.578068Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 60 for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn1] 2026-03-31T14:40:09.578083Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) -[CIPHER] [cn1] 2026-03-31T14:40:09.578080Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 47 for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn5] 2026-03-31T14:40:09.580556Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(60), node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" }), ctx: EventContext { id: EventId(0x8f3e028f9f530cf132ff51db7a96073693d2491dbbec4c3e35844ed5c841e7f5), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 4, ts: 32742380611610699699929539776020549, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:09.580698Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract -[CIPHER] [cn2] 2026-03-31T14:40:09.580556Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(47), node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" }), ctx: EventContext { id: EventId(0xd1dbc720f54aa06b4932f2cd3ac3d6c5b605034ee69972210fdca9609b3f9e26), causation_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), origin_id: EventId(0x0950c01f0434030ca58b7a706921b8a1f50de7200db334f285abe797ecd82a41), seq: 4, ts: 32742380611618391992208275878729957, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } -[CIPHER] [cn2] 2026-03-31T14:40:09.580696Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract -[CIPHER] [cn2] 2026-03-31T14:40:09.580718Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 47 for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn2] 2026-03-31T14:40:09.580722Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) -[CIPHER] [cn5] 2026-03-31T14:40:09.580754Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 60 for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn5] 2026-03-31T14:40:09.580762Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) -[CIPHER] [ag] 2026-03-31T14:40:09.581392Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [ag] 2026-03-31T14:40:09.581409Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [ag] 2026-03-31T14:40:09.581752Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:60)", "0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:60)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:43)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:47)"] -[CIPHER] [ag] 2026-03-31T14:40:09.581760Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=31337:0 node=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] [ag] 2026-03-31T14:40:09.581798Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [ag] 2026-03-31T14:40:09.581803Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" -[CIPHER] [ag] 2026-03-31T14:40:09.583032Z  INFO e3_aggregator::committee_finalizer: Scheduling committee finalization e3_id=31337:0 committee_deadline=1774968019 current_timestamp=1774968009 seconds_to_wait=11 -[CIPHER] [ag] 2026-03-31T14:40:09.583064Z  INFO alloy_pubsub::service: Pubsub service request channel closed. Shutting down. -[CIPHER] [cn1] 2026-03-31T14:40:10.549987Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 5, ts: 32742380629630881263678629331761468, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:10.550080Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 6, ts: 32742380629630991944143071589071164, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:10.550247Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 7, ts: 32742380629631010390887145298622780, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:10.550311Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 8, ts: 32742380629631047284375292717726012, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:10.550338Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 9, ts: 32742380629631065731119366427277628, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:10.549987Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 5, ts: 32742380629629626885081618690627813, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:10.550095Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 6, ts: 32742380629629958926474945462556901, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:10.550138Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 7, ts: 32742380629629995819963092881660133, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:10.550219Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 8, ts: 32742380629630069606939387719866597, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:10.550507Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 9, ts: 32742380629630124947171608848521445, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:10.549987Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 5, ts: 32742380629630290967868272042805089, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:10.550299Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 6, ts: 32742380629630420095076788009666401, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:10.550336Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 7, ts: 32742380629630438541820861719218017, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:10.550388Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 9, ts: 32742380629630493882053082847872865, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:40:10.550020Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 4, ts: 32742380629631194858327881036476765, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:40:10.550092Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 5, ts: 32742380629631287092048249584234845, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:40:10.550138Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 6, ts: 32742380629631305538792323293786461, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:40:10.550291Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 7, ts: 32742380629631342432280470712889693, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:40:10.550327Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 8, ts: 32742380629631360879024544422441309, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:10.549987Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 5, ts: 32742380629629645331825693180493893, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:10.550089Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 6, ts: 32742380629629958926474946242871365, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:10.550137Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 7, ts: 32742380629629977373219019952422981, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:10.550223Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 8, ts: 32742380629630014266707167371526213, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:10.550508Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 9, ts: 32742380629630032713451241081077829, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:10.550362Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 8, ts: 32742380629630475435309009138321249, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:10.550854Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 43, score: "418364281968472983419556554907449639470504436469992414169677764468872744037", chain_id: 31337 }), ctx: EventContext { id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), causation_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), origin_id: EventId(0xf9e0cb10680e753bdf5459edcc6ca8a61833057d0bc6401f2b65afe1012d168b), seq: 5, ts: 32742380629646192061259810619399937, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:10.551020Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 60, score: "413327795466208811005773405090540545517441187940491537768427889535696909364", chain_id: 31337 }), ctx: EventContext { id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), causation_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), origin_id: EventId(0xee85837acce5b3895e82f818d3839338179f7d9ada45a39b8f9b905da358e771), seq: 6, ts: 32742380629646339635212400295812865, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:10.551095Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 47, score: "1370541606265214111475298743429206746505885591939895066877670676850347990142", chain_id: 31337 }), ctx: EventContext { id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), causation_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), origin_id: EventId(0x018119a7b764e6091eee88740d6ad5d4846e335de15e40deb088ec7978ec147a), seq: 7, ts: 32742380629646376528700547714916097, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:10.551123Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 60, score: "11774922273777575550543859850921186064371191293257389444393084990919636368", chain_id: 31337 }), ctx: EventContext { id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), causation_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), origin_id: EventId(0x91677541f43adeeed134467918ead8ab4cbbddb3c06ca0eebf3b5188e3f15e4f), seq: 8, ts: 32742380629646394975444621424467713, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:10.551158Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 47, score: "1055126841669590278301153870852186144275422042861743102874507335874013571758", chain_id: 31337 }), ctx: EventContext { id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), causation_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), origin_id: EventId(0x4fe2119ebe06463c552ecbd116fcdfad557c3e93a72f39f48acb1d050f53c454), seq: 9, ts: 32742380629646413422188695134019329, aggregate_id: AggregateId(31337), block: Some(100), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:16.583621Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0xb27a70189fd5d32ccaf40e8f8f6f617c90b2405fbedb387525daf037d9b3071b -[CIPHER] [cn1] 2026-03-31T14:40:16.583643Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x0e1587df22362bbcc2c5af3a0d23808c2c68487299b811e128883bbe04946858 -[CIPHER] [cn4] 2026-03-31T14:40:16.584214Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x666bc7f01a87132e43c3359a68c08320a56f398098940173b9ea43aa0202c8f3 -[CIPHER] [cn5] 2026-03-31T14:40:16.586902Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x8c774b827980664206e4540c02fb0b09df450af838cb1701b70d889ccb8b1bef -[CIPHER] [cn2] 2026-03-31T14:40:16.586917Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x561314145447ee98df55011278e338e4f493a72523e390785ac39044eaf1e6cf -[CIPHER] [ag] 2026-03-31T14:40:20.585430Z  INFO e3_aggregator::committee_finalizer: Dispatching CommitteeFinalizeRequested event e3_id=31337:0 -[CIPHER] [ag] 2026-03-31T14:40:20.586022Z  INFO e3_events::eventbus: >>> CommitteeFinalizeRequested EnclaveEvent { payload: CommitteeFinalizeRequested(CommitteeFinalizeRequested { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x03fa318dc6ec43edd2bbef83cf33e379c8c498207236842c76f050715c9d2dc4), causation_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), origin_id: EventId(0x8d992c3655533ccda04c6755ddfd78237cde4c49a29fc0ef61bd56796c0fe474), seq: 9, ts: 32742380814759139713726641401639261, aggregate_id: AggregateId(31337), block: Some(99), source: Local } } -[CIPHER] [ag] 2026-03-31T14:40:20.586384Z  INFO e3_evm::ciphernode_registry_sol: Finalizing committee for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [ag] 2026-03-31T14:40:20.586478Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.finalizeCommittee(..) -[CIPHER] [ag] 2026-03-31T14:40:21.548454Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832519093058827912701423965, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:40:21.548601Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832519314419756797216043357, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:40:21.548770Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn2] 2026-03-31T14:40:21.548535Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832519295973012726472530149, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:21.548611Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832519351313244947601184997, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:40:21.549161Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn2] 2026-03-31T14:40:21.549221Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn2] 2026-03-31T14:40:21.549273Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [cn2] 2026-03-31T14:40:21.549285Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [cn2] 2026-03-31T14:40:21.549288Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn2] 2026-03-31T14:40:21.549290Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [cn2] 2026-03-31T14:40:21.549292Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" -[CIPHER] [cn2] 2026-03-31T14:40:21.549325Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [cn5] 2026-03-31T14:40:21.548588Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832523077555547837710925893, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:21.548646Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832523188236012279968235589, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:40:21.548858Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:21.549048Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [cn5] 2026-03-31T14:40:21.549073Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn5] 2026-03-31T14:40:21.549076Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [cn5] 2026-03-31T14:40:21.549078Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" party_id=0 -[CIPHER] [cn5] 2026-03-31T14:40:21.549166Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [cn5] 2026-03-31T14:40:21.549836Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 0 }), ctx: EventContext { id: EventId(0xd49614c7a12ba8db3e0eabace9e6d23e8213285509090a99ea22bd999ff86593), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 12, ts: 32742380832534496090129463923376197, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:21.549070Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [cn4] 2026-03-31T14:40:21.549007Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832528556238537729418862337, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:21.549081Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn4] 2026-03-31T14:40:21.549104Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:21.548768Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn4] 2026-03-31T14:40:21.548910Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832528464004817360871104257, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:40:21.549218Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn4] 2026-03-31T14:40:21.549220Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [cn4] 2026-03-31T14:40:21.549235Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" party_id=2 -[CIPHER] [cn4] 2026-03-31T14:40:21.549270Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [cn4] 2026-03-31T14:40:21.549838Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 2 }), ctx: EventContext { id: EventId(0xdf046433053a3a8bc89fbc19e6534d27b1992d2901130099acac77b2f1fbba80), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 12, ts: 32742380832537355335460888874983169, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:21.549215Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [cn5] 2026-03-31T14:40:21.551946Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. -[CIPHER] [cn5] 2026-03-31T14:40:21.551971Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes -[CIPHER] [cn4] 2026-03-31T14:40:21.551928Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. -[CIPHER] [cn4] 2026-03-31T14:40:21.551938Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes -[CIPHER] [cn4] 2026-03-31T14:40:21.549201Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [cn5] 2026-03-31T14:40:21.551958Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes -[CIPHER] [cn3] 2026-03-31T14:40:21.549242Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832533204818044303282767713, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:21.549145Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832533094137579861025458017, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:40:21.549340Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:21.549371Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [cn3] 2026-03-31T14:40:21.549382Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [cn3] 2026-03-31T14:40:21.549384Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn3] 2026-03-31T14:40:21.549387Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [cn3] 2026-03-31T14:40:21.549389Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x90F79bf6EB2c4f870365E785982E1f101E93b906" party_id=1 -[CIPHER] [cn3] 2026-03-31T14:40:21.549419Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [cn3] 2026-03-31T14:40:21.549871Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xf914bf31bfc0434c47012df8b03ba81b23eed0aef0abeafe0ed7cb7e9201c46b), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 1 }), ctx: EventContext { id: EventId(0xcbec2f089505096c8bbf46e9ad5296c1a4177d591a0db3424678b332f289cd1a), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 12, ts: 32742380832540196134048239202830177, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:21.551835Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. -[CIPHER] [cn3] 2026-03-31T14:40:21.551876Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-03-31T14:40:21.551918Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-03-31T14:40:21.549317Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [ag] 2026-03-31T14:40:21.549376Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [ag] 2026-03-31T14:40:21.549396Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [ag] 2026-03-31T14:40:21.549398Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [ag] 2026-03-31T14:40:21.549400Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [ag] 2026-03-31T14:40:21.549403Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" -[CIPHER] [ag] 2026-03-31T14:40:21.549441Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [cn1] 2026-03-31T14:40:21.549525Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32742380832540140793816016657479996, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:21.549599Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"], scores: ["11774922273777575550543859850921186064371191293257389444393084990919636368", "413327795466208811005773405090540545517441187940491537768427889535696909364", "418364281968472983419556554907449639470504436469992414169677764468872744037"], chain_id: 31337 }), ctx: EventContext { id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), causation_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 11, ts: 32742380832540214580792311495686460, aggregate_id: AggregateId(31337), block: Some(111), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:40:21.549703Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn1] 2026-03-31T14:40:21.549733Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn1] 2026-03-31T14:40:21.549777Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [cn1] 2026-03-31T14:40:21.549796Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [cn1] 2026-03-31T14:40:21.549799Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn1] 2026-03-31T14:40:21.549802Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [cn1] 2026-03-31T14:40:21.549804Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x70997970C51812dc3A010C7d01b50e0d17dc79C8" -[CIPHER] [cn1] 2026-03-31T14:40:21.549846Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [ag] 2026-03-31T14:40:21.549334Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:21.551950Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes -[CIPHER] [cn4] 2026-03-31T14:40:21.560266Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:21.560309Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:21.560266Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:21.560309Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:21.560501Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:21.560519Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:21.560732Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x2ef3b376c61bd5dc3a123ee93f4513f19b401daf1aab6aa160e23a3c79a942c1), causation_id: EventId(0xcbec2f089505096c8bbf46e9ad5296c1a4177d591a0db3424678b332f289cd1a), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 13, ts: 32742380832738480186096543173150561, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:21.560814Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x11815f5310e45fea279a8c22cd3d5235b50f4604fca335f9c0323bed7b0001c1), causation_id: EventId(0xdf046433053a3a8bc89fbc19e6534d27b1992d2901130099acac77b2f1fbba80), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 13, ts: 32742380832738387952376175568494337, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:21.561516Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation -[CIPHER] [cn4] 2026-03-31T14:40:21.561574Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation -[CIPHER] [cn5] 2026-03-31T14:40:21.562612Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x9977eb667fb1b8f57508db209f2e6f829e0651fad1378ae01b2fb69108b66b91), causation_id: EventId(0xd49614c7a12ba8db3e0eabace9e6d23e8213285509090a99ea22bd999ff86593), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 13, ts: 32742380832743626827693109110046789, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:21.563093Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation -[CIPHER] [cn3] 2026-03-31T14:40:21.565691Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x2bf272600091b26d6801c0bb3d0d24cb2256c57115a55e8674c65864c9058018), causation_id: EventId(0x2ef3b376c61bd5dc3a123ee93f4513f19b401daf1aab6aa160e23a3c79a942c1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 27, ts: 32742380832764656115937137026893665, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:21.566290Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(204)` -[CIPHER] [cn5] 2026-03-31T14:40:21.568129Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5946b42a48f5cb4e6bad90d9cd795619153e85fd061bd3b3fb644a0e505bb57c), causation_id: EventId(0x9977eb667fb1b8f57508db209f2e6f829e0651fad1378ae01b2fb69108b66b91), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 27, ts: 32742380832793082548554724417929285, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:21.568115Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0e4e355122a1ae90dceed34abcde646fd2cb09776c1f830d75b0588b79abb647), causation_id: EventId(0x11815f5310e45fea279a8c22cd3d5235b50f4604fca335f9c0323bed7b0001c1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 27, ts: 32742380832765633793373044576231169, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:21.568772Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(110)` -[CIPHER] [cn4] 2026-03-31T14:40:21.568773Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(93)` -[CIPHER] [cn5] 2026-03-31T14:40:21.910412Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:21.940249Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:21.940827Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 -[CIPHER] [ag] 2026-03-31T14:40:27.601561Z  INFO e3_evm::ciphernode_registry_sol: Committee finalized on registry tx=0x75c55f4c6b7c4debb2bcb078aca3fe3a5d9827fbbff0694cdcb2067fb392b633 -[CIPHER] [cn5] 2026-03-31T14:40:29.689261Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:29.689505Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(110) in 8.120729125s -[CIPHER] [cn5] 2026-03-31T14:40:29.690271Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0df040fc728b6612a3f9e7b20713878fbf4f16afbebcce26f6bc558f33bad863), causation_id: EventId(0x5946b42a48f5cb4e6bad90d9cd795619153e85fd061bd3b3fb644a0e505bb57c), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 14, ts: 32742380982700511370067248206250053, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.691602Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 0 (signer: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc) -[CIPHER] [cn5] 2026-03-31T14:40:29.691845Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x1cfb291291fff0572b3a6519896ff5740b304293ab2df06ac10a7e4f53118c63), causation_id: EventId(0x0df040fc728b6612a3f9e7b20713878fbf4f16afbebcce26f6bc558f33bad863), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 15, ts: 32742380982737570878911330695446597, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.693398Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C0PkBfv, data_hash: [18, 93, 108, 54, 183, 76, 81, 161, 253, 177, 209, 204, 227, 253, 53, 218, 124, 217, 63, 155, 145, 95, 201, 118, 176, 210, 42, 131, 197, 91, 92, 89], public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), ctx: EventContext { id: EventId(0xcee96f346ec0a3d23e364d7f8f4d97e77983e1ac8dc3db0e9c4c00fd2e71acd0), causation_id: EventId(0x0df040fc728b6612a3f9e7b20713878fbf4f16afbebcce26f6bc558f33bad863), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 16, ts: 32742380982738290301930205367959621, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.693542Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 -[CIPHER] [cn5] 2026-03-31T14:40:29.693590Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn5] 2026-03-31T14:40:29.693595Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes -[CIPHER] [cn5] 2026-03-31T14:40:29.693604Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn5] 2026-03-31T14:40:29.693605Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 -[CIPHER] [cn5] 2026-03-31T14:40:29.693607Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 -[CIPHER] [cn5] 2026-03-31T14:40:29.693608Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.875µs -[CIPHER] [cn3] 2026-03-31T14:40:29.697777Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:29.695763Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29.693504Z }, value: }), ctx: EventContext { id: EventId(0x1ea44040c33621b3f4157fd7824107a474e6d604a01cb8d4ca66491c4fb943b3), causation_id: EventId(0x1cfb291291fff0572b3a6519896ff5740b304293ab2df06ac10a7e4f53118c63), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 28, ts: 32742380982773339115670253516030021, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.698011Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(204) in 8.131693708s -[CIPHER] [cn3] 2026-03-31T14:40:29.699258Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd40f8ede87e35ad948c9afc0aa2da0d3a2c803ace096d844484a16055cb281d8), causation_id: EventId(0x2bf272600091b26d6801c0bb3d0d24cb2256c57115a55e8674c65864c9058018), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 14, ts: 32742380982856884419580083103303521, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.700510Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 1 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) -[CIPHER] [cn3] 2026-03-31T14:40:29.704824Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x39cf625b361d37c8b69294943709a74d2a61697a1bffac3a7f1f134887632152), causation_id: EventId(0xd40f8ede87e35ad948c9afc0aa2da0d3a2c803ace096d844484a16055cb281d8), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 15, ts: 32742380982901894475119934409246561, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.705930Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [130, 195, 76, 115, 129, 2, 138, 195, 64, 33, 61, 199, 128, 253, 152, 238, 108, 32, 45, 203, 171, 84, 105, 222, 78, 118, 50, 133, 169, 106, 12, 36], public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), ctx: EventContext { id: EventId(0xc10e9e923000c4a6b8ed3367ea0b1f49481f6177d9fdc6ce09f9590a5d753230), causation_id: EventId(0xd40f8ede87e35ad948c9afc0aa2da0d3a2c803ace096d844484a16055cb281d8), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 16, ts: 32742380982902595451394735372207969, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.706023Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 -[CIPHER] [cn3] 2026-03-31T14:40:29.706066Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn3] 2026-03-31T14:40:29.706076Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn3] 2026-03-31T14:40:29.706078Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 -[CIPHER] [cn3] 2026-03-31T14:40:29.706083Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 7.25µs -[CIPHER] [cn3] 2026-03-31T14:40:29.706068Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-03-31T14:40:29.706077Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 -[CIPHER] [cn3] 2026-03-31T14:40:29.711107Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29.705996Z }, value: }), ctx: EventContext { id: EventId(0xdea2af7bf1b8501d114b0222a19b879b344076ae47b93cab69de29a443add730), causation_id: EventId(0x39cf625b361d37c8b69294943709a74d2a61697a1bffac3a7f1f134887632152), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 28, ts: 32742380983003554481710147748202337, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.719237Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), causation_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 29, ts: 32742380983245409743260553679439713, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:40:29.720464Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c } }, signature: }) } }), ctx: EventContext { id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), causation_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 17, ts: 32742380983268744874513796262233953, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.720420Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), causation_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 28, ts: 32742380983261716665021713866170113, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:40:29.721758Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc for key from party 0 -[CIPHER] [cn4] 2026-03-31T14:40:29.721912Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c } }, signature: }) } }), ctx: EventContext { id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), causation_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 14, ts: 32742380983292227579719629464542977, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.723119Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc for key from party 0 -[CIPHER] [cn3] 2026-03-31T14:40:29.758144Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key -[CIPHER] [cn4] 2026-03-31T14:40:29.759068Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key -[CIPHER] [cn3] 2026-03-31T14:40:29.761958Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xf8d0b48f8bebba37e55e899a37d3ca40c158ae37e68952874db0c35f1c3551bf), causation_id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 18, ts: 32742380983965183250272626673944417, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.763054Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C0PkBfv, data_hash: [18, 93, 108, 54, 183, 76, 81, 161, 253, 177, 209, 204, 227, 253, 53, 218, 124, 217, 63, 155, 145, 95, 201, 118, 176, 210, 42, 131, 197, 91, 92, 89], public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), ctx: EventContext { id: EventId(0xcee96f346ec0a3d23e364d7f8f4d97e77983e1ac8dc3db0e9c4c00fd2e71acd0), causation_id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 19, ts: 32742380983966677436542597147625313, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.763256Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn3] 2026-03-31T14:40:29.763259Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-03-31T14:40:29.763268Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn3] 2026-03-31T14:40:29.763270Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 -[CIPHER] [cn3] 2026-03-31T14:40:29.763271Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 -[CIPHER] [cn3] 2026-03-31T14:40:29.763273Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 5µs -[CIPHER] [cn4] 2026-03-31T14:40:29.764885Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xf8d0b48f8bebba37e55e899a37d3ca40c158ae37e68952874db0c35f1c3551bf), causation_id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 15, ts: 32742380983982117361332292985429761, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.765959Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C0PkBfv, data_hash: [18, 93, 108, 54, 183, 76, 81, 161, 253, 177, 209, 204, 227, 253, 53, 218, 124, 217, 63, 155, 145, 95, 201, 118, 176, 210, 42, 131, 197, 91, 92, 89], public_signals: 0x10dbb554ac2b8c62acf94877d662e0a3573e5064c354819355ea74b33b73f86c }), ctx: EventContext { id: EventId(0xcee96f346ec0a3d23e364d7f8f4d97e77983e1ac8dc3db0e9c4c00fd2e71acd0), causation_id: EventId(0xbd0d0eb27e3fa2d2af87072501dd13cda6e62de397cafccccefb02934c2e9834), origin_id: EventId(0x164054c4faf211339fd8fa5e80fe9e73570d4ba46120fa96d628ba0fe0b3a9c7), seq: 16, ts: 32742380983982947464815609915252481, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.766015Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn4] 2026-03-31T14:40:29.766022Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn4] 2026-03-31T14:40:29.766023Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 -[CIPHER] [cn4] 2026-03-31T14:40:29.766024Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 -[CIPHER] [cn4] 2026-03-31T14:40:29.766026Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.292µs -[CIPHER] [cn4] 2026-03-31T14:40:29.766017Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes -[CIPHER] [cn5] 2026-03-31T14:40:29.768533Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), causation_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 29, ts: 32742380984064998582455470029733957, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:40:29.768505Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), causation_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 29, ts: 32742380984122902912102844283363073, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:40:29.772940Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 } }, signature: }) } }), ctx: EventContext { id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), causation_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 17, ts: 32742380984176730511309928754978561, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.774189Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x90F79bf6EB2c4f870365E785982E1f101E93b906 for key from party 1 -[CIPHER] [cn5] 2026-03-31T14:40:29.776041Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 } }, signature: }) } }), ctx: EventContext { id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), causation_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 17, ts: 32742380984176988765726960717594693, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.777284Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x90F79bf6EB2c4f870365E785982E1f101E93b906 for key from party 1 -[CIPHER] [cn4] 2026-03-31T14:40:29.798561Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:29.798642Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(93) in 8.229869958s -[CIPHER] [cn5] 2026-03-31T14:40:29.811607Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key -[CIPHER] [cn4] 2026-03-31T14:40:29.811629Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key -[CIPHER] [cn5] 2026-03-31T14:40:29.813919Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x7493640f9e49dcd7e21d2771bc180af4bc32cf7736f5410f24dbd31fcc807fea), causation_id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 18, ts: 32742380984951290848220919146676293, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.814967Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [130, 195, 76, 115, 129, 2, 138, 195, 64, 33, 61, 199, 128, 253, 152, 238, 108, 32, 45, 203, 171, 84, 105, 222, 78, 118, 50, 133, 169, 106, 12, 36], public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), ctx: EventContext { id: EventId(0xc10e9e923000c4a6b8ed3367ea0b1f49481f6177d9fdc6ce09f9590a5d753230), causation_id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 19, ts: 32742380984952213185424604624257093, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.815039Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn5] 2026-03-31T14:40:29.815049Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn5] 2026-03-31T14:40:29.815042Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes -[CIPHER] [cn5] 2026-03-31T14:40:29.815051Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 -[CIPHER] [cn5] 2026-03-31T14:40:29.815052Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 -[CIPHER] [cn5] 2026-03-31T14:40:29.815053Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.333µs -[CIPHER] [cn4] 2026-03-31T14:40:29.816939Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3e92efae104a313dba761a0a333413dd84ccf6776ec594f7c78162597ce7de7a), causation_id: EventId(0x0e4e355122a1ae90dceed34abcde646fd2cb09776c1f830d75b0588b79abb647), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 18, ts: 32742380984951143274268329441369857, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.817872Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x7493640f9e49dcd7e21d2771bc180af4bc32cf7736f5410f24dbd31fcc807fea), causation_id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 19, ts: 32742380984951641336358319599263489, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.818902Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [130, 195, 76, 115, 129, 2, 138, 195, 64, 33, 61, 199, 128, 253, 152, 238, 108, 32, 45, 203, 171, 84, 105, 222, 78, 118, 50, 133, 169, 106, 12, 36], public_signals: 0x0dca7a77a7c3bfcc7674b86c1ccc9d0e9c8dfd247905d3d9b04c875592b7d013 }), ctx: EventContext { id: EventId(0xc10e9e923000c4a6b8ed3367ea0b1f49481f6177d9fdc6ce09f9590a5d753230), causation_id: EventId(0x21f7577d152a280a9e4a1ce2f2443cb011a060c5316c8a92274e9f26d84b0292), origin_id: EventId(0x1261b29dbd11d422f507108dedc9f334a7a39e3d1be3f50de58613fa0694047f), seq: 20, ts: 32742380984952323865889046852673281, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.819025Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 2 (signer: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65) -[CIPHER] [cn4] 2026-03-31T14:40:29.819093Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn4] 2026-03-31T14:40:29.819096Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes -[CIPHER] [cn4] 2026-03-31T14:40:29.819210Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn4] 2026-03-31T14:40:29.819211Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 -[CIPHER] [cn4] 2026-03-31T14:40:29.819212Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 -[CIPHER] [cn4] 2026-03-31T14:40:29.819214Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.292µs -[CIPHER] [cn4] 2026-03-31T14:40:29.822895Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x5710f35abc3f3e91e7b388fff2c7e76aa2ceab2e41bf95771ba894c88188f1db), causation_id: EventId(0x3e92efae104a313dba761a0a333413dd84ccf6776ec594f7c78162597ce7de7a), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 21, ts: 32742380985088073455527475443015425, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.823975Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C0PkBfv, data_hash: [146, 78, 116, 210, 59, 116, 60, 76, 189, 49, 156, 156, 52, 98, 31, 213, 54, 222, 129, 185, 77, 135, 244, 17, 247, 179, 15, 51, 228, 146, 223, 57], public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), ctx: EventContext { id: EventId(0x03a09f2dff296e582140c44b4a091b5f410bdbcfbfa5a482ca2c19883b1ceff2), causation_id: EventId(0x3e92efae104a313dba761a0a333413dd84ccf6776ec594f7c78162597ce7de7a), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 22, ts: 32742380985088811325290423825080065, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.824033Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 -[CIPHER] [cn4] 2026-03-31T14:40:29.824053Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn4] 2026-03-31T14:40:29.824055Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes -[CIPHER] [cn4] 2026-03-31T14:40:29.824061Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 -[CIPHER] [cn4] 2026-03-31T14:40:29.824062Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 -[CIPHER] [cn4] 2026-03-31T14:40:29.824060Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn4] 2026-03-31T14:40:29.824063Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! -[CIPHER] [cn4] 2026-03-31T14:40:29.824065Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.875µs -[CIPHER] [cn4] 2026-03-31T14:40:29.824069Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received -[CIPHER] [cn4] 2026-03-31T14:40:29.824144Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare -[CIPHER] [cn4] 2026-03-31T14:40:29.829890Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29.824011Z }, value: }), ctx: EventContext { id: EventId(0xbc2c576079be7a55d4b08112126861b5878cea62b6d151f274275c147cfcb744), causation_id: EventId(0x5710f35abc3f3e91e7b388fff2c7e76aa2ceab2e41bf95771ba894c88188f1db), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 30, ts: 32742380985180436303104539167956737, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.834041Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 81, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x60bf23503c31c074bd6964ea0a7e4944accca87c3b3336ce58302c6070133ee4), causation_id: EventId(0x5710f35abc3f3e91e7b388fff2c7e76aa2ceab2e41bf95771ba894c88188f1db), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 31, ts: 32742380985251013545930551912439553, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.834259Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(69)` -[CIPHER] [cn4] 2026-03-31T14:40:29.834262Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss -[CIPHER] [cn3] 2026-03-31T14:40:29.838901Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), causation_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 30, ts: 32742380985423232348602703343224673, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:40:29.838901Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:40:29Z }, value: }), ctx: EventContext { id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), causation_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 30, ts: 32742380985417606091660222901977157, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:40:29.841798Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 -[CIPHER] [cn4] 2026-03-31T14:40:29.842053Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... -[CIPHER] [cn3] 2026-03-31T14:40:29.841521Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f } }, signature: }) } }), ctx: EventContext { id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), causation_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 20, ts: 32742380985474864785265016378197857, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.841512Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f } }, signature: }) } }), ctx: EventContext { id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), causation_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 20, ts: 32742380985475602655027965732257861, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.842787Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 for key from party 2 -[CIPHER] [cn3] 2026-03-31T14:40:29.842787Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 for key from party 2 -[CIPHER] [cn4] 2026-03-31T14:40:29.845903Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(69) in 11.640458ms -[CIPHER] [cn4] 2026-03-31T14:40:29.846001Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 81, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x25d6eff14ecdff333bf5fcdce6622e73c8a63daed568b9b218205662eeab83ee), causation_id: EventId(0x60bf23503c31c074bd6964ea0a7e4944accca87c3b3336ce58302c6070133ee4), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 23, ts: 32742380985584124850413598995521281, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.847407Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss -[CIPHER] [cn4] 2026-03-31T14:40:29.847498Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare -[CIPHER] [cn4] 2026-03-31T14:40:29.847546Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7cfb9d36157d32f8ca2616b8059c0c1efd308fc7cb8a99af64baf6530f21b21f), causation_id: EventId(0x25d6eff14ecdff333bf5fcdce6622e73c8a63daed568b9b218205662eeab83ee), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 32, ts: 32742380985613307599538207506177793, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.847735Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(58)` -[CIPHER] [cn4] 2026-03-31T14:40:29.847738Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss -[CIPHER] [cn4] 2026-03-31T14:40:29.851789Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... -[CIPHER] [cn4] 2026-03-31T14:40:29.851801Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... -[CIPHER] [cn4] 2026-03-31T14:40:29.855208Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... -[CIPHER] [cn4] 2026-03-31T14:40:29.855428Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(58) in 7.689959ms -[CIPHER] [cn4] 2026-03-31T14:40:29.855508Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb5c856907d5f61615da63cbd1d2fbec9404b337bd4c9a4849797b56a2e2344fa), causation_id: EventId(0x7cfb9d36157d32f8ca2616b8059c0c1efd308fc7cb8a99af64baf6530f21b21f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 24, ts: 32742380985759830087715682474663681, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.856269Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss -[CIPHER] [cn4] 2026-03-31T14:40:29.856360Z  INFO e3_keyshare::threshold_keyshare: esi stored -[CIPHER] [cn5] 2026-03-31T14:40:29.874623Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key -[CIPHER] [cn3] 2026-03-31T14:40:29.874688Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key -[CIPHER] [cn4] 2026-03-31T14:40:29.874963Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) -[CIPHER] [cn5] 2026-03-31T14:40:29.874767Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xd4d523cac9853a220d0ff93e525c297efa2ecfeaed17c2528e59df8230d8227a), causation_id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 21, ts: 32742380986113712426025726541758533, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.875976Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C0PkBfv, data_hash: [146, 78, 116, 210, 59, 116, 60, 76, 189, 49, 156, 156, 52, 98, 31, 213, 54, 222, 129, 185, 77, 135, 244, 17, 247, 179, 15, 51, 228, 146, 223, 57], public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), ctx: EventContext { id: EventId(0x03a09f2dff296e582140c44b4a091b5f410bdbcfbfa5a482ca2c19883b1ceff2), causation_id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 22, ts: 32742380986114468742532748633374789, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.876054Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn5] 2026-03-31T14:40:29.876057Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes -[CIPHER] [cn5] 2026-03-31T14:40:29.876063Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn5] 2026-03-31T14:40:29.876065Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 -[CIPHER] [cn5] 2026-03-31T14:40:29.876066Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 -[CIPHER] [cn5] 2026-03-31T14:40:29.876067Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! -[CIPHER] [cn5] 2026-03-31T14:40:29.876070Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 6.667µs -[CIPHER] [cn5] 2026-03-31T14:40:29.876092Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received -[CIPHER] [cn5] 2026-03-31T14:40:29.876150Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare -[CIPHER] [cn3] 2026-03-31T14:40:29.876694Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xd4d523cac9853a220d0ff93e525c297efa2ecfeaed17c2528e59df8230d8227a), causation_id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 21, ts: 32742380986114911464390516690618209, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.877786Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C0PkBfv, data_hash: [146, 78, 116, 210, 59, 116, 60, 76, 189, 49, 156, 156, 52, 98, 31, 213, 54, 222, 129, 185, 77, 135, 244, 17, 247, 179, 15, 51, 228, 146, 223, 57], public_signals: 0x0286725650d5b590dde6a2c5247cf376e2c40ffc2c0eb5ccf6294aa70bae036f }), ctx: EventContext { id: EventId(0x03a09f2dff296e582140c44b4a091b5f410bdbcfbfa5a482ca2c19883b1ceff2), causation_id: EventId(0xbddf1391858307b54cfd10d3f23b77e8a1b94ab34da635e41781d73cf75306ca), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 22, ts: 32742380986115557100433096524924769, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.877840Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn3] 2026-03-31T14:40:29.877842Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-03-31T14:40:29.877847Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn3] 2026-03-31T14:40:29.877848Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 -[CIPHER] [cn3] 2026-03-31T14:40:29.877849Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 -[CIPHER] [cn3] 2026-03-31T14:40:29.877850Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! -[CIPHER] [cn3] 2026-03-31T14:40:29.877851Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.667µs -[CIPHER] [cn3] 2026-03-31T14:40:29.877931Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare -[CIPHER] [cn3] 2026-03-31T14:40:29.877866Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received -[CIPHER] [cn5] 2026-03-31T14:40:29.881248Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), causation_id: EventId(0xd4d523cac9853a220d0ff93e525c297efa2ecfeaed17c2528e59df8230d8227a), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 31, ts: 32742380986210963660782323297878085, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.881496Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(141)` -[CIPHER] [cn5] 2026-03-31T14:40:29.881531Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss -[CIPHER] [cn3] 2026-03-31T14:40:29.883901Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), causation_id: EventId(0xd4d523cac9853a220d0ff93e525c297efa2ecfeaed17c2528e59df8230d8227a), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 31, ts: 32742380986247229959631235304359777, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.884142Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(142)` -[CIPHER] [cn3] 2026-03-31T14:40:29.884147Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss -[CIPHER] [cn5] 2026-03-31T14:40:29.888802Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 -[CIPHER] [cn5] 2026-03-31T14:40:29.889027Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... -[CIPHER] [cn4] 2026-03-31T14:40:29.879938Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), causation_id: EventId(0xb5c856907d5f61615da63cbd1d2fbec9404b337bd4c9a4849797b56a2e2344fa), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 25, ts: 32742380986120021212498935179517697, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.890652Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof -[CIPHER] [cn4] 2026-03-31T14:40:29.890665Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof -[CIPHER] [cn4] 2026-03-31T14:40:29.890674Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof -[CIPHER] [cn4] 2026-03-31T14:40:29.890694Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:29.890743Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:29.890798Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping -[CIPHER] [cn3] 2026-03-31T14:40:29.891314Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 -[CIPHER] [cn3] 2026-03-31T14:40:29.891527Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... -[CIPHER] [cn5] 2026-03-31T14:40:29.892245Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(141) in 10.715ms -[CIPHER] [cn5] 2026-03-31T14:40:29.892832Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5c5f6c86cc60279005774d1504d339420f8ef7bfe9fc67b42c61ee669c64ff8f), causation_id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 23, ts: 32742380986439057651253741903609925, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.894222Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss -[CIPHER] [cn5] 2026-03-31T14:40:29.894311Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare -[CIPHER] [cn3] 2026-03-31T14:40:29.895921Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(142) in 11.774042ms -[CIPHER] [cn5] 2026-03-31T14:40:29.898876Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7fa97c9ceded56622805871c84ac93209064c1ff509161889559cd060ed26df8), causation_id: EventId(0x5c5f6c86cc60279005774d1504d339420f8ef7bfe9fc67b42c61ee669c64ff8f), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 32, ts: 32742380986476855029860772774871109, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.899078Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(14)` -[CIPHER] [cn5] 2026-03-31T14:40:29.899081Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss -[CIPHER] [cn3] 2026-03-31T14:40:29.898883Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa014d4486c3fbcdb967918a9e7ea4786f12ecc9d8a9ff180c3c7201545bad9e3), causation_id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 23, ts: 32742380986506720308516107566942049, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.900238Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss -[CIPHER] [cn3] 2026-03-31T14:40:29.900319Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare -[CIPHER] [cn3] 2026-03-31T14:40:29.901818Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5ef85576c0d096697276cd0d72f3f53ba81e70f59c79a058c2ce80bdff0dcb2d), causation_id: EventId(0xa014d4486c3fbcdb967918a9e7ea4786f12ecc9d8a9ff180c3c7201545bad9e3), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 32, ts: 32742380986587664621511545079433057, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.902003Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(224)` -[CIPHER] [cn3] 2026-03-31T14:40:29.902009Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss -[CIPHER] [cn5] 2026-03-31T14:40:29.902631Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... -[CIPHER] [cn5] 2026-03-31T14:40:29.902640Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... -[CIPHER] [cn3] 2026-03-31T14:40:29.905761Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... -[CIPHER] [cn3] 2026-03-31T14:40:29.905772Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... -[CIPHER] [cn5] 2026-03-31T14:40:29.906488Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... -[CIPHER] [cn5] 2026-03-31T14:40:29.906701Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(14) in 7.619542ms -[CIPHER] [cn5] 2026-03-31T14:40:29.907847Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x58d0347e6884f1fc711a6a66b3f2b4f79aab8dae2f859c0678cd1a0dbdd0190e), causation_id: EventId(0x7fa97c9ceded56622805871c84ac93209064c1ff509161889559cd060ed26df8), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 24, ts: 32742380986705742230327360891322437, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.908592Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss -[CIPHER] [cn4] 2026-03-31T14:40:29.908051Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xee2d258467d3c723c70d1cff16c5e250fd776cfbca7e3f96f80ef28410348abd), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 33, ts: 32742380986409376840039143206166273, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.908697Z  INFO e3_keyshare::threshold_keyshare: esi stored -[CIPHER] [cn3] 2026-03-31T14:40:29.909205Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... -[CIPHER] [cn3] 2026-03-31T14:40:29.909414Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(224) in 7.404875ms -[CIPHER] [cn4] 2026-03-31T14:40:29.908613Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x44a755ae89f89cfce475ca7592d80b96bba4aebda6f9d591a160604d454e01ef), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 34, ts: 32742380986409561307479880301682433, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.909469Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x32d58fd5d3b5a1c9c84865296896f7dd4dc7725e2693e2f499cda9f27247f07d), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 35, ts: 32742380986409727328176543687646977, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.910311Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb76c8227c159cd9970f5e1e91ce50d4e27d43c2c743e1323de93a0f831b88a23), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 36, ts: 32742380986410243837010607555092225, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.910683Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x99334fd476ea35560d0289a10b55e6fbdcefb3022e3bc27daf73f7d2e5aabf03), causation_id: EventId(0x5ef85576c0d096697276cd0d72f3f53ba81e70f59c79a058c2ce80bdff0dcb2d), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 24, ts: 32742380986755640673046744256448353, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.911445Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss -[CIPHER] [cn3] 2026-03-31T14:40:29.911532Z  INFO e3_keyshare::threshold_keyshare: esi stored -[CIPHER] [cn4] 2026-03-31T14:40:29.911015Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x528c3ee5a47735ff7a8ae10fb6c571dd18f68c3aca906612a9f78a0f756beff7), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 37, ts: 32742380986410372964219123521953537, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.911720Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4d400872dd81a0f9e2426632d7f7698488e3386f3a9ab996631bbb5a359dd412), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 38, ts: 32742380986410483644683565779263233, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.912416Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x087f42e26f40759b203e10a7b874ad6ab9385b8dd6373de51afb69b0bcb2cf90), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 39, ts: 32742380986410612771892081746124545, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.913161Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x33fedad713253244ece0f091951187749506da193fa0151de534f7b1be9a00c4), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 40, ts: 32742380986410741899100597712985857, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.913857Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x85a6fe7332113c9521011e293ff126ca4376ca9ed3ea1b8005b1f477811e3b92), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 41, ts: 32742380986410871026309113679847169, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.914553Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7cfff2964618ffb7f9838d5d78698890d23907939b60fa6c6b101b2a3a0fe86e), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 42, ts: 32742380986411018600261703356260097, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.915241Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x34682c8b1d9df5ab9e5c37c66c9cab0b69aede8b0cd1fe466bbae2100ccb335d), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 43, ts: 32742380986411147727470219323121409, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.915923Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc85d41f636836272d95fd671cfba4ca820632775ba06a1e06512111ae3e8ada2), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 44, ts: 32742380986411424428631324966395649, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.916617Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x977b76a84e60911c0440ef673f667827ed945ef6aa316608e06963f936dafa72), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 45, ts: 32742380986411553555839840933256961, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.917342Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x780981cc9706f5867b020631dadedac1122a5d8da4faeabb5e6fce1b603b7dc7), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 46, ts: 32742380986411682683048356900118273, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.918081Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xab584d7aa197b5cc9bd381ad09e5ac8a0e9227af9d56aaddef355e0580502468), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 47, ts: 32742380986411830257000946576531201, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.918793Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 26, ts: 32742380986412070064673904800702209, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:29.918847Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete -[CIPHER] [cn4] 2026-03-31T14:40:29.918986Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(169)` -[CIPHER] [cn1] 2026-03-31T14:40:29.919636Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 12, ts: 32742380986937599356589813856893244, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-03-31T14:40:29.919640Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 12, ts: 32742380986940661516106051250837733, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:40:29.919710Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 12, ts: 32742380986939739178902362807218525, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:40:29.919883Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 2 — buffering until GeneratingC5Proof -[CIPHER] [cn5] 2026-03-31T14:40:29.924598Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) -[CIPHER] [cn3] 2026-03-31T14:40:29.927706Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) -[CIPHER] [cn5] 2026-03-31T14:40:29.927209Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), causation_id: EventId(0x58d0347e6884f1fc711a6a66b3f2b4f79aab8dae2f859c0678cd1a0dbdd0190e), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 25, ts: 32742380987035625354597508802871365, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.937858Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof -[CIPHER] [cn5] 2026-03-31T14:40:29.937871Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof -[CIPHER] [cn5] 2026-03-31T14:40:29.937880Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof -[CIPHER] [cn5] 2026-03-31T14:40:29.937890Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:29.937934Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:29.937978Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping -[CIPHER] [cn3] 2026-03-31T14:40:29.929934Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), causation_id: EventId(0x99334fd476ea35560d0289a10b55e6fbdcefb3022e3bc27daf73f7d2e5aabf03), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 25, ts: 32742380987092957835178597117298529, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.940304Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof -[CIPHER] [cn3] 2026-03-31T14:40:29.940314Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof -[CIPHER] [cn3] 2026-03-31T14:40:29.940323Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof -[CIPHER] [cn3] 2026-03-31T14:40:29.940336Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:29.940378Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:29.940424Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping -[CIPHER] [cn5] 2026-03-31T14:40:29.945950Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa168511c2c49f54690c2725cad5230b976247daa4992d6b42678f1ddb6007be0), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 33, ts: 32742380987280192287526750038196293, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.946513Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbd090be183df3179d14a7e81571090dd9efb28e11a21972b1edacfabbd149b59), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 34, ts: 32742380987280358308223413424160837, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.947328Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xf179d879e498ef6476028ed368eaded401f290b28b75d1bc419e8bbcbfd0ac20), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 35, ts: 32742380987280524328920076810125381, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.948145Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x89609619eba554485a5854381b9078f2929c9df52be9e40bfd8443f92839f455), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 36, ts: 32742380987280745689848961324744773, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.948772Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa90b76c298cfc5f63e06da7910f6f303c9ed84644f08101c1e1024aeb91dd376), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 33, ts: 32742380987325276130042895210350433, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.948852Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfaa2572c8fed99d96c24ad11ab4147c3470d80cbc58b6fa1f37c26fa9d964c1a), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 37, ts: 32742380987280874817057477291606085, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.949315Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa2c0ca869eca035ca6bc8fea61655f7bcf1081aaeda9a7e3dac9ae9f08a5df3b), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 34, ts: 32742380987325423703995484886763361, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.949534Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x592acc3d1d7610d88552ea6656deb887b1459f55c8c473ced8fd530f5347e608), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 38, ts: 32742380987281003944265993258467397, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.950227Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdc765c3297f592f96923bed6769e840a416eb9438c201deec6793c5e814edcfc), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 39, ts: 32742380987281133071474509225328709, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.950153Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x54123daca94e8e7c66f2e4f14236d438e45af93c6f23fad2486de783f8aa4458), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 35, ts: 32742380987325589724692148272727905, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.950899Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb8ef7819394a05c265657a54ead13c65a84deecba8c1f5e13aa932f1682c2697), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 40, ts: 32742380987281262198683025192190021, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.950982Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3341c3f6dfbf194f36faee6a527f93a93ed5d1e6429a23f7a15da6b1beb87915), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 36, ts: 32742380987325829532365106496898913, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.951587Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x6aa615e1c3f23854486dfa7200fae7acb128460bd2bf2323f44f0ac47e66af5c), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 41, ts: 32742380987281372879147467449499717, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.951672Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9500870ec8aba2d3363360f51401116393d6074445b3d3043d536a110d871c53), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 37, ts: 32742380987325958659573622463760225, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.952264Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1a444f9591bf0f8e0b8ec2ae28b26b249c3b74f6504575ccff0539801c58a2e5), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 42, ts: 32742380987281538899844130835464261, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.952348Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1da239908abf8fd3be3b2a20249b1c1b33ff077ec8af136bb59a14b3de29f309), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 38, ts: 32742380987326087786782138430621537, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.952941Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1ec8c2b0863475a4e9c42e43cc581afb504a6277fecc2024d4a6d16be2bf8376), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 43, ts: 32742380987281668027052646802325573, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.953026Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x87996345c72d662511c976e7803ddb94a12a27fd5987248cbbc82b6ee7cd8b56), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 39, ts: 32742380987326198467246580687931233, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.953622Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0aebc30dcd1bb32c678398d6144fa59632fd53757c2dcfbf5bc3ce66ef147621), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 44, ts: 32742380987281778707517089059635269, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.953701Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb33596209db255a8d65c3f35b54ae8b1c47908ec0941cdb893e3c36a63d768fe), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 40, ts: 32742380987326346041199170364344161, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.954293Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4ec43d763cc1a474edeb0fd1c56097314918e4dbfaf9b9c9ace2de3aa2420a55), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 45, ts: 32742380987281907834725605026496581, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.954375Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x32a5d51489cf21df6fe50e1f61b9278475ae35e4ba4d9ab0a0a876aad964e9ba), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 41, ts: 32742380987326456721663612621653857, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.954973Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbf6cae0c89acd0b4fb072cc4bc4a3776d8f64046d22625b9e0aed99a8ab685a2), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 46, ts: 32742380987282018515190047283806277, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.955049Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfe61e3cbd8d57d40f5888def0059b95bb790c4789fb3d3948915fefa1671144d), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 42, ts: 32742380987326622742360276007618401, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.955725Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7c9057e3fbc6a327e92fe5862172c2b3656677b7a8bd528bf3c3541cfc93d6f0), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 43, ts: 32742380987326751869568791974479713, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.955701Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x44266a745387f51eecf4473ff66b53362367704c9e823108c6b4b9566d633ba1), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 47, ts: 32742380987282147642398563250667589, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.956403Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 26, ts: 32742380987282369003327447765286981, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:29.956455Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete -[CIPHER] [cn5] 2026-03-31T14:40:29.956584Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(148)` -[CIPHER] [cn1] 2026-03-31T14:40:29.956844Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 13, ts: 32742380987629831874699838490835260, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:40:29.956939Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 27, ts: 32742380987631307614225737643655237, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:40:29.956402Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4d96fc225ddc902755845c36c88c3f7a5bcbae682587b773b3381d1ce66a8acc), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 44, ts: 32742380987326862550033234231789409, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.957078Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x08f82429a3b12725432854c44ef490e2ef0155a51ee5b16e606a33baa3635268), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 45, ts: 32742380987326991677241750198650721, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.957815Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x39696975ff35f2dbea6f63528a6287163765a8d1aedabfba56d946d614296ad9), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 46, ts: 32742380987327102357706192455960417, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.958531Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x698e4408f109b10eef63b789a9de9d7f2089e1b1d0e287282bcba817ca7d957e), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 47, ts: 32742380987327286825146929551476577, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.959238Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 26, ts: 32742380987327471292587666646992737, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:29.959287Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete -[CIPHER] [cn3] 2026-03-31T14:40:29.959391Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(74)` -[CIPHER] [cn5] 2026-03-31T14:40:29.959826Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 28, ts: 32742380987682626456238797616250949, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-03-31T14:40:29.962991Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 14, ts: 32742380987685504148314293917612348, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:40:29.963031Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 27, ts: 32742380987640660113471108357431041, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:40:29.965961Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 13, ts: 32742380987636417362334151443099997, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:40:29.966024Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 0 — buffering until GeneratingC5Proof -[CIPHER] [cn3] 2026-03-31T14:40:29.969028Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 27, ts: 32742380987689949813636059336247137, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:40:29.969066Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 28, ts: 32742380987690042047356427884005217, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:40:29.969078Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 28, ts: 32742380987754660991846633386417921, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-03-31T14:40:29.974900Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 13, ts: 32742380987636583383030817795102949, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-03-31T14:40:29.976695Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 14, ts: 32742380987986923946478709599394021, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:40:29.976703Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 14, ts: 32742380987809632289186284132774237, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:40:29.976780Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 1 — buffering until GeneratingC5Proof -[CIPHER] [cn4] 2026-03-31T14:40:31.054421Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:31.069544Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:31.069752Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:38.180233Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:38.180403Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(169) in 8.261425125s -[CIPHER] [cn4] 2026-03-31T14:40:38.180778Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x694bb7fbb38bc1a96e07194be27c55ae873affddb27476fbbf0eebdb48ab71a9), causation_id: EventId(0xee2d258467d3c723c70d1cff16c5e250fd776cfbca7e3f96f80ef28410348abd), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 29, ts: 32742381139328826927395110001450753, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:38.181757Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) -[CIPHER] [cn4] 2026-03-31T14:40:38.190446Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(171)` -[CIPHER] [cn3] 2026-03-31T14:40:38.651490Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:38.651655Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(74) in 8.692273875s -[CIPHER] [cn3] 2026-03-31T14:40:38.652075Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x498649a538f48afdf0aef3b25e863c48cbed2184be02a8b0644eecba46cac103), causation_id: EventId(0xa90b76c298cfc5f63e06da7910f6f303c9ed84644f08101c1e1024aeb91dd376), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 29, ts: 32742381148021855072130735257388897, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:38.653073Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) -[CIPHER] [cn3] 2026-03-31T14:40:38.661695Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(31)` -[CIPHER] [cn5] 2026-03-31T14:40:38.755628Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:38.755728Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(148) in 8.799154958s -[CIPHER] [cn5] 2026-03-31T14:40:38.755843Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(79)` -[CIPHER] [cn5] 2026-03-31T14:40:38.756100Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xafc093852e768758c7053858c7a99be59607f49b1b98df254cc14ea2894c7249), causation_id: EventId(0xa168511c2c49f54690c2725cad5230b976247daa4992d6b42678f1ddb6007be0), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 29, ts: 32742381149942124236715753133506629, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:38.757056Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) -[CIPHER] [cn4] 2026-03-31T14:40:39.834969Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:40.475107Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:40.505342Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:47.912045Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:47.912232Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(171) in 9.721784459s -[CIPHER] [cn4] 2026-03-31T14:40:47.912517Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(245)` -[CIPHER] [cn4] 2026-03-31T14:40:47.912684Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x36b8e588aab167306e28a543f17e135e61b44d8434518739f62a39b86035f211), causation_id: EventId(0xab584d7aa197b5cc9bd381ad09e5ac8a0e9227af9d56aaddef355e0580502468), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 30, ts: 32742381318849367412755788285484801, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:47.914599Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) -[CIPHER] [cn3] 2026-03-31T14:40:48.778153Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:48.778326Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(31) in 10.116632666s -[CIPHER] [cn3] 2026-03-31T14:40:48.778633Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(119)` -[CIPHER] [cn3] 2026-03-31T14:40:48.778670Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5338e7ff9c4841b076a9f4f66f93e28ba901d15014334b5a412f4ecd96f97be0), causation_id: EventId(0x698e4408f109b10eef63b789a9de9d7f2089e1b1d0e287282bcba817ca7d957e), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 30, ts: 32742381334825981774531187739690849, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:48.780570Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) -[CIPHER] [cn5] 2026-03-31T14:40:49.089955Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:49.090046Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(79) in 10.334213958s -[CIPHER] [cn5] 2026-03-31T14:40:49.090157Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(204)` -[CIPHER] [cn5] 2026-03-31T14:40:49.090314Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xffdb3a8762ba14e281bef9fc4950dc7984ca547602855bf711ff7b65a52798d7), causation_id: EventId(0x44266a745387f51eecf4473ff66b53362367704c9e823108c6b4b9566d633ba1), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 30, ts: 32742381340576385304628667236941893, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:49.092193Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) -[CIPHER] [cn4] 2026-03-31T14:40:49.782060Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:50.490140Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:50.775309Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:57.515826Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:40:57.516032Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(245) in 9.60352175s -[CIPHER] [cn4] 2026-03-31T14:40:57.516399Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(92)` -[CIPHER] [cn4] 2026-03-31T14:40:57.516505Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x2afdff2371f39409d85ea78c92866943769a601f71cb1699a9cb5ebe7a5b94f8), causation_id: EventId(0x780981cc9706f5867b020631dadedac1122a5d8da4faeabb5e6fce1b603b7dc7), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 31, ts: 32742381496008281934823874933432065, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:40:57.518494Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) -[CIPHER] [cn3] 2026-03-31T14:40:59.061788Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:40:59.061967Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(119) in 10.283343625s -[CIPHER] [cn3] 2026-03-31T14:40:59.062396Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(213)` -[CIPHER] [cn3] 2026-03-31T14:40:59.062435Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe47c0a455fbe48b9c0f7dcccbcf5a5066fa6ec0fcce1363fd17d413bbea688cc), causation_id: EventId(0x39696975ff35f2dbea6f63528a6287163765a8d1aedabfba56d946d614296ad9), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 31, ts: 32742381524525638553949607410501473, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:40:59.064348Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) -[CIPHER] [cn5] 2026-03-31T14:40:59.190723Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:40:59.190919Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(204) in 10.10077375s -[CIPHER] [cn5] 2026-03-31T14:40:59.191593Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(73)` -[CIPHER] [cn5] 2026-03-31T14:40:59.191789Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x965ff09ae065f25bf433a38a452a5a7c65b76c0ce7a4bc8d241a6e387fef9146), causation_id: EventId(0xbf6cae0c89acd0b4fb072cc4bc4a3776d8f64046d22625b9e0aed99a8ab685a2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 31, ts: 32742381526905065625273329735893061, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:40:59.193663Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) -[CIPHER] [cn4] 2026-03-31T14:40:59.347981Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:00.602255Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:41:00.772776Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:07.094739Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:07.095410Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(92) in 9.579018458s -[CIPHER] [cn4] 2026-03-31T14:41:07.095496Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(252)` -[CIPHER] [cn4] 2026-03-31T14:41:07.095737Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8f8e1ce2e94f315956d53872a8324658221ca7db9f46548e9b023a30f8caf8f2), causation_id: EventId(0x977b76a84e60911c0440ef673f667827ed945ef6aa316608e06963f936dafa72), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 32, ts: 32742381672716597839403458364055297, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:41:07.097642Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) -[CIPHER] [cn3] 2026-03-31T14:41:08.940078Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:08.940221Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(213) in 9.877834375s -[CIPHER] [cn3] 2026-03-31T14:41:08.940728Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(175)` -[CIPHER] [cn3] 2026-03-31T14:41:08.940764Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7682266d2053d8c107ba0d276acc8c187a6fc68152e2a00f8dfba65748d9008d), causation_id: EventId(0x08f82429a3b12725432854c44ef490e2ef0155a51ee5b16e606a33baa3635268), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 32, ts: 32742381706747243540303206789908321, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:41:08.942739Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) -[CIPHER] [cn5] 2026-03-31T14:41:09.002758Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:41:09.002868Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(73) in 9.811284709s -[CIPHER] [cn5] 2026-03-31T14:41:09.002987Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(53)` -[CIPHER] [cn5] 2026-03-31T14:41:09.003209Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5c62ce60e917f8a0cc94983b9cd07c79df33f2d43c4d3c748cb3848aa03302f3), causation_id: EventId(0x4ec43d763cc1a474edeb0fd1c56097314918e4dbfaf9b9c9ace2de3aa2420a55), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 32, ts: 32742381707903448565355175038091333, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:41:09.005184Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) -[CIPHER] [cn4] 2026-03-31T14:41:09.103477Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:10.469456Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:41:10.488022Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:16.611410Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:16.611588Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(252) in 9.51610075s -[CIPHER] [cn4] 2026-03-31T14:41:16.611876Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(103)` -[CIPHER] [cn4] 2026-03-31T14:41:16.611896Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc5585267f24107e05ea2d260640d0775608416e7e381b4d381bbb4f6540c7bf3), causation_id: EventId(0xc85d41f636836272d95fd671cfba4ca820632775ba06a1e06512111ae3e8ada2), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 33, ts: 32742381848259263985965335228063489, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:41:16.616002Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) -[CIPHER] [cn5] 2026-03-31T14:41:18.531279Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:41:18.532122Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(53) in 9.529142708s -[CIPHER] [cn5] 2026-03-31T14:41:18.532656Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(209)` -[CIPHER] [cn5] 2026-03-31T14:41:18.532402Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe0b0f47020c7554393ddae5861541da216df9507436875d145be977de2286eeb), causation_id: EventId(0x0aebc30dcd1bb32c678398d6144fa59632fd53757c2dcfbf5bc3ce66ef147621), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 33, ts: 32742381883686752488358593002930245, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:41:18.536540Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) -[CIPHER] [cn4] 2026-03-31T14:41:18.670060Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:18.682758Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:18.683334Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(175) in 9.742614s -[CIPHER] [cn3] 2026-03-31T14:41:18.683426Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(6)` -[CIPHER] [cn3] 2026-03-31T14:41:18.683521Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x70dc93440811b30434dd94522b62de63c9dd1b3bd62a31f0325ae80a93da2867), causation_id: EventId(0x4d96fc225ddc902755845c36c88c3f7a5bcbae682587b773b3381d1ce66a8acc), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 33, ts: 32742381886476121553232360749893473, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:41:18.685519Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) -[CIPHER] [cn5] 2026-03-31T14:41:20.171553Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:20.261135Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:27.030950Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:27.031098Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(103) in 10.41923125s -[CIPHER] [cn4] 2026-03-31T14:41:27.031429Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(36)` -[CIPHER] [cn4] 2026-03-31T14:41:27.031520Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x591d8e230fe70d74fe0d5da98be8a73dbd24fcd700084c5a90fd528b2f813b73), causation_id: EventId(0x34682c8b1d9df5ab9e5c37c66c9cab0b69aede8b0cd1fe466bbae2100ccb335d), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 34, ts: 32742382040465003181517566033665793, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:41:27.033416Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) -[CIPHER] [cn5] 2026-03-31T14:41:29.195808Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:41:29.196817Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(209) in 10.664168959s -[CIPHER] [cn5] 2026-03-31T14:41:29.197072Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(199)` -[CIPHER] [cn5] 2026-03-31T14:41:29.197326Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdf4f1569a8cf0ccf028a06158ad5ff6b6bb2ef571d3bdc8ff84e9d17f9d678e3), causation_id: EventId(0x1ec8c2b0863475a4e9c42e43cc581afb504a6277fecc2024d4a6d16be2bf8376), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 34, ts: 32742382080415633330784405864775749, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:41:29.199293Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) -[CIPHER] [cn4] 2026-03-31T14:41:29.411639Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:29.569701Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:29.570494Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(6) in 10.887077s -[CIPHER] [cn3] 2026-03-31T14:41:29.570587Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(238)` -[CIPHER] [cn3] 2026-03-31T14:41:29.570877Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5c34bdbfc7667b41e4e9b46030f358a33cbbb881bf5def6d128a43f8af745d9d), causation_id: EventId(0x7c9057e3fbc6a327e92fe5862172c2b3656677b7a8bd528bf3c3541cfc93d6f0), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 34, ts: 32742382087308849549736337559750497, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:41:29.572786Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) -[CIPHER] [cn5] 2026-03-31T14:41:30.780028Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:30.995603Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:37.253688Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:37.253836Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(36) in 10.222416583s -[CIPHER] [cn4] 2026-03-31T14:41:37.254167Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(0)` -[CIPHER] [cn4] 2026-03-31T14:41:37.254231Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe3f9bdb0078d1dcfcfa51985c8fc9718d65c8eff406fdbf2100fda7ea9ce139f), causation_id: EventId(0x7cfff2964618ffb7f9838d5d78698890d23907939b60fa6c6b101b2a3a0fe86e), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 35, ts: 32742382229041271693591147720613633, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:41:37.257236Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) -[CIPHER] [cn5] 2026-03-31T14:41:38.979616Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:41:38.979781Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(199) in 9.782718875s -[CIPHER] [cn5] 2026-03-31T14:41:38.980056Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(243)` -[CIPHER] [cn5] 2026-03-31T14:41:38.980261Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb8f2b659702be4d9c591911781906f15136f3101b2bc06983cf15c29a7e9ea50), causation_id: EventId(0x1a444f9591bf0f8e0b8ec2ae28b26b249c3b74f6504575ccff0539801c58a2e5), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 35, ts: 32742382260879374287377927232487493, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:41:38.982137Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) -[CIPHER] [cn4] 2026-03-31T14:41:39.388047Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:39.415625Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:39.415702Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(238) in 9.845120333s -[CIPHER] [cn3] 2026-03-31T14:41:39.415789Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(74)` -[CIPHER] [cn3] 2026-03-31T14:41:39.416089Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xcbaf02985f19ec34debf4db10fd3f5f04da2fd60a8396e4b5e4d6b244dfef4b1), causation_id: EventId(0xfe61e3cbd8d57d40f5888def0059b95bb790c4789fb3d3948915fefa1671144d), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 35, ts: 32742382268920900324918278515558241, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:41:39.428297Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) -[CIPHER] [cn5] 2026-03-31T14:41:40.410960Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:40.845169Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:47.061401Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:47.061550Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(0) in 9.807391958s -[CIPHER] [cn4] 2026-03-31T14:41:47.062081Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(179)` -[CIPHER] [cn4] 2026-03-31T14:41:47.062116Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x20d4e3ebb2cbf557bb6181d269678318c4174841b9f73d6823ff73877f18de8e), causation_id: EventId(0x85a6fe7332113c9521011e293ff126ca4376ca9ed3ea1b8005b1f477811e3b92), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 36, ts: 32742382409962547243444887097057025, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:41:47.063997Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) -[CIPHER] [cn5] 2026-03-31T14:41:49.113607Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:41:49.113758Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(243) in 10.133711667s -[CIPHER] [cn5] 2026-03-31T14:41:49.114435Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(159)` -[CIPHER] [cn5] 2026-03-31T14:41:49.114231Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa1f8bd77e4825741376fd349d8968dcd903103eba36c69459e88a6b34862fcb2), causation_id: EventId(0x6aa615e1c3f23854486dfa7200fae7acb128460bd2bf2323f44f0ac47e66af5c), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 36, ts: 32742382447818568049886081051721797, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:41:49.116130Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) -[CIPHER] [cn4] 2026-03-31T14:41:49.292867Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:49.452102Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:49.452249Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(74) in 10.036467042s -[CIPHER] [cn3] 2026-03-31T14:41:49.452702Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(110)` -[CIPHER] [cn3] 2026-03-31T14:41:49.452737Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xff5a313a3bc5b4731e5cec89c6fa38807043ab8fc0d536e83c84f954580041f2), causation_id: EventId(0x32a5d51489cf21df6fe50e1f61b9278475ae35e4ba4d9ab0a0a876aad964e9ba), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 36, ts: 32742382454062717131860468463535969, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:41:49.454623Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) -[CIPHER] [cn5] 2026-03-31T14:41:50.577030Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:50.837931Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:56.799109Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:41:56.799716Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(179) in 9.737644042s -[CIPHER] [cn4] 2026-03-31T14:41:56.800367Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(186)` -[CIPHER] [cn4] 2026-03-31T14:41:56.799953Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xce5135e10d9c52ba2fc1600fa0958870bdf292e14ed38d39a718d5bd46eedfee), causation_id: EventId(0x33fedad713253244ece0f091951187749506da193fa0151de534f7b1be9a00c4), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 37, ts: 32742382589599228429493640718065409, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:41:56.804003Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) -[CIPHER] [cn5] 2026-03-31T14:41:58.632733Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:41:58.632893Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(159) in 9.518465958s -[CIPHER] [cn5] 2026-03-31T14:41:58.634160Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(8)` -[CIPHER] [cn5] 2026-03-31T14:41:58.633144Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd39a067ea25d77f1eaf2cd08a999d05411b30cc535bd543561e57737ae4f8f27), causation_id: EventId(0xb8ef7819394a05c265657a54ead13c65a84deecba8c1f5e13aa932f1682c2697), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 37, ts: 32742382623415246263095779482861637, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:41:58.637233Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) -[CIPHER] [cn3] 2026-03-31T14:41:58.822286Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:41:58.822431Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(110) in 9.369737917s -[CIPHER] [cn3] 2026-03-31T14:41:58.826142Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(186)` -[CIPHER] [cn3] 2026-03-31T14:41:58.822726Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe186d3e9d8da4881d327cecf95b64f71f81bf5933f7b9253489b4ced6f43efac), causation_id: EventId(0xb33596209db255a8d65c3f35b54ae8b1c47908ec0941cdb893e3c36a63d768fe), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 37, ts: 32742382626912047963196308534298465, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:41:58.826875Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) -[CIPHER] [cn4] 2026-03-31T14:41:58.912271Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:42:00.071616Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:00.294810Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:42:06.323753Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:42:06.323907Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(186) in 9.523549042s -[CIPHER] [cn4] 2026-03-31T14:42:06.325142Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(167)` -[CIPHER] [cn4] 2026-03-31T14:42:06.324146Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd1037c42945ad3f9f9dee0f48cb94fc652346ca3235519926c469065f556be6e), causation_id: EventId(0x087f42e26f40759b203e10a7b874ad6ab9385b8dd6373de51afb69b0bcb2cf90), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 38, ts: 32742382765289413188412972866346753, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:42:06.328238Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) -[CIPHER] [cn5] 2026-03-31T14:42:07.863215Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:42:07.863747Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(8) in 9.229592208s -[CIPHER] [cn5] 2026-03-31T14:42:07.863974Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x05423ca28b6c92944af13728c53c76eb4d65f46a2cacebb52db2d7041085d67e), causation_id: EventId(0xdc765c3297f592f96923bed6769e840a416eb9438c201deec6793c5e814edcfc), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 38, ts: 32742382793694466029617962565173317, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:42:07.868037Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) -[CIPHER] [cn5] 2026-03-31T14:42:07.873787Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(54)` -[CIPHER] [cn4] 2026-03-31T14:42:08.210697Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:08.230432Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:08.230581Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(186) in 9.404447875s -[CIPHER] [cn3] 2026-03-31T14:42:08.230912Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdf4cc2530ae3392f1cbe75563ac114958fb9abd5efd97d1bca2b1c3beda7ed08), causation_id: EventId(0x87996345c72d662511c976e7803ddb94a12a27fd5987248cbbc82b6ee7cd8b56), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 38, ts: 32742382800462004581195711084988257, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:42:08.234974Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) -[CIPHER] [cn3] 2026-03-31T14:42:08.245924Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(216)` -[CIPHER] [cn5] 2026-03-31T14:42:09.235848Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:09.649722Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:42:15.449523Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:42:15.449673Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(167) in 9.124538833s -[CIPHER] [cn4] 2026-03-31T14:42:15.451411Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(47)` -[CIPHER] [cn4] 2026-03-31T14:42:15.449946Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35824d89b51f7ce7f80669141d6bfdf0f03dd2a301927c846b5872cab9ddbe9f), causation_id: EventId(0x4d400872dd81a0f9e2426632d7f7698488e3386f3a9ab996631bbb5a359dd412), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 39, ts: 32742382933630396661622345941262081, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:42:15.454005Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) -[CIPHER] [cn5] 2026-03-31T14:42:17.191131Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:42:17.191278Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(54) in 9.317490833s -[CIPHER] [cn5] 2026-03-31T14:42:17.192445Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(72)` -[CIPHER] [cn5] 2026-03-31T14:42:17.191537Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x754043c8c229328b5b557333ee4419e29d25c52b9aa14eb5d916328fc79e0214), causation_id: EventId(0x592acc3d1d7610d88552ea6656deb887b1459f55c8c473ced8fd530f5347e608), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 39, ts: 32742382965757375267603417031442501, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:42:17.195595Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) -[CIPHER] [cn4] 2026-03-31T14:42:17.236437Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:17.868450Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:17.868763Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(216) in 9.622843666s -[CIPHER] [cn3] 2026-03-31T14:42:17.868939Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(163)` -[CIPHER] [cn3] 2026-03-31T14:42:17.869130Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x72382ead121a6391c047fe4be1872b653942f56a49933170e9774c2240520a87), causation_id: EventId(0x1da239908abf8fd3be3b2a20249b1c1b33ff077ec8af136bb59a14b3de29f309), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 39, ts: 32742382978256022054977543885522785, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:42:17.871702Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) -[CIPHER] [cn5] 2026-03-31T14:42:18.639762Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:19.355404Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:42:24.507539Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:42:24.507740Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(47) in 9.056334042s -[CIPHER] [cn4] 2026-03-31T14:42:24.508039Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(170)` -[CIPHER] [cn4] 2026-03-31T14:42:24.508255Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x65ba2cc15aec98345263c2b0369c539983258e3865adf47d772d72a865ca200e), causation_id: EventId(0x528c3ee5a47735ff7a8ae10fb6c571dd18f68c3aca906612a9f78a0f756beff7), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 40, ts: 32742383100722258859880476728499969, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:42:24.510171Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) -[CIPHER] [cn5] 2026-03-31T14:42:26.359292Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:42:26.359440Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(72) in 9.167002125s -[CIPHER] [cn5] 2026-03-31T14:42:26.360715Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(165)` -[CIPHER] [cn5] 2026-03-31T14:42:26.359929Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd98060d408f6159990957a57b4baf5c589d696c1bcea166159ebbcf33169af17), causation_id: EventId(0xfaa2572c8fed99d96c24ad11ab4147c3470d80cbc58b6fa1f37c26fa9d964c1a), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 40, ts: 32742383134879744373031053003259973, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:42:26.361856Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) -[CIPHER] [cn4] 2026-03-31T14:42:26.502266Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:27.265372Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:27.265526Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(163) in 9.396593959s -[CIPHER] [cn3] 2026-03-31T14:42:27.265975Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(223)` -[CIPHER] [cn3] 2026-03-31T14:42:27.266011Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3cb729212cd245ef092d44c311959d3652fb00520b50de8f4dd7c1d02e0e298b), causation_id: EventId(0x9500870ec8aba2d3363360f51401116393d6074445b3d3043d536a110d871c53), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 40, ts: 32742383151594173157522613364557665, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:42:27.267888Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) -[CIPHER] [cn5] 2026-03-31T14:42:27.699427Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:28.823225Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:42:33.547900Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:42:33.548072Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(170) in 9.04003925s -[CIPHER] [cn4] 2026-03-31T14:42:33.548528Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(120)` -[CIPHER] [cn4] 2026-03-31T14:42:33.548581Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x74461f149b6677bd562abe467e7fa9f7c1710e91498f2208fdcc8f3645a3c543), causation_id: EventId(0xb76c8227c159cd9970f5e1e91ce50d4e27d43c2c743e1323de93a0f831b88a23), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 41, ts: 32742383267486912711759147489173249, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:42:33.550482Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) -[CIPHER] [cn4] 2026-03-31T14:42:35.384894Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base -[CIPHER] [cn5] 2026-03-31T14:42:35.391098Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:42:35.391173Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(165) in 9.030465417s -[CIPHER] [cn5] 2026-03-31T14:42:35.391279Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(139)` -[CIPHER] [cn5] 2026-03-31T14:42:35.391541Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb0e971ecffa0b5f24627c097b6730db4ab1fbc1277f0227781c757f120655084), causation_id: EventId(0x89609619eba554485a5854381b9078f2929c9df52be9e40bfd8443f92839f455), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 41, ts: 32742383301485774672619895329587269, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:42:35.393420Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) -[CIPHER] [cn3] 2026-03-31T14:42:36.969282Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:42:36.969427Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(223) in 9.703457042s -[CIPHER] [cn3] 2026-03-31T14:42:36.969848Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(5)` -[CIPHER] [cn3] 2026-03-31T14:42:36.969881Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x94bab21ca5c8f49686b9c985f1d98d8c2e2028825c8ae97fc9b394cea054054b), causation_id: EventId(0x3341c3f6dfbf194f36faee6a527f93a93ed5d1e6429a23f7a15da6b1beb87915), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 41, ts: 32742383330599459187416436452853601, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:42:36.971777Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) -[CIPHER] [cn5] 2026-03-31T14:42:37.108133Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base -[CIPHER] [cn4] 2026-03-31T14:42:37.121613Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn3] 2026-03-31T14:42:38.318934Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base -[CIPHER] [cn5] 2026-03-31T14:42:38.369575Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn3] 2026-03-31T14:42:39.341722Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn4] 2026-03-31T14:42:55.290862Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn5] 2026-03-31T14:42:57.731264Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn3] 2026-03-31T14:42:59.223505Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn4] 2026-03-31T14:43:03.552716Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn4] 2026-03-31T14:43:04.280008Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn5] 2026-03-31T14:43:05.395524Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn5] 2026-03-31T14:43:06.752523Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn3] 2026-03-31T14:43:06.973519Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn3] 2026-03-31T14:43:08.266997Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn4] 2026-03-31T14:43:11.116161Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:11.116947Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(120) in 37.568466292s -[CIPHER] [cn4] 2026-03-31T14:43:11.117513Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(89)` -[CIPHER] [cn4] 2026-03-31T14:43:11.117827Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1a765d2995fff0ef743f33d46a9930c0142d367a15cbafc7f33f70ac06379cf9), causation_id: EventId(0x32d58fd5d3b5a1c9c84865296896f7dd4dc7725e2693e2f499cda9f27247f07d), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 42, ts: 32742383960511534012308869577580289, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:11.119105Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) -[CIPHER] [cn4] 2026-03-31T14:43:12.919116Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base -[CIPHER] [cn5] 2026-03-31T14:43:14.091630Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:14.092427Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(139) in 38.70119775s -[CIPHER] [cn5] 2026-03-31T14:43:14.092924Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(126)` -[CIPHER] [cn5] 2026-03-31T14:43:14.092990Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x00021151fe22276007cd299adedda4efb8c6e9822d0095facfae093ee8cf3726), causation_id: EventId(0xf179d879e498ef6476028ed368eaded401f290b28b75d1bc419e8bbcbfd0ac20), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 42, ts: 32742384015398492838058333352165445, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:14.093988Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) -[CIPHER] [cn4] 2026-03-31T14:43:14.727274Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn3] 2026-03-31T14:43:15.599642Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:15.600425Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(5) in 38.630631667s -[CIPHER] [cn3] 2026-03-31T14:43:15.600899Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(8)` -[CIPHER] [cn3] 2026-03-31T14:43:15.600979Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd49668234d371f5d2545041e3d13341f0ed81d556a3131d202f81abfe190f862), causation_id: EventId(0x54123daca94e8e7c66f2e4f14236d438e45af93c6f23fad2486de783f8aa4458), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 42, ts: 32742384043215924646795304283375457, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:15.601979Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) -[CIPHER] [cn5] 2026-03-31T14:43:15.642255Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base -[CIPHER] [cn3] 2026-03-31T14:43:16.776155Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base -[CIPHER] [cn5] 2026-03-31T14:43:16.957550Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn3] 2026-03-31T14:43:17.828338Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn4] 2026-03-31T14:43:31.866616Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn5] 2026-03-31T14:43:35.521784Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn3] 2026-03-31T14:43:37.088778Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn4] 2026-03-31T14:43:41.062970Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn4] 2026-03-31T14:43:41.121853Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn5] 2026-03-31T14:43:44.096091Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn5] 2026-03-31T14:43:44.688116Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn3] 2026-03-31T14:43:45.603886Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn3] 2026-03-31T14:43:46.488923Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn4] 2026-03-31T14:43:48.291546Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.292052Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(89) in 37.174587541s -[CIPHER] [cn4] 2026-03-31T14:43:48.292524Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0884df8c57185b43813912783c5d3ea4d1ae9dda300f167f55e6852a78612176), causation_id: EventId(0x44a755ae89f89cfce475ca7592d80b96bba4aebda6f9d591a160604d454e01ef), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 43, ts: 32742384646269909035248104446238465, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.293510Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) -[CIPHER] [cn4] 2026-03-31T14:43:48.293515Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.295019Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 2 (signer: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65) -[CIPHER] [cn4] 2026-03-31T14:43:48.295193Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties -[CIPHER] [cn4] 2026-03-31T14:43:48.297949Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x2d9b6c92b8028ce9394b61f10df3194b6bb792fab6e76d46bc843590b210ba30), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 44, ts: 32742384646323957995384073432473345, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.298481Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x518da5b44f5859df437b29c9d912dac0ade0b48fed02d04d69781ab1f7186e5c), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 45, ts: 32742384646324068675848515689783041, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.298999Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x049cd03532d310f6cc2196290df160b48cb2987d5337b7b6497eddcbcff19ac5), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 46, ts: 32742384646324160909568884237541121, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.299517Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xf73c49243cf64432c01f035b2cd471928705b62a78fff9936fc43594684cafc2), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 47, ts: 32742384646324234696545179075747585, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.300996Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa6174a1d238507de5eb255b64cec92b8cef88df5510bb7a7ea6624b4543e1cf1), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 48, ts: 32742384646324474504218137299918593, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.302479Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xcf7b180622719a2e71e7a0cf2fe07710137bf8c07c5ac97de3f79fc369012457), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 49, ts: 32742384646324714311891095524089601, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.303953Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x141544ee97c1d40de89f5b193bbd48a0a57d75b58fb292718094dce42fb45dd5), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 50, ts: 32742384646324954119564053748260609, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.305430Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe58617c5ce9dacb963ab4ddbc989f481024c1c5d14940584e38936adac1f0740), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 51, ts: 32742384646325175480492938262880001, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.306911Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x3762e4cd97339c0f4bcf380840aa67e51b7cc389ecb5ba5349670343f323db81), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 52, ts: 32742384646325415288165896487051009, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.308407Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x716175480b68d3da5d9d2c21b6c1576124769dae1e2c6bac339aa752a8017f86), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 53, ts: 32742384646325655095838854711222017, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.309921Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x01f0c08c6ccbe89fbb4a8a2d9e35406aaa1bbe63abcc3d42314478bf085046cf), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 54, ts: 32742384646325876456767739225841409, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.311355Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4bd3545dc1c995cf3a85ff730854a65e689ed0c45fc691372cf435454fdfae81), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 55, ts: 32742384646326116264440697450012417, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.312872Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x92cf43c6a0da39bcd9e549cdbd74146020e077625ad4a79435f5e81890a14707), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 56, ts: 32742384646326356072113655674183425, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.314294Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9232dca4f013029ed071f70a6d93e26462bcd726b2c3d14d9ccc4b3dafcaf6c0), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 57, ts: 32742384646326595879786613898354433, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.315723Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xba45e2bb5e6fbdf61d9688bde10c8d8fb5dd8ee8d751ffd63469e273964e10e4), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 58, ts: 32742384646326817240715498412973825, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.317151Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xfab5898de9146576c5d6f58c4b2abe2e3550772ae7c448aa797d003efb761772), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 59, ts: 32742384646327241515829193732660993, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.325085Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xac7077c431972772206e66d52980d209b6bdad770e9c9a099a42a087caef51a1), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 60, ts: 32742384646328643468378795658583809, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.337497Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x4b9776bda9221c4a6a77ba0f784dfd0a7931eb076b6307f564c27c183ad5de18), causation_id: EventId(0x22c53b7b544648a1d1cfe6da4c2e9307a9dd25eccf8dbccd218da344df09452f), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 61, ts: 32742384646329916293719881617645313, aggregate_id: AggregateId(31337), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.363433Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 0 (E3 31337:0) -[CIPHER] [cn4] 2026-03-31T14:43:48.373092Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn4] 2026-03-31T14:43:48.373178Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 1 (E3 31337:0) -[CIPHER] [cn4] 2026-03-31T14:43:48.373351Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn4] 2026-03-31T14:43:48.373421Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 2 (E3 31337:0) -[CIPHER] [cn4] 2026-03-31T14:43:48.373583Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn4] 2026-03-31T14:43:48.373752Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.373773Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.373800Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.373711Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.373859Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.373967Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.374215Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.374463Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.376079Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.391084Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.391447Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.374080Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.392262Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes -[CIPHER] [cn4] 2026-03-31T14:43:48.392264Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn4] 2026-03-31T14:43:48.392299Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn4] 2026-03-31T14:43:48.392301Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 -[CIPHER] [cn4] 2026-03-31T14:43:48.390758Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.391852Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.392260Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 2), forwarding to collector! -[CIPHER] [cn4] 2026-03-31T14:43:48.392302Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 -[CIPHER] [cn4] 2026-03-31T14:43:48.392311Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 11.792µs -[CIPHER] [cn4] 2026-03-31T14:43:48.375208Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:48.401206Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-30T14:43:48.373088Z }, value: }), ctx: EventContext { id: EventId(0xc434db8ce08284b6fc5069c458bcb2586bba1e77d851541eec407ca82cbeb923), causation_id: EventId(0xfab5898de9146576c5d6f58c4b2abe2e3550772ae7c448aa797d003efb761772), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 48, ts: 32742384647764224432427094093995777, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.408779Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-30T14:43:48.373350Z }, value: }), ctx: EventContext { id: EventId(0x8f03d29f7db64ce0d23c61b367f756c84eb863bc8817a715d65e0a5a6a5568d4), causation_id: EventId(0xac7077c431972772206e66d52980d209b6bdad770e9c9a099a42a087caef51a1), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 49, ts: 32742384647768891458677742610554625, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:48.418758Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-30T14:43:48.373583Z }, value: }), ctx: EventContext { id: EventId(0x145b27786b162b494174a6d55ef241a1e77def4811e39b0f1b29771104f5462a), causation_id: EventId(0x4b9776bda9221c4a6a77ba0f784dfd0a7931eb076b6307f564c27c183ad5de18), origin_id: EventId(0x94cf3c0b58522b45f21c51bf9149984ba50522c2fdbb50337b5c716b4fd335b1), seq: 50, ts: 32742384647773152656558769516977921, aggregate_id: AggregateId(0), block: Some(111), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:48.602163Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-30T14:43:48Z }, value: }), ctx: EventContext { id: EventId(0x64f562930bd2ad9bf857a697af61796f645d57dadaafc11cb386237c6ab88324), causation_id: EventId(0x64f562930bd2ad9bf857a697af61796f645d57dadaafc11cb386237c6ab88324), origin_id: EventId(0x64f562930bd2ad9bf857a697af61796f645d57dadaafc11cb386237c6ab88324), seq: 48, ts: 32742384651975819018639795561889861, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:43:48.602163Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-30T14:43:48Z }, value: }), ctx: EventContext { id: EventId(0x92bf89b27fb097d231634fd6cee48527a04c70ffe6ef7492a44e10c9b82a6275), causation_id: EventId(0x92bf89b27fb097d231634fd6cee48527a04c70ffe6ef7492a44e10c9b82a6275), origin_id: EventId(0x92bf89b27fb097d231634fd6cee48527a04c70ffe6ef7492a44e10c9b82a6275), seq: 48, ts: 32742384651974730660739445726349153, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:43:48.610280Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x15280ab1966c25dea69bf2ff9e536e1f88a7460d19dfa77cb43e9ca5d042a3a4), causation_id: EventId(0x92bf89b27fb097d231634fd6cee48527a04c70ffe6ef7492a44e10c9b82a6275), origin_id: EventId(0x92bf89b27fb097d231634fd6cee48527a04c70ffe6ef7492a44e10c9b82a6275), seq: 43, ts: 32742384652132062940944114492082017, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:48.610220Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xd626cfaaa5c49231ab2e668e1e3ef12c9b1a8724557468d3bac5c9b4a17bfc43), causation_id: EventId(0x64f562930bd2ad9bf857a697af61796f645d57dadaafc11cb386237c6ab88324), origin_id: EventId(0x64f562930bd2ad9bf857a697af61796f645d57dadaafc11cb386237c6ab88324), seq: 43, ts: 32742384652130384287233407894880325, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:48.617082Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 1), forwarding to collector! -[CIPHER] [cn3] 2026-03-31T14:43:48.617086Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-03-31T14:43:48.617088Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn3] 2026-03-31T14:43:48.617097Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn3] 2026-03-31T14:43:48.617099Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 -[CIPHER] [cn3] 2026-03-31T14:43:48.617101Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 -[CIPHER] [cn5] 2026-03-31T14:43:48.617100Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 0), forwarding to collector! -[CIPHER] [cn5] 2026-03-31T14:43:48.617102Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes -[CIPHER] [cn5] 2026-03-31T14:43:48.617104Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn5] 2026-03-31T14:43:48.617108Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn3] 2026-03-31T14:43:48.617106Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 9.042µs -[CIPHER] [cn5] 2026-03-31T14:43:48.617109Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 -[CIPHER] [cn5] 2026-03-31T14:43:48.617110Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 -[CIPHER] [cn5] 2026-03-31T14:43:48.617116Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 8.833µs -[CIPHER] [cn5] 2026-03-31T14:43:51.126042Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.126577Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(126) in 37.033704833s -[CIPHER] [cn5] 2026-03-31T14:43:51.126801Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb5a14c6ec40edff0afa638321e88a1ff4ea29e115281c77dfc5ef74edfdf84f1), causation_id: EventId(0xbd090be183df3179d14a7e81571090dd9efb28e11a21972b1edacfabbd149b59), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 44, ts: 32742384698557666280779671269474373, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.128918Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) -[CIPHER] [cn5] 2026-03-31T14:43:51.128926Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.130420Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 0 (signer: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc) -[CIPHER] [cn5] 2026-03-31T14:43:51.130594Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties -[CIPHER] [cn5] 2026-03-31T14:43:51.137454Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x1baeb41d6e79937a65b1fd20a52ea257595b02cd3934ffd8cf8e4c6b64bdda92), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 45, ts: 32742384698627874588724209822924869, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.137995Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x18e972bfd519d673f91a346af0b3d1238adfa76fc9a7afd8b7113d6af6a1b0d5), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 46, ts: 32742384698628003715932725789786181, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.138500Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x53aa2c334b4a8b421978f25f1e48acf12811cf35270ec4fcdb510473e0362600), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 47, ts: 32742384698628095949653094337544261, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.139003Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6261b54e52d6978ae780fa257a0f0908f44e9c62f5165dcd641ee6941d93305e), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 48, ts: 32742384698628188183373462885302341, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.140454Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x24f82830e45a4f39fae70a7008d2e022fa4a526cb15231af41c81374ee353f89), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 49, ts: 32742384698628409544302347399921733, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.141890Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x1290e64f309e913558081f5ed9fb485ced7735111735893ce35642f2e7f3bc6d), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 50, ts: 32742384698628649351975305624092741, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.143346Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x403f12e0955f8c0ae58efcabf8f6d3f8fdc6bc4c0524b4842ac54fc9ce799fd0), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 51, ts: 32742384698628889159648263848263749, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.144807Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xaa11a606155e72ef659e089effe81f8c32327d948bb9993c9bfc475ad6f45e8c), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 52, ts: 32742384698629128967321222072434757, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.146264Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x37078e5a32ef7ef05074ef39ad7d557b84ce59bbe9599c9d2630e341f4fadf8a), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 53, ts: 32742384698629350328250106587054149, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.147721Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x5bf0edec172b2960c081a586000638e0e936de3fddc650beeb7baf3e71be9a84), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 54, ts: 32742384698629590135923064811225157, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.149178Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x94b94ac77228ec4ae3e6ca735a5d04b0143eddc80261594e08bd47ece76931c7), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 55, ts: 32742384698629829943596023035396165, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.150637Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x7446804dd008ed60ed6acbaa53d18e778d82f333d0da32dd3d947f114792a418), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 56, ts: 32742384698630069751268981259567173, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.152094Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x34168c15a70eb910151e52621a30a98fb55af14a64af1557b3e6dd10af86a8e8), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 57, ts: 32742384698630291112197865774186565, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.153962Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x5dc7036c1f715c128c6b2cdf83d3d86f05a885ce0a5994786f5bcfe1a30493b5), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 58, ts: 32742384698630530919870823998357573, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.155438Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x03fab8244b8d534323d22d7bfb086979c473f8435757cafb6481840f23765e2a), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 59, ts: 32742384698630770727543782222528581, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.157595Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x109465d9c269e444fefe8784ad60799ba3616a045432d23ab0042d051eee2cb0), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 60, ts: 32742384698631121215681182704009285, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.171241Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xe065bbf5fee1d75245f4450634636e3992e9da2a0644887f6c4026513bb5f92f), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 61, ts: 32742384698632504721486710920380485, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.182248Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xd5650c5f6996223ed7f1582a70a66539cf863321b746a58f42b199233d5a6cdd), causation_id: EventId(0x2f6cdb5d55c6bec6db79a1efd07be8b847b66ac6df19d04908878f8ea1bb3b1b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 62, ts: 32742384698633759100083723169890373, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.189900Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 0 (E3 31337:0) -[CIPHER] [cn5] 2026-03-31T14:43:51.190024Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn5] 2026-03-31T14:43:51.190095Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 1 (E3 31337:0) -[CIPHER] [cn5] 2026-03-31T14:43:51.190222Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn5] 2026-03-31T14:43:51.190290Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 2 (E3 31337:0) -[CIPHER] [cn5] 2026-03-31T14:43:51.190409Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn5] 2026-03-31T14:43:51.190507Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.190526Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.190547Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.190575Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.190624Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.190696Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.190797Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.190936Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.191113Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.191317Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.191562Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.191814Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.192083Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.192395Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.192741Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:51.193103Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 0), forwarding to collector! -[CIPHER] [cn5] 2026-03-31T14:43:51.193106Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes -[CIPHER] [cn5] 2026-03-31T14:43:51.193108Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn5] 2026-03-31T14:43:51.193130Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 -[CIPHER] [cn5] 2026-03-31T14:43:51.193131Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 -[CIPHER] [cn5] 2026-03-31T14:43:51.193133Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 4.416µs -[CIPHER] [cn5] 2026-03-31T14:43:51.193129Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn5] 2026-03-31T14:43:51.199765Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-30T14:43:51.190023Z }, value: }), ctx: EventContext { id: EventId(0x2fcd8053f41fa12a4f5e293087748d8db4a71762831017f6cd259fce83f5a63b), causation_id: EventId(0x109465d9c269e444fefe8784ad60799ba3616a045432d23ab0042d051eee2cb0), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 49, ts: 32742384699727337429005446518341701, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.207473Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-30T14:43:51.190222Z }, value: }), ctx: EventContext { id: EventId(0x4022b0295fb5a0370f49031905af47c130df38f7d490e1be46d37e420765b2e7), causation_id: EventId(0xe065bbf5fee1d75245f4450634636e3992e9da2a0644887f6c4026513bb5f92f), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 50, ts: 32742384699730989884332041009561669, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:51.214674Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-30T14:43:51.190409Z }, value: }), ctx: EventContext { id: EventId(0xd088d58b1808fe0b01371ac6302db17aaed211245e8b4af1710de7d3366ca5fb), causation_id: EventId(0xd5650c5f6996223ed7f1582a70a66539cf863321b746a58f42b199233d5a6cdd), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 51, ts: 32742384699734457872217898405265477, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:51.285362Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-30T14:43:51Z }, value: }), ctx: EventContext { id: EventId(0x651e82f59690005572610fd75050ba3787f0eed04b7df5366a9581aeee98e96a), causation_id: EventId(0x651e82f59690005572610fd75050ba3787f0eed04b7df5366a9581aeee98e96a), origin_id: EventId(0x651e82f59690005572610fd75050ba3787f0eed04b7df5366a9581aeee98e96a), seq: 51, ts: 32742384701474354773250183284793089, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:43:51.287807Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-30T14:43:51Z }, value: }), ctx: EventContext { id: EventId(0x10182355f637e281e63562dca093df6e528dfa77d35adca7cc865f75c8a4e968), causation_id: EventId(0x10182355f637e281e63562dca093df6e528dfa77d35adca7cc865f75c8a4e968), origin_id: EventId(0x10182355f637e281e63562dca093df6e528dfa77d35adca7cc865f75c8a4e968), seq: 49, ts: 32742384701520047358320760901044065, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:43:51.294661Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x517daed47d58e304049a871b2adf6ea10e8cdbb6eaae39af600cb7b2013fa1e9), causation_id: EventId(0x651e82f59690005572610fd75050ba3787f0eed04b7df5366a9581aeee98e96a), origin_id: EventId(0x651e82f59690005572610fd75050ba3787f0eed04b7df5366a9581aeee98e96a), seq: 62, ts: 32742384701652015365424079976406785, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:51.301522Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 2), forwarding to collector! -[CIPHER] [cn4] 2026-03-31T14:43:51.301527Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes -[CIPHER] [cn4] 2026-03-31T14:43:51.301529Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn4] 2026-03-31T14:43:51.301548Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn4] 2026-03-31T14:43:51.301552Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 -[CIPHER] [cn4] 2026-03-31T14:43:51.301555Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 7.375µs -[CIPHER] [cn4] 2026-03-31T14:43:51.301554Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 -[CIPHER] [cn3] 2026-03-31T14:43:51.299996Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x7d36a7a4832b6f7f48692cd798d2514fe5337ac8cf3e7ce29025472ddbd9d694), causation_id: EventId(0x10182355f637e281e63562dca093df6e528dfa77d35adca7cc865f75c8a4e968), origin_id: EventId(0x10182355f637e281e63562dca093df6e528dfa77d35adca7cc865f75c8a4e968), seq: 44, ts: 32742384701750963700635457068173153, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:51.306838Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 1), forwarding to collector! -[CIPHER] [cn3] 2026-03-31T14:43:51.306843Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-03-31T14:43:51.306850Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn3] 2026-03-31T14:43:51.306852Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 -[CIPHER] [cn3] 2026-03-31T14:43:51.306854Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 -[CIPHER] [cn3] 2026-03-31T14:43:51.306855Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 4.834µs -[CIPHER] [cn3] 2026-03-31T14:43:51.306845Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn3] 2026-03-31T14:43:52.224977Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.225309Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(8) in 36.62445975s -[CIPHER] [cn3] 2026-03-31T14:43:52.225454Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdc038c4e7575a57afad16eb0171871e8411c57648d5aa31dd1e3ca8f25bb05d1), causation_id: EventId(0xa2c0ca869eca035ca6bc8fea61655f7bcf1081aaeda9a7e3dac9ae9f08a5df3b), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 45, ts: 32742384718825417589213607720355681, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.226426Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) -[CIPHER] [cn3] 2026-03-31T14:43:52.226430Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.227913Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 1 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) -[CIPHER] [cn3] 2026-03-31T14:43:52.228097Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties -[CIPHER] [cn3] 2026-03-31T14:43:52.235605Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x17a468e817183f0f682aa4c9fc71f9d964d0d4bd9a450501a8e6743b31ec4382), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 46, ts: 32742384718873028635667852073076577, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.236122Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4073ea289169f01469fd185cf8ac1597e6b748387ad7407dab8be08109def363), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 47, ts: 32742384718873157762876368039937889, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.236642Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xbbca92331b2b5755079206aece2454587eb545d6ca0bc2699d0526bf2e8634ad), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 48, ts: 32742384718873268443340810297247585, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.237175Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x96e9fd08a9ae0c1b98972385f055d13ebf15ec5adf51950ba302616a471a01e4), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 49, ts: 32742384718873360677061178845005665, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.238637Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4bf2c7df7e753cb589f911719d4d9f77e8b2dd633c32d137e9ac8ba66054b699), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 50, ts: 32742384718873655824966358197831521, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.240077Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xef1b3e398b818ccd3bc0343947ea83881f4ed59ef115a9dc4f0622fec61cc68c), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 51, ts: 32742384718873950972871537550657377, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.241558Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x674032aca41b64fe8791123569333c92a7edfb53ee68d7b119b4ff4e17a526e5), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 52, ts: 32742384718874227674032643193931617, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.243074Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe235112903541ded8a4f817213b59ce48e78f2316a2cd7cbc5de3f5bfccf80f1), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 53, ts: 32742384718874522821937822546757473, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.244562Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb457813bb141a7d5540ee25691d0fc9781be31dac3ae016e4d67ae3125f21c35), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 54, ts: 32742384718874817969843001899583329, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.245987Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xc31906564fede8e77fc599131c750459515efb2742ab158fe04221a41d1c77f4), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 55, ts: 32742384718875039330771886414202721, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.247407Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x2b26c87b0d0adf09bd444ab9a2bce40852e603f1d8f3bf3d1dacd7dd5504a1ef), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 56, ts: 32742384718875260691700770928822113, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.248857Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe29e860ca141aaf90b69ccf7f4166a1347c1dff96dc6657aeffe77708c5ac372), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 57, ts: 32742384718875482052629655443441505, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.250318Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x80236a36ae054371d99b60cdd668785d7af4bbfe46fd59628432e1e104673f48), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 58, ts: 32742384718875703413558539958060897, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.251783Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xde34bd1f8ea51256087290834308865869b1c7c01b398eb86c2941717e12c94a), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 59, ts: 32742384718875924774487424472680289, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.253313Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x92a90e845087fd1a49f220f6d46fbec89313591d71eb431af4684d92b20cd5d9), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 60, ts: 32742384718876146135416308987299681, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.254797Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x0845572efbb2e5eed1c8a3636830def4cab11279db4d7eaa30b5fe16ce46ecd0), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 61, ts: 32742384718876422836577414630573921, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.261725Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x1e6c318fdc4e0ff68554a5a4463364d7a5ea82a278ddce45e7bb45828024f7f8), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 62, ts: 32742384718877898576103311394703201, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.268578Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x86cfb5e4da62c8399b9c46db7b0a43b565ce63cf6318c538a4cf08d1cfada1ad), causation_id: EventId(0x8e125815fa6fca241935274a78a6c5bb9dfd5c1d509b3e5fc497cd963b79afc2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 63, ts: 32742384718879171401444397353764705, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.275528Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 0 (E3 31337:0) -[CIPHER] [cn3] 2026-03-31T14:43:52.275660Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn3] 2026-03-31T14:43:52.275745Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 1 (E3 31337:0) -[CIPHER] [cn3] 2026-03-31T14:43:52.275878Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn3] 2026-03-31T14:43:52.275952Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 2 (E3 31337:0) -[CIPHER] [cn3] 2026-03-31T14:43:52.276083Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn3] 2026-03-31T14:43:52.276184Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.276206Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.276230Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.276263Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.276319Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.276408Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.276516Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.276651Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.276835Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.277031Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.277261Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.277528Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.277823Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.278243Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.278595Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.278974Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 1), forwarding to collector! -[CIPHER] [cn3] 2026-03-31T14:43:52.278977Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-03-31T14:43:52.278979Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn3] 2026-03-31T14:43:52.279004Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn3] 2026-03-31T14:43:52.279008Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 -[CIPHER] [cn3] 2026-03-31T14:43:52.279013Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares -[CIPHER] [cn3] 2026-03-31T14:43:52.279022Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 18.666µs -[CIPHER] [cn3] 2026-03-31T14:43:52.279006Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 -[CIPHER] [cn3] 2026-03-31T14:43:52.279056Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected -[CIPHER] [cn3] 2026-03-31T14:43:52.279082Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn3] 2026-03-31T14:43:52.287320Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-30T14:43:52.275659Z }, value: }), ctx: EventContext { id: EventId(0x90eb74697753d66ec1826b82dbc59b0b493868399fc11803cafa60b808736d54), causation_id: EventId(0x0845572efbb2e5eed1c8a3636830def4cab11279db4d7eaa30b5fe16ce46ecd0), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 50, ts: 32742384719753786878211188324534113, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.294820Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-30T14:43:52.275878Z }, value: }), ctx: EventContext { id: EventId(0x2be391446cf5b79650e7ad6ed5d933a14b988996b7bed728a8509aba454cebc6), causation_id: EventId(0x1e6c318fdc4e0ff68554a5a4463364d7a5ea82a278ddce45e7bb45828024f7f8), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 51, ts: 32742384719757808268419257006786401, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.307610Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-30T14:43:52.276083Z }, value: }), ctx: EventContext { id: EventId(0x6a188fdfea23bb1fe47dc40c41539f6c1778bf4d7f58a2d1e48b9ec54b9737b3), causation_id: EventId(0x86cfb5e4da62c8399b9c46db7b0a43b565ce63cf6318c538a4cf08d1cfada1ad), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 52, ts: 32742384719761571404210293755316065, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.341617Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), causation_id: EventId(0x1e6c318fdc4e0ff68554a5a4463364d7a5ea82a278ddce45e7bb45828024f7f8), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 64, ts: 32742384719816911636431422410164065, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.354786Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs -[CIPHER] [cn3] 2026-03-31T14:43:52.358305Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 106, party_proofs: [PartyProofData { party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C2aSkShareComputation, , [218, 162, 211, 236, 84, 197, 120, 126, 77, 193, 148, 75, 216, 100, 231, 110, 68, 42, 235, 155, 88, 182, 123, 159, 97, 111, 211, 123, 255, 94, 202, 53]), (C2bESmShareComputation, , [216, 252, 13, 222, 180, 0, 135, 149, 95, 254, 121, 203, 86, 35, 41, 6, 31, 0, 15, 236, 111, 208, 2, 101, 173, 165, 169, 18, 110, 166, 202, 142]), (C3aSkShareEncryption, , [20, 144, 98, 130, 238, 229, 147, 51, 204, 236, 250, 107, 93, 169, 196, 120, 231, 133, 43, 88, 196, 226, 152, 154, 92, 193, 234, 144, 239, 100, 83, 197]), (C3aSkShareEncryption, , [203, 10, 128, 103, 255, 17, 206, 203, 197, 200, 86, 145, 72, 146, 96, 240, 135, 45, 27, 213, 177, 193, 98, 57, 181, 192, 122, 20, 160, 185, 28, 192]), (C3bESmShareEncryption, , [153, 104, 227, 76, 163, 91, 236, 155, 174, 210, 156, 114, 200, 214, 255, 235, 50, 163, 246, 192, 132, 124, 57, 213, 195, 40, 124, 226, 182, 63, 107, 46]), (C3bESmShareEncryption, , [62, 13, 233, 164, 191, 202, 124, 39, 79, 205, 194, 66, 68, 40, 2, 182, 241, 95, 62, 227, 154, 52, 179, 210, 103, 151, 213, 43, 245, 231, 39, 1])] }, PartyProofData { party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C2aSkShareComputation, , [169, 7, 45, 84, 203, 3, 62, 98, 144, 48, 245, 220, 212, 60, 229, 199, 235, 69, 210, 128, 67, 14, 111, 158, 70, 187, 96, 75, 155, 250, 180, 226]), (C2bESmShareComputation, , [218, 174, 66, 113, 111, 102, 34, 152, 141, 101, 158, 164, 12, 138, 101, 8, 16, 230, 23, 43, 81, 73, 110, 153, 1, 141, 147, 41, 215, 246, 95, 195]), (C3aSkShareEncryption, , [248, 189, 65, 240, 30, 110, 64, 143, 17, 16, 161, 120, 98, 4, 144, 149, 98, 84, 156, 199, 18, 152, 249, 125, 221, 52, 220, 36, 207, 238, 22, 86]), (C3aSkShareEncryption, , [135, 98, 79, 156, 241, 157, 252, 113, 175, 144, 50, 156, 204, 23, 94, 28, 253, 3, 61, 124, 92, 111, 32, 158, 3, 255, 103, 144, 132, 128, 29, 120]), (C3bESmShareEncryption, , [61, 150, 6, 58, 65, 61, 87, 49, 53, 135, 41, 137, 233, 159, 224, 62, 113, 156, 89, 16, 64, 150, 142, 98, 77, 182, 17, 15, 198, 216, 124, 106]), (C3bESmShareEncryption, , [25, 172, 94, 194, 147, 115, 188, 254, 190, 50, 225, 8, 44, 68, 161, 102, 106, 31, 155, 135, 219, 223, 188, 2, 145, 178, 131, 105, 216, 111, 13, 90])] }] }), ctx: EventContext { id: EventId(0x192f7d2e06fe17c103e72735fbacc9b765fa84df4de44b0f9eab2815e416880e), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 65, ts: 32742384721270367495487145401091937, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.368812Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 106, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x15e8f287acd7aaa4332bbb781d4297a70bdf8be8bb873df01cdb76967623a2b1), causation_id: EventId(0x192f7d2e06fe17c103e72735fbacc9b765fa84df4de44b0f9eab2815e416880e), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 66, ts: 32742384721470570008919115164780385, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.372135Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 107, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4325377300d25bc3e624a7ffe30ffb763e21759083c104518e507052e917afb5), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 53, ts: 32742384721472931192160549987387233, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.386122Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(241)` -[CIPHER] [cn5] 2026-03-31T14:43:52.415818Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-30T14:43:52Z }, value: }), ctx: EventContext { id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), causation_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 52, ts: 32742384722333914525056870571507781, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:43:52.418534Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-30T14:43:52Z }, value: }), ctx: EventContext { id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), causation_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 52, ts: 32742384722384458603818834714042113, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:43:52.427098Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x853cfbfdc8755709a93d211bd165af0dea6920107eb3240fcf2805da68f62e0e), causation_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 63, ts: 32742384722541753990535356089565253, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.434108Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 0), forwarding to collector! -[CIPHER] [cn5] 2026-03-31T14:43:52.434118Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc and 3 nodes -[CIPHER] [cn5] 2026-03-31T14:43:52.434121Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn5] 2026-03-31T14:43:52.434141Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 -[CIPHER] [cn5] 2026-03-31T14:43:52.434144Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 -[CIPHER] [cn5] 2026-03-31T14:43:52.434156Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 17.583µs -[CIPHER] [cn5] 2026-03-31T14:43:52.434186Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn5] 2026-03-31T14:43:52.434169Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected -[CIPHER] [cn5] 2026-03-31T14:43:52.434147Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares -[CIPHER] [cn5] 2026-03-31T14:43:52.434139Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn4] 2026-03-31T14:43:52.427650Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x42e6749ddc6f0400da2ac18de0769e2a87d5236a89bb92ac7d73daf3f8dbf6de), causation_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 63, ts: 32742384722551973486752191152267009, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.434854Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 2), forwarding to collector! -[CIPHER] [cn4] 2026-03-31T14:43:52.434866Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn4] 2026-03-31T14:43:52.434867Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 -[CIPHER] [cn4] 2026-03-31T14:43:52.434874Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 7.791µs -[CIPHER] [cn4] 2026-03-31T14:43:52.434878Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected -[CIPHER] [cn4] 2026-03-31T14:43:52.434885Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn4] 2026-03-31T14:43:52.434859Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 and 3 nodes -[CIPHER] [cn4] 2026-03-31T14:43:52.434861Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn4] 2026-03-31T14:43:52.434868Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 -[CIPHER] [cn4] 2026-03-31T14:43:52.434870Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares -[CIPHER] [cn4] 2026-03-31T14:43:52.437001Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), causation_id: EventId(0x42e6749ddc6f0400da2ac18de0769e2a87d5236a89bb92ac7d73daf3f8dbf6de), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 64, ts: 32742384722690951256603518914141953, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.453017Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs -[CIPHER] [cn5] 2026-03-31T14:43:52.436895Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), causation_id: EventId(0x853cfbfdc8755709a93d211bd165af0dea6920107eb3240fcf2805da68f62e0e), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 64, ts: 32742384722678093875984143385559109, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.453559Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs -[CIPHER] [cn5] 2026-03-31T14:43:52.457663Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, party_proofs: [PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C2aSkShareComputation, , [137, 183, 168, 232, 5, 103, 160, 142, 51, 23, 172, 176, 46, 191, 77, 41, 54, 81, 137, 175, 130, 130, 142, 109, 203, 154, 138, 173, 135, 65, 61, 249]), (C2bESmShareComputation, , [217, 210, 171, 137, 154, 180, 94, 218, 159, 205, 109, 235, 60, 18, 207, 140, 209, 231, 50, 56, 213, 41, 254, 174, 91, 211, 205, 47, 153, 200, 36, 17]), (C3aSkShareEncryption, , [109, 28, 143, 38, 37, 253, 43, 98, 136, 179, 27, 149, 56, 26, 38, 10, 57, 92, 14, 200, 181, 158, 225, 41, 169, 39, 157, 102, 152, 169, 70, 139]), (C3aSkShareEncryption, , [43, 107, 112, 112, 148, 245, 1, 235, 69, 167, 70, 142, 126, 4, 89, 219, 119, 94, 134, 29, 221, 98, 82, 224, 61, 113, 175, 119, 156, 203, 58, 213]), (C3bESmShareEncryption, , [211, 112, 114, 208, 128, 22, 223, 104, 165, 49, 25, 211, 189, 138, 24, 48, 149, 247, 7, 151, 239, 80, 179, 146, 221, 178, 164, 125, 177, 179, 202, 244]), (C3bESmShareEncryption, , [69, 31, 207, 187, 229, 79, 144, 137, 182, 75, 145, 61, 0, 175, 189, 116, 158, 225, 198, 182, 153, 135, 7, 227, 87, 195, 27, 110, 215, 243, 155, 248])] }, PartyProofData { party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C2aSkShareComputation, , [169, 7, 45, 84, 203, 3, 62, 98, 144, 48, 245, 220, 212, 60, 229, 199, 235, 69, 210, 128, 67, 14, 111, 158, 70, 187, 96, 75, 155, 250, 180, 226]), (C2bESmShareComputation, , [218, 174, 66, 113, 111, 102, 34, 152, 141, 101, 158, 164, 12, 138, 101, 8, 16, 230, 23, 43, 81, 73, 110, 153, 1, 141, 147, 41, 215, 246, 95, 195]), (C3aSkShareEncryption, , [230, 52, 183, 38, 39, 231, 22, 116, 38, 203, 171, 193, 42, 161, 44, 60, 178, 26, 160, 142, 100, 237, 117, 108, 144, 77, 202, 168, 186, 208, 94, 221]), (C3aSkShareEncryption, , [90, 247, 6, 12, 206, 144, 114, 132, 137, 38, 213, 14, 129, 5, 44, 138, 198, 55, 0, 75, 106, 26, 93, 96, 190, 39, 49, 44, 194, 214, 243, 72]), (C3bESmShareEncryption, , [20, 59, 252, 156, 21, 167, 180, 196, 181, 146, 190, 5, 59, 179, 239, 163, 88, 106, 2, 232, 73, 117, 119, 167, 225, 179, 224, 173, 6, 209, 174, 249]), (C3bESmShareEncryption, , [82, 242, 17, 221, 155, 251, 130, 43, 214, 59, 153, 237, 53, 85, 152, 183, 91, 36, 126, 128, 16, 57, 207, 183, 254, 17, 171, 202, 226, 74, 58, 1])] }] }), ctx: EventContext { id: EventId(0xc93fc04bc4eab684b50e0042f2eec6d8809c4295afd9557bafc1ee9e260c707d), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 65, ts: 32742384723092297067415217657544773, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.457598Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, party_proofs: [PartyProofData { party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C2aSkShareComputation, , [218, 162, 211, 236, 84, 197, 120, 126, 77, 193, 148, 75, 216, 100, 231, 110, 68, 42, 235, 155, 88, 182, 123, 159, 97, 111, 211, 123, 255, 94, 202, 53]), (C2bESmShareComputation, , [216, 252, 13, 222, 180, 0, 135, 149, 95, 254, 121, 203, 86, 35, 41, 6, 31, 0, 15, 236, 111, 208, 2, 101, 173, 165, 169, 18, 110, 166, 202, 142]), (C3aSkShareEncryption, , [166, 137, 202, 33, 191, 218, 177, 54, 73, 195, 194, 5, 2, 170, 180, 199, 137, 198, 86, 201, 151, 92, 78, 88, 52, 9, 232, 66, 136, 198, 207, 76]), (C3aSkShareEncryption, , [186, 93, 93, 224, 50, 203, 172, 154, 187, 232, 21, 243, 53, 107, 164, 135, 83, 43, 114, 188, 11, 107, 200, 255, 39, 211, 27, 249, 37, 54, 144, 131]), (C3bESmShareEncryption, , [153, 126, 95, 217, 222, 98, 8, 173, 105, 65, 100, 217, 176, 127, 246, 168, 252, 147, 167, 174, 248, 38, 7, 143, 38, 64, 117, 84, 1, 62, 137, 246]), (C3bESmShareEncryption, , [242, 73, 12, 120, 216, 124, 202, 250, 76, 51, 62, 130, 144, 120, 166, 177, 134, 167, 50, 90, 204, 192, 24, 253, 50, 86, 184, 56, 168, 252, 89, 10])] }, PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C2aSkShareComputation, , [137, 183, 168, 232, 5, 103, 160, 142, 51, 23, 172, 176, 46, 191, 77, 41, 54, 81, 137, 175, 130, 130, 142, 109, 203, 154, 138, 173, 135, 65, 61, 249]), (C2bESmShareComputation, , [217, 210, 171, 137, 154, 180, 94, 218, 159, 205, 109, 235, 60, 18, 207, 140, 209, 231, 50, 56, 213, 41, 254, 174, 91, 211, 205, 47, 153, 200, 36, 17]), (C3aSkShareEncryption, , [149, 96, 131, 165, 165, 219, 140, 45, 17, 67, 130, 19, 57, 223, 94, 212, 43, 40, 234, 207, 12, 69, 129, 64, 241, 231, 120, 98, 34, 87, 204, 31]), (C3aSkShareEncryption, , [224, 168, 69, 80, 12, 126, 136, 205, 231, 225, 126, 139, 249, 166, 180, 88, 210, 63, 104, 199, 160, 216, 57, 160, 163, 66, 155, 35, 30, 240, 143, 163]), (C3bESmShareEncryption, , [53, 22, 222, 219, 51, 193, 113, 202, 168, 120, 245, 182, 200, 38, 159, 66, 54, 135, 189, 132, 132, 207, 91, 230, 102, 49, 214, 173, 147, 173, 114, 129]), (C3bESmShareEncryption, , [34, 29, 66, 206, 166, 100, 13, 173, 176, 217, 189, 154, 223, 48, 142, 198, 126, 82, 156, 75, 84, 143, 250, 224, 173, 184, 145, 41, 142, 209, 40, 160])] }] }), ctx: EventContext { id: EventId(0xd59b15b629e6b636dbcced6953b28301aeb46363f54a9750286daf12bd6b587b), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 65, ts: 32742384723081026106786181092613889, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.465804Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xd8ed120dea44fad426acb40e2f8232759d7aa0029b40588dfc8d346f600347b1), causation_id: EventId(0xc93fc04bc4eab684b50e0042f2eec6d8809c4295afd9557bafc1ee9e260c707d), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 66, ts: 32742384723259276994770436518772805, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.466185Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xd8ed120dea44fad426acb40e2f8232759d7aa0029b40588dfc8d346f600347b1), causation_id: EventId(0xd59b15b629e6b636dbcced6953b28301aeb46363f54a9750286daf12bd6b587b), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 66, ts: 32742384723264165381949969521057537, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.469332Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x2e374b30cde12a1ea02df1dce0999bef514eb3b18cf469858935450dfecf2c09), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 53, ts: 32742384723262357601030746013892677, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.483660Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(167)` -[CIPHER] [cn4] 2026-03-31T14:43:52.469331Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0e1f0bd201427ba43ff224d93ca16953ffc57e69b19d3038045b60212b889a8f), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 53, ts: 32742384723270843103304652378742529, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.484026Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(46)` -[CIPHER] [cn3] 2026-03-31T14:43:52.833399Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(241) in 447.262542ms -[CIPHER] [cn3] 2026-03-31T14:43:52.833524Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 107, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x76fbfa175192e66056048d065a0ee19ebcc60c23e1f17c7f8a7b0b05ff2faa08), causation_id: EventId(0x4325377300d25bc3e624a7ffe30ffb763e21759083c104518e507052e917afb5), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 68, ts: 32742384730043122468109344282216289, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.834534Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C2aSkShareComputation, data_hash: [218, 162, 211, 236, 84, 197, 120, 126, 77, 193, 148, 75, 216, 100, 231, 110, 68, 42, 235, 155, 88, 182, 123, 159, 97, 111, 211, 123, 255, 94, 202, 53], public_signals: }), ctx: EventContext { id: EventId(0xa5c5989fda76973ee78f34b2f3cb6f058dfd7fff514c099353aff128322c0522), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 69, ts: 32742384730046184627625580067784545, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.834583Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C2bESmShareComputation, data_hash: [216, 252, 13, 222, 180, 0, 135, 149, 95, 254, 121, 203, 86, 35, 41, 6, 31, 0, 15, 236, 111, 208, 2, 101, 173, 165, 169, 18, 110, 166, 202, 142], public_signals: }), ctx: EventContext { id: EventId(0x0338b98cc9cc05c0e09cfeacfd873ad289b9335f44ac7e28f8a283d10e4d6320), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 70, ts: 32742384730046221521113727486887777, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.834613Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3aSkShareEncryption, data_hash: [20, 144, 98, 130, 238, 229, 147, 51, 204, 236, 250, 107, 93, 169, 196, 120, 231, 133, 43, 88, 196, 226, 152, 154, 92, 193, 234, 144, 239, 100, 83, 197], public_signals: }), ctx: EventContext { id: EventId(0xbe0d3d65bf3b581de6d6aff1c70c8691de96ad3301c8932fba5ae9459dba5c48), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 71, ts: 32742384730046221521113731781855073, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.835576Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3aSkShareEncryption, data_hash: [203, 10, 128, 103, 255, 17, 206, 203, 197, 200, 86, 145, 72, 146, 96, 240, 135, 45, 27, 213, 177, 193, 98, 57, 181, 192, 122, 20, 160, 185, 28, 192], public_signals: }), ctx: EventContext { id: EventId(0x1bb051382cb8c51fd004398e14f8f3a45ef06daee1faeb0fa4e8c707753ae324), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 72, ts: 32742384730046387541810390872852321, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.836517Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3bESmShareEncryption, data_hash: [153, 104, 227, 76, 163, 91, 236, 155, 174, 210, 156, 114, 200, 214, 255, 235, 50, 163, 246, 192, 132, 124, 57, 213, 195, 40, 124, 226, 182, 63, 107, 46], public_signals: }), ctx: EventContext { id: EventId(0x6ab2c93a351a7c924cc342cddc10b34aaa01b14ca28561cfca6619fd28e83542), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 73, ts: 32742384730046553562507054258816865, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.837504Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3bESmShareEncryption, data_hash: [62, 13, 233, 164, 191, 202, 124, 39, 79, 205, 194, 66, 68, 40, 2, 182, 241, 95, 62, 227, 154, 52, 179, 210, 103, 151, 213, 43, 245, 231, 39, 1], public_signals: }), ctx: EventContext { id: EventId(0xbed67d8e12f6ad5f0bab2c88a5054dd8e457023fe9f0a6d464b306c5be2c714a), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 74, ts: 32742384730046719583203717644781409, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.838459Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C2aSkShareComputation, data_hash: [169, 7, 45, 84, 203, 3, 62, 98, 144, 48, 245, 220, 212, 60, 229, 199, 235, 69, 210, 128, 67, 14, 111, 158, 70, 187, 96, 75, 155, 250, 180, 226], public_signals: }), ctx: EventContext { id: EventId(0xc9d53e3c7c5a5e4013e401ee6902c755eb84935baa1acf34d232379e2ed084ef), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 75, ts: 32742384730046885603900381030745953, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.838491Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C2bESmShareComputation, data_hash: [218, 174, 66, 113, 111, 102, 34, 152, 141, 101, 158, 164, 12, 138, 101, 8, 16, 230, 23, 43, 81, 73, 110, 153, 1, 141, 147, 41, 215, 246, 95, 195], public_signals: }), ctx: EventContext { id: EventId(0x7484a181df1e7d07b58bd7febb533c053104daba749161fa6b3bdf13b2b9319e), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 76, ts: 32742384730046885603900385325713249, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.838521Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3aSkShareEncryption, data_hash: [248, 189, 65, 240, 30, 110, 64, 143, 17, 16, 161, 120, 98, 4, 144, 149, 98, 84, 156, 199, 18, 152, 249, 125, 221, 52, 220, 36, 207, 238, 22, 86], public_signals: }), ctx: EventContext { id: EventId(0x5287920097c62076a814442a8ede83e0444c8fad3b4cffb05975ae58b60ab56c), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 77, ts: 32742384730046885603900389620680545, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.839572Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3aSkShareEncryption, data_hash: [135, 98, 79, 156, 241, 157, 252, 113, 175, 144, 50, 156, 204, 23, 94, 28, 253, 3, 61, 124, 92, 111, 32, 158, 3, 255, 103, 144, 132, 128, 29, 120], public_signals: }), ctx: EventContext { id: EventId(0x5e9cbb39578976965d49e3eafec56002eef295b8353f400cf5419f4f42d50e80), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 78, ts: 32742384730047051624597044416710497, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.840609Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3bESmShareEncryption, data_hash: [61, 150, 6, 58, 65, 61, 87, 49, 53, 135, 41, 137, 233, 159, 224, 62, 113, 156, 89, 16, 64, 150, 142, 98, 77, 182, 17, 15, 198, 216, 124, 106], public_signals: }), ctx: EventContext { id: EventId(0xedb560ec4ea4a6607cdc47a1cb078e85e29b43aa1f9438c7b1bf47891b42b1e3), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 79, ts: 32742384730047217645293707802675041, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.841593Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3bESmShareEncryption, data_hash: [25, 172, 94, 194, 147, 115, 188, 254, 190, 50, 225, 8, 44, 68, 161, 102, 106, 31, 155, 135, 219, 223, 188, 2, 145, 178, 131, 105, 216, 111, 13, 90], public_signals: }), ctx: EventContext { id: EventId(0xfd4eff49fdd90efe3124edeaaefde43dfb7dcd6934e381d0cc9c3735390b8cd0), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 80, ts: 32742384730047383665990371188639585, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.842714Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0x751cf3b296e3619cdef059d0d61c329dc6fa3168494a61083b29558ac6dbf0e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 81, ts: 32742384730047549686687034574604129, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.842881Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding -[CIPHER] [cn3] 2026-03-31T14:43:52.844432Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.845996Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd275e6308b74def17738650dc3789d7e908d670bfb0c422669ab9b22ebd86210), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 54, ts: 32742384730260462006785790219356001, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.847552Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(46)` -[CIPHER] [cn3] 2026-03-31T14:43:52.847555Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... -[CIPHER] [cn3] 2026-03-31T14:43:52.847556Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... -[CIPHER] [cn3] 2026-03-31T14:43:52.851949Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... -[CIPHER] [cn3] 2026-03-31T14:43:52.852024Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... -[CIPHER] [cn3] 2026-03-31T14:43:52.852038Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... -[CIPHER] [cn3] 2026-03-31T14:43:52.852143Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(46) in 4.587542ms -[CIPHER] [cn3] 2026-03-31T14:43:52.853065Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8cf0f17824671da157292176bffe6fde4fce45fcf748e8da153ed635341e1ad1), causation_id: EventId(0xd275e6308b74def17738650dc3789d7e908d670bfb0c422669ab9b22ebd86210), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 82, ts: 32742384730389072706467693213222753, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.853433Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key -[CIPHER] [cn3] 2026-03-31T14:43:52.853882Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 1 (1 SK + 1 ESM requests) -[CIPHER] [cn3] 2026-03-31T14:43:52.853930Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.856113Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0x0a180a338eb7c4da93446a41cb9758e95832912730225d573ab847b9fb9018e2), causation_id: EventId(0x8cf0f17824671da157292176bffe6fde4fce45fcf748e8da153ed635341e1ad1), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 83, ts: 32742384730420118576743746388592481, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.859189Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.859213Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:43:52.861394Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe639be8389f6bc55f08306b98c0fb8e6ab2f129bccbab28b47cbb929b04345d8), causation_id: EventId(0x0a180a338eb7c4da93446a41cb9758e95832912730225d573ab847b9fb9018e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 55, ts: 32742384730518089234519217817225057, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.862769Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4738b086fc3c5f3c33f7b144b07bcd79dd0cc51ef48913a30fd8c914f6927b9c), causation_id: EventId(0x0a180a338eb7c4da93446a41cb9758e95832912730225d573ab847b9fb9018e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 56, ts: 32742384730518439722656618298705761, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:43:52.864045Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(160)` -[CIPHER] [cn5] 2026-03-31T14:43:52.934519Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(167) in 450.845791ms -[CIPHER] [cn4] 2026-03-31T14:43:52.934518Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(46) in 450.47925ms -[CIPHER] [cn4] 2026-03-31T14:43:52.934634Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x793bfbbe74bf4b0b0dc45591939b123a93a4a8727bcd96f4d69f81268dcef12a), causation_id: EventId(0x0e1f0bd201427ba43ff224d93ca16953ffc57e69b19d3038045b60212b889a8f), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 68, ts: 32742384731908125187449528312798977, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.934669Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x589ed8b7e33aca66c12e91b28b95ac546061f5eade2298401939d031e6b4fe1a), causation_id: EventId(0x2e374b30cde12a1ea02df1dce0999bef514eb3b18cf469858935450dfecf2c09), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 68, ts: 32742384731908401888610633984966725, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.935523Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C2aSkShareComputation, data_hash: [218, 162, 211, 236, 84, 197, 120, 126, 77, 193, 148, 75, 216, 100, 231, 110, 68, 42, 235, 155, 88, 182, 123, 159, 97, 111, 211, 123, 255, 94, 202, 53], public_signals: }), ctx: EventContext { id: EventId(0xa5c5989fda76973ee78f34b2f3cb6f058dfd7fff514c099353aff128322c0522), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 69, ts: 32742384731911537835103164579847937, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.935566Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C2bESmShareComputation, data_hash: [216, 252, 13, 222, 180, 0, 135, 149, 95, 254, 121, 203, 86, 35, 41, 6, 31, 0, 15, 236, 111, 208, 2, 101, 173, 165, 169, 18, 110, 166, 202, 142], public_signals: }), ctx: EventContext { id: EventId(0x0338b98cc9cc05c0e09cfeacfd873ad289b9335f44ac7e28f8a283d10e4d6320), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 70, ts: 32742384731911556281847238289399553, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.935597Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3aSkShareEncryption, data_hash: [166, 137, 202, 33, 191, 218, 177, 54, 73, 195, 194, 5, 2, 170, 180, 199, 137, 198, 86, 201, 151, 92, 78, 88, 52, 9, 232, 66, 136, 198, 207, 76], public_signals: }), ctx: EventContext { id: EventId(0xe98f6bf29ff95684bbaf66a8caf7643ee790cd74d78d95f675ed5fcd17ddeefe), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 71, ts: 32742384731911556281847242584366849, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.936605Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3aSkShareEncryption, data_hash: [186, 93, 93, 224, 50, 203, 172, 154, 187, 232, 21, 243, 53, 107, 164, 135, 83, 43, 114, 188, 11, 107, 200, 255, 39, 211, 27, 249, 37, 54, 144, 131], public_signals: }), ctx: EventContext { id: EventId(0x9c268c9bde82fe16b3ec0b7013b201accaa42643ed5809c9c161f58ac9ce0ea7), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 72, ts: 32742384731911722302543901675364097, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.937544Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3bESmShareEncryption, data_hash: [153, 126, 95, 217, 222, 98, 8, 173, 105, 65, 100, 217, 176, 127, 246, 168, 252, 147, 167, 174, 248, 38, 7, 143, 38, 64, 117, 84, 1, 62, 137, 246], public_signals: }), ctx: EventContext { id: EventId(0xa4add5971d677c1d5a7a7f9522d4ad9e3c392b6ddae26d2664da8e9c70e81faf), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 73, ts: 32742384731911888323240565061328641, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.939094Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2aSkShareComputation, data_hash: [137, 183, 168, 232, 5, 103, 160, 142, 51, 23, 172, 176, 46, 191, 77, 41, 54, 81, 137, 175, 130, 130, 142, 109, 203, 154, 138, 173, 135, 65, 61, 249], public_signals: }), ctx: EventContext { id: EventId(0x48cda04453f59b51130a20eaf0324d5ef821d6108b379a9bfe4d67756357ca72), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 69, ts: 32742384731913991252064967979106373, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.939138Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2bESmShareComputation, data_hash: [217, 210, 171, 137, 154, 180, 94, 218, 159, 205, 109, 235, 60, 18, 207, 140, 209, 231, 50, 56, 213, 41, 254, 174, 91, 211, 205, 47, 153, 200, 36, 17], public_signals: }), ctx: EventContext { id: EventId(0x695a7c68641c4bc7f45680be160278d3e1dade3ac577c473c261a0589bcedd57), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 70, ts: 32742384731914009698809041688657989, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.938494Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C3bESmShareEncryption, data_hash: [242, 73, 12, 120, 216, 124, 202, 250, 76, 51, 62, 130, 144, 120, 166, 177, 134, 167, 50, 90, 204, 192, 24, 253, 50, 86, 184, 56, 168, 252, 89, 10], public_signals: }), ctx: EventContext { id: EventId(0xd738f5c0fdc1deeb881312e2222aac4f1cb39e017fd4453c46b36b072fda5e2c), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 74, ts: 32742384731912054343937228447293185, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.940083Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2aSkShareComputation, data_hash: [137, 183, 168, 232, 5, 103, 160, 142, 51, 23, 172, 176, 46, 191, 77, 41, 54, 81, 137, 175, 130, 130, 142, 109, 203, 154, 138, 173, 135, 65, 61, 249], public_signals: }), ctx: EventContext { id: EventId(0x48cda04453f59b51130a20eaf0324d5ef821d6108b379a9bfe4d67756357ca72), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 75, ts: 32742384731912220364633891833257729, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.940144Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2bESmShareComputation, data_hash: [217, 210, 171, 137, 154, 180, 94, 218, 159, 205, 109, 235, 60, 18, 207, 140, 209, 231, 50, 56, 213, 41, 254, 174, 91, 211, 205, 47, 153, 200, 36, 17], public_signals: }), ctx: EventContext { id: EventId(0x695a7c68641c4bc7f45680be160278d3e1dade3ac577c473c261a0589bcedd57), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 76, ts: 32742384731912220364633896128225025, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.939166Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [109, 28, 143, 38, 37, 253, 43, 98, 136, 179, 27, 149, 56, 26, 38, 10, 57, 92, 14, 200, 181, 158, 225, 41, 169, 39, 157, 102, 152, 169, 70, 139], public_signals: }), ctx: EventContext { id: EventId(0x9e83b255754b3647341276c616c635c34eaae25a306a91e091b341b89e592010), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 71, ts: 32742384731914028145553115398209605, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.940198Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [149, 96, 131, 165, 165, 219, 140, 45, 17, 67, 130, 19, 57, 223, 94, 212, 43, 40, 234, 207, 12, 69, 129, 64, 241, 231, 120, 98, 34, 87, 204, 31], public_signals: }), ctx: EventContext { id: EventId(0xee2ffa147e2060581c442f66636758641c27e4c3ea019b883cd7da34fdc8d074), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 77, ts: 32742384731912238811377965542809345, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.940851Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [43, 107, 112, 112, 148, 245, 1, 235, 69, 167, 70, 142, 126, 4, 89, 219, 119, 94, 134, 29, 221, 98, 82, 224, 61, 113, 175, 119, 156, 203, 58, 213], public_signals: }), ctx: EventContext { id: EventId(0xde066be8f8a61cebb514bc21e196844ee2afcc99d3780470ed083b6f7b57fb58), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 72, ts: 32742384731914194166249778784174149, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.941796Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [224, 168, 69, 80, 12, 126, 136, 205, 231, 225, 126, 139, 249, 166, 180, 88, 210, 63, 104, 199, 160, 216, 57, 160, 163, 66, 155, 35, 30, 240, 143, 163], public_signals: }), ctx: EventContext { id: EventId(0xc1639704b62795f56c662ca7df44afb1902b8e0153b7a51ed232eb57a3ffaa76), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 78, ts: 32742384731912404832074628928773889, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.942676Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [211, 112, 114, 208, 128, 22, 223, 104, 165, 49, 25, 211, 189, 138, 24, 48, 149, 247, 7, 151, 239, 80, 179, 146, 221, 178, 164, 125, 177, 179, 202, 244], public_signals: }), ctx: EventContext { id: EventId(0x71fe7db6dfedfc4c471dd0b17dad514766da81d1f62a3da64a1c3d6f8a27540d), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 73, ts: 32742384731914766015316063780274245, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.942804Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [53, 22, 222, 219, 51, 193, 113, 202, 168, 120, 245, 182, 200, 38, 159, 66, 54, 135, 189, 132, 132, 207, 91, 230, 102, 49, 214, 173, 147, 173, 114, 129], public_signals: }), ctx: EventContext { id: EventId(0xa695f400140ab50b1bff86797133fb2be1247bfc0091552f87625898ce97d885), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 79, ts: 32742384731912570852771292314738433, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.943637Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [69, 31, 207, 187, 229, 79, 144, 137, 182, 75, 145, 61, 0, 175, 189, 116, 158, 225, 198, 182, 153, 135, 7, 227, 87, 195, 27, 110, 215, 243, 155, 248], public_signals: }), ctx: EventContext { id: EventId(0x38f2e4fea5246fbb79ece37506c097a025187be949f4aff18044afbcc69111a0), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 74, ts: 32742384731914932036012727166238789, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.944597Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C2aSkShareComputation, data_hash: [169, 7, 45, 84, 203, 3, 62, 98, 144, 48, 245, 220, 212, 60, 229, 199, 235, 69, 210, 128, 67, 14, 111, 158, 70, 187, 96, 75, 155, 250, 180, 226], public_signals: }), ctx: EventContext { id: EventId(0xc9d53e3c7c5a5e4013e401ee6902c755eb84935baa1acf34d232379e2ed084ef), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 75, ts: 32742384731915116503453464261754949, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.944704Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C2bESmShareComputation, data_hash: [218, 174, 66, 113, 111, 102, 34, 152, 141, 101, 158, 164, 12, 138, 101, 8, 16, 230, 23, 43, 81, 73, 110, 153, 1, 141, 147, 41, 215, 246, 95, 195], public_signals: }), ctx: EventContext { id: EventId(0x7484a181df1e7d07b58bd7febb533c053104daba749161fa6b3bdf13b2b9319e), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 76, ts: 32742384731915116503453468556722245, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.943770Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [34, 29, 66, 206, 166, 100, 13, 173, 176, 217, 189, 154, 223, 48, 142, 198, 126, 82, 156, 75, 84, 143, 250, 224, 173, 184, 145, 41, 142, 209, 40, 160], public_signals: }), ctx: EventContext { id: EventId(0x75909db4a8aa21793450318543068193090ae3f35d7b64d3c70030c2c92728f3), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 80, ts: 32742384731912718426723881991151361, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.945055Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0x7ff7c31c7386998e7c47a1cb276c65259f324726053d2e822c89a5c2cf57b829), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 81, ts: 32742384731912884447420545377115905, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.945252Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding -[CIPHER] [cn4] 2026-03-31T14:43:52.946822Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:52.947020Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3aSkShareEncryption, data_hash: [90, 247, 6, 12, 206, 144, 114, 132, 137, 38, 213, 14, 129, 5, 44, 138, 198, 55, 0, 75, 106, 26, 93, 96, 190, 39, 49, 44, 194, 214, 243, 72], public_signals: }), ctx: EventContext { id: EventId(0x7796e9d489dea2c61b6b180237abcea81c0b937145f5808e64109cbfe7d9dd32), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 78, ts: 32742384731915300970894201357271109, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.949260Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3bESmShareEncryption, data_hash: [20, 59, 252, 156, 21, 167, 180, 196, 181, 146, 190, 5, 59, 179, 239, 163, 88, 106, 2, 232, 73, 117, 119, 167, 225, 179, 224, 173, 6, 209, 174, 249], public_signals: }), ctx: EventContext { id: EventId(0x095d8d1221d8686102172771ea6aa195198f3807d5b5d7e56c1190acb605660e), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 79, ts: 32742384731915466991590864743235653, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.956733Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 81, ts: 32742384731915799032984191515164741, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.957015Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding -[CIPHER] [cn5] 2026-03-31T14:43:52.944779Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3aSkShareEncryption, data_hash: [230, 52, 183, 38, 39, 231, 22, 116, 38, 203, 171, 193, 42, 161, 44, 60, 178, 26, 160, 142, 100, 237, 117, 108, 144, 77, 202, 168, 186, 208, 94, 221], public_signals: }), ctx: EventContext { id: EventId(0x6cb65e5ec61a91cd960160b6b380536980688bc4f50996ccb61239112b5f991e), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 77, ts: 32742384731915134950197537971306565, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.954521Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C3bESmShareEncryption, data_hash: [82, 242, 17, 221, 155, 251, 130, 43, 214, 59, 153, 237, 53, 85, 152, 183, 91, 36, 126, 128, 16, 57, 207, 183, 254, 17, 171, 202, 226, 74, 58, 1], public_signals: }), ctx: EventContext { id: EventId(0xb018422bfbc7ec2bd3b1b2e4a45569a13be09d94cd13632ee9759b9b99f2a45a), causation_id: EventId(0x11b2850aa0eb88981d849a3e0d3a742b63c257dca6f2277be0b8bb2a859f7281), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 80, ts: 32742384731915633012287528129200197, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.959677Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:52.967812Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa46903a511f890dbea25e1141c0c8b123dd984855517d5de87dee21c0f71638c), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 54, ts: 32742384732405726108837843496534085, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.969357Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(39)` -[CIPHER] [cn5] 2026-03-31T14:43:52.969362Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... -[CIPHER] [cn5] 2026-03-31T14:43:52.969363Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... -[CIPHER] [cn4] 2026-03-31T14:43:52.967823Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x14335fd712fe013c41cd1bc608b8ec9029433f082e9a85c75dd01f24ad614334), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 54, ts: 32742384732151013466668061978926849, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.969513Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(163)` -[CIPHER] [cn4] 2026-03-31T14:43:52.969518Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... -[CIPHER] [cn4] 2026-03-31T14:43:52.969517Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... -[CIPHER] [cn5] 2026-03-31T14:43:52.973562Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... -[CIPHER] [cn5] 2026-03-31T14:43:52.973584Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... -[CIPHER] [cn5] 2026-03-31T14:43:52.973592Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... -[CIPHER] [cn5] 2026-03-31T14:43:52.973689Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(39) in 4.327875ms -[CIPHER] [cn4] 2026-03-31T14:43:52.973863Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... -[CIPHER] [cn4] 2026-03-31T14:43:52.973884Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... -[CIPHER] [cn4] 2026-03-31T14:43:52.973893Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... -[CIPHER] [cn4] 2026-03-31T14:43:52.974076Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(163) in 4.559125ms -[CIPHER] [cn5] 2026-03-31T14:43:52.987314Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x28c0906ee9153d2397590803bf9364da6a78e9334d47d57d701ec57a05439f0e), causation_id: EventId(0xa46903a511f890dbea25e1141c0c8b123dd984855517d5de87dee21c0f71638c), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 82, ts: 32742384732730259677326615638114373, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.991567Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key -[CIPHER] [cn5] 2026-03-31T14:43:52.993033Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 0 (1 SK + 1 ESM requests) -[CIPHER] [cn5] 2026-03-31T14:43:52.993125Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:52.996880Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd4342d1e60c122843a163b7308d7f00be511d65ae333d63dff0d06b5012b02ec), causation_id: EventId(0x14335fd712fe013c41cd1bc608b8ec9029433f082e9a85c75dd01f24ad614334), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 82, ts: 32742384732732657754056197850930945, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.997236Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key -[CIPHER] [cn4] 2026-03-31T14:43:52.999489Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 2 (1 SK + 1 ESM requests) -[CIPHER] [cn4] 2026-03-31T14:43:52.999600Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:52.993398Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0x70cbae3ae534cce2d60a6cdba9550f3b7807a08ce47bef733140208f35c82aa9), causation_id: EventId(0x28c0906ee9153d2397590803bf9364da6a78e9334d47d57d701ec57a05439f0e), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 83, ts: 32742384732987167482041168563470405, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:52.999107Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:52.999137Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:52.999471Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd0549fe9b491f214b10a4235fac83121a8ed338fa41a43b521df66e43759bc10), causation_id: EventId(0x70cbae3ae534cce2d60a6cdba9550f3b7807a08ce47bef733140208f35c82aa9), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 55, ts: 32742384733099120771824511832227909, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:52.999836Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0x444238e332c87a57f2ec41cc77058575c2163f9333ad9b146b7d4f98594dc860), causation_id: EventId(0xd4342d1e60c122843a163b7308d7f00be511d65ae333d63dff0d06b5012b02ec), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 83, ts: 32742384733106130534572521432948481, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:53.003554Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:53.003572Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:53.002713Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xabb4bbb9a6781e4573ddcba8d17f5645a1fcf529b4163b0f6c2d7b6bd89e4bc4), causation_id: EventId(0x70cbae3ae534cce2d60a6cdba9550f3b7807a08ce47bef733140208f35c82aa9), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 56, ts: 32742384733099581940426354571018309, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:43:53.004866Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(71)` -[CIPHER] [cn4] 2026-03-31T14:43:53.008262Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x99f39751155c0f873b6514ba6095cfdcbcbc129ac5618afb18fd70ee54b4c437), causation_id: EventId(0x444238e332c87a57f2ec41cc77058575c2163f9333ad9b146b7d4f98594dc860), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 55, ts: 32742384733181079655744003341164289, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:53.009583Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa09d5fe01f4973a682ba8c6f8ee8eef2e2e6681ae15b1f844855a3e715ef76f5), causation_id: EventId(0x444238e332c87a57f2ec41cc77058575c2163f9333ad9b146b7d4f98594dc860), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 56, ts: 32742384733181374803649182693990145, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:43:53.010976Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(191)` -[CIPHER] [cn3] 2026-03-31T14:43:53.353493Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:43:53.572805Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:43:53.577419Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:44:00.837851Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:44:00.837908Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(160) in 7.973871375s -[CIPHER] [cn3] 2026-03-31T14:44:00.838046Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd483360d8546ee84533ed229b6af40dcd2e9f8946ead4427cc073b865f689f38), causation_id: EventId(0xe639be8389f6bc55f08306b98c0fb8e6ab2f129bccbab28b47cbb929b04345d8), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 84, ts: 32742384877700122299605597611591521, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:00.839546Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(233)` -[CIPHER] [cn3] 2026-03-31T14:44:00.841927Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:44:01.719098Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:44:01.739948Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:44:01.740062Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(71) in 8.735201542s -[CIPHER] [cn5] 2026-03-31T14:44:01.740342Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(168)` -[CIPHER] [cn5] 2026-03-31T14:44:01.740291Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0645e21f6ebbadf79499dd82a1fc273d58337afa4bd08953f0eac3153772a46e), causation_id: EventId(0xd0549fe9b491f214b10a4235fac83121a8ed338fa41a43b521df66e43759bc10), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 84, ts: 32742384894342405868024881860509765, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:01.742372Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:44:01.933140Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:44:01.933947Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(191) in 8.922979709s -[CIPHER] [cn4] 2026-03-31T14:44:01.934823Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(50)` -[CIPHER] [cn4] 2026-03-31T14:44:01.934083Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd375f63fe596467e2e3951f6fdd80b3b6ee1478ae8d46a118c0133b7bd69168c), causation_id: EventId(0x99f39751155c0f873b6514ba6095cfdcbcbc129ac5618afb18fd70ee54b4c437), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 84, ts: 32742384897918417887177920669687553, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:01.935083Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:44:02.327780Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:44:02.483132Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:44:09.241789Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:44:09.241893Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(233) in 8.402351416s -[CIPHER] [cn3] 2026-03-31T14:44:09.242079Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb46eda42b955a3360b9ed7831179e31f91fa7c458131bea4d47ddf25a1fb76d0), causation_id: EventId(0x4738b086fc3c5f3c33f7b144b07bcd79dd0cc51ef48913a30fd8c914f6927b9c), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 85, ts: 32742385032726079879714752944113505, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:09.244031Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:44:09.244045Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared -[CIPHER] [cn3] 2026-03-31T14:44:09.244327Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 1 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) -[CIPHER] [cn3] 2026-03-31T14:44:09.244560Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0xf71c50a2af6e4578284a92107b7f032ac8b23834a9998fa33155292ca03d66af), causation_id: EventId(0x0a180a338eb7c4da93446a41cb9758e95832912730225d573ab847b9fb9018e2), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 86, ts: 32742385032770554979676466673059681, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:09.245875Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 -[CIPHER] [cn3] 2026-03-31T14:44:09.247098Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09.245851Z }, value: }), ctx: EventContext { id: EventId(0xf50fef34eb2eb482730bd0db7b4c26677f2631494d3a8f96d40731074716ed96), causation_id: EventId(0xf71c50a2af6e4578284a92107b7f032ac8b23834a9998fa33155292ca03d66af), origin_id: EventId(0x182e0f5dbe7d4e1c8cb78a9985c7fff902fa4b2c08d387ebf23ef215140d3c92), seq: 57, ts: 32742385032799055199270347930306401, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:09.256911Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), causation_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), origin_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), seq: 57, ts: 32742385033000364517346741210193665, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:44:09.256882Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), causation_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), origin_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), seq: 57, ts: 32742385032998482949451222864822341, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:44:09.259890Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xfc4d7ea05cbd967c9ac656aecea8c9962f1ebf86e24fd48f4d9ab81b002c5f61), causation_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), origin_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), seq: 85, ts: 32742385033053804734928277810118725, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:09.261241Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 1, waiting on 1 -[CIPHER] [cn5] 2026-03-31T14:44:09.261247Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 6.792µs -[CIPHER] [cn4] 2026-03-31T14:44:09.259875Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xfc4d7ea05cbd967c9ac656aecea8c9962f1ebf86e24fd48f4d9ab81b002c5f61), causation_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), origin_id: EventId(0x4e13dd811ae345d9e30274d48f4e140d3b58dc087bcce8493fc12e85e4a2fc7e), seq: 85, ts: 32742385033053694054463835523915521, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:09.262092Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 1, waiting on 1 -[CIPHER] [cn4] 2026-03-31T14:44:09.262097Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 6.417µs -[CIPHER] [cn5] 2026-03-31T14:44:09.884233Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:44:09.884340Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(168) in 8.144003917s -[CIPHER] [cn5] 2026-03-31T14:44:09.884525Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xedb5d6eec8f5283e7b83a7713a9db74afaee00c3302c946e57ac92c68c563d9f), causation_id: EventId(0xabb4bbb9a6781e4573ddcba8d17f5645a1fcf529b4163b0f6c2d7b6bd89e4bc4), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 86, ts: 32742385044577172163125381642256453, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:09.886608Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:44:09.886617Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared -[CIPHER] [cn5] 2026-03-31T14:44:09.886881Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 0 (signer: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc) -[CIPHER] [cn5] 2026-03-31T14:44:09.887179Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0xe77b6d24af9ef23667ae8cffff4341a3861007a5c604831ac7d668578e6346fb), causation_id: EventId(0x70cbae3ae534cce2d60a6cdba9550f3b7807a08ce47bef733140208f35c82aa9), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 87, ts: 32742385044623547277726687455019077, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:09.888852Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 -[CIPHER] [cn5] 2026-03-31T14:44:09.891012Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09.888827Z }, value: }), ctx: EventContext { id: EventId(0xb8e575990552c09955fe5e27f092c03a077850321fc24b2d713f27fe46e1fd11), causation_id: EventId(0xe77b6d24af9ef23667ae8cffff4341a3861007a5c604831ac7d668578e6346fb), origin_id: EventId(0x8ded5916485f9b55d177231c50d51393e6afc496723f3f087b07fdfb3509df84), seq: 58, ts: 32742385044659905810295968981254213, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:09.898370Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), causation_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 58, ts: 32742385044833378991565133575757569, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:44:09.898391Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), causation_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 58, ts: 32742385044832991609939584732071777, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:44:09.899807Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xb9cbbe7dc4a4ed3588bfea08fb70aa4e10068764dd29fb06a969cdf15a18eaa1), causation_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 86, ts: 32742385044860348131400896940220161, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:09.901086Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 0, waiting on 0 -[CIPHER] [cn4] 2026-03-31T14:44:09.901090Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected -[CIPHER] [cn4] 2026-03-31T14:44:09.901100Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) -[CIPHER] [cn4] 2026-03-31T14:44:09.901091Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 6.292µs -[CIPHER] [cn4] 2026-03-31T14:44:09.901103Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn3] 2026-03-31T14:44:09.900271Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xb9cbbe7dc4a4ed3588bfea08fb70aa4e10068764dd29fb06a969cdf15a18eaa1), causation_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 87, ts: 32742385044869128781579981743687521, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:09.901523Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 0, waiting on 1 -[CIPHER] [cn3] 2026-03-31T14:44:09.901527Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 4.875µs -[CIPHER] [cn4] 2026-03-31T14:44:09.901196Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), causation_id: EventId(0xb9cbbe7dc4a4ed3588bfea08fb70aa4e10068764dd29fb06a969cdf15a18eaa1), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 87, ts: 32742385044885804638222616121450241, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:09.903175Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs -[CIPHER] [cn4] 2026-03-31T14:44:09.906556Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 116, party_proofs: [PartyProofData { party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C4aSkShareDecryption, , [207, 91, 179, 182, 224, 174, 15, 119, 62, 37, 240, 97, 130, 96, 93, 250, 129, 58, 79, 166, 46, 67, 140, 27, 53, 165, 205, 24, 199, 29, 45, 250]), (C4bESmShareDecryption, , [107, 206, 217, 199, 8, 83, 24, 66, 8, 11, 118, 14, 164, 156, 50, 24, 49, 147, 137, 207, 206, 229, 40, 24, 15, 140, 148, 150, 3, 37, 71, 52])] }, PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C4aSkShareDecryption, , [246, 55, 190, 228, 208, 191, 49, 207, 49, 223, 224, 149, 191, 144, 127, 238, 145, 197, 201, 194, 87, 46, 163, 212, 222, 218, 251, 130, 172, 37, 70, 81]), (C4bESmShareDecryption, , [241, 138, 245, 238, 165, 120, 206, 86, 142, 125, 126, 246, 47, 176, 171, 148, 80, 213, 37, 206, 122, 80, 109, 189, 120, 149, 106, 41, 117, 210, 155, 246])] }] }), ctx: EventContext { id: EventId(0x9de2b9e21d07d4b4d34f30d4774d8c25d8041eedec28106f32a84e63babe8de9), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 88, ts: 32742385044955846925470491288936193, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:09.911318Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 116, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x10b8ee4c4c98459b51a6001280102d1c70b2a9952fa1a14d1de35e25dd54e98b), causation_id: EventId(0x9de2b9e21d07d4b4d34f30d4774d8c25d8041eedec28106f32a84e63babe8de9), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 89, ts: 32742385044989567573637232349290241, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:09.914259Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 117, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb851055099b71fd16ce2d019e77e100e2f94ac16cf4ddd1520796b5eef51f4fe), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 59, ts: 32742385045075695421717382245785345, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:09.939992Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:44:09.940048Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(50) in 8.005222333s -[CIPHER] [cn4] 2026-03-31T14:44:09.940101Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(87)` -[CIPHER] [cn4] 2026-03-31T14:44:09.940161Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x82d8e2c96c262ce89d6f687fb07ec5abd4df4ca64e9506cfa8f510ddcaceed29), causation_id: EventId(0xa09d5fe01f4973a682ba8c6f8ee8eef2e2e6681ae15b1f844855a3e715ef76f5), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 91, ts: 32742385045604600467798782509719297, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:09.941138Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:44:09.941142Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared -[CIPHER] [cn4] 2026-03-31T14:44:09.941285Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 2 (signer: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65) -[CIPHER] [cn4] 2026-03-31T14:44:09.941378Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0xa9d75a6e747355af565aff34d627e7902f12c9408bc52a63d7fd48716c536e5b), causation_id: EventId(0x444238e332c87a57f2ec41cc77058575c2163f9333ad9b146b7d4f98594dc860), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 92, ts: 32742385045627068602080560743587585, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:09.942685Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 -[CIPHER] [cn4] 2026-03-31T14:44:09.944742Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09.942662Z }, value: }), ctx: EventContext { id: EventId(0x453ec784c0d77fd73e4cccb0ef29f5808d3a778e2dd652e5420ab495786461fd), causation_id: EventId(0xa9d75a6e747355af565aff34d627e7902f12c9408bc52a63d7fd48716c536e5b), origin_id: EventId(0x180a962917e9c8333742c57827cfeb386fa2cc9e26fa99c34ef4aaf11f82fd94), seq: 60, ts: 32742385045652875597039680406298369, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:09.950976Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), causation_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 59, ts: 32742385045804268025652613753309025, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:44:09.951195Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-04-30T14:44:09Z }, value: }), ctx: EventContext { id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), causation_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 59, ts: 32742385045808566117021789050830917, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:44:09.952464Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x5c01a625ea03927182348b3453daa83f0aa5c24f718dfef4b630dcef1f184ab9), causation_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 88, ts: 32742385045831753674322440985216865, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:09.952590Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x5c01a625ea03927182348b3453daa83f0aa5c24f718dfef4b630dcef1f184ab9), causation_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 88, ts: 32742385045834410005469056132644933, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:09.953833Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 2, waiting on 0 -[CIPHER] [cn3] 2026-03-31T14:44:09.953837Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected -[CIPHER] [cn3] 2026-03-31T14:44:09.953839Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 6.875µs -[CIPHER] [cn3] 2026-03-31T14:44:09.953850Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) -[CIPHER] [cn3] 2026-03-31T14:44:09.953853Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn5] 2026-03-31T14:44:09.953854Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 2, waiting on 0 -[CIPHER] [cn5] 2026-03-31T14:44:09.953856Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected -[CIPHER] [cn5] 2026-03-31T14:44:09.953858Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 4.208µs -[CIPHER] [cn5] 2026-03-31T14:44:09.953864Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) -[CIPHER] [cn5] 2026-03-31T14:44:09.953866Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn5] 2026-03-31T14:44:09.954060Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), causation_id: EventId(0x5c01a625ea03927182348b3453daa83f0aa5c24f718dfef4b630dcef1f184ab9), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 89, ts: 32742385045859110195783753222258757, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:09.956148Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs -[CIPHER] [cn3] 2026-03-31T14:44:09.953960Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), causation_id: EventId(0x5c01a625ea03927182348b3453daa83f0aa5c24f718dfef4b630dcef1f184ab9), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 89, ts: 32742385045858888834854867735644001, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:09.956333Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs -[CIPHER] [cn3] 2026-03-31T14:44:09.957383Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, party_proofs: [PartyProofData { party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C4aSkShareDecryption, , [207, 91, 179, 182, 224, 174, 15, 119, 62, 37, 240, 97, 130, 96, 93, 250, 129, 58, 79, 166, 46, 67, 140, 27, 53, 165, 205, 24, 199, 29, 45, 250]), (C4bESmShareDecryption, , [107, 206, 217, 199, 8, 83, 24, 66, 8, 11, 118, 14, 164, 156, 50, 24, 49, 147, 137, 207, 206, 229, 40, 24, 15, 140, 148, 150, 3, 37, 71, 52])] }, PartyProofData { party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C4aSkShareDecryption, , [92, 132, 213, 248, 224, 88, 148, 105, 232, 108, 138, 146, 146, 11, 163, 14, 60, 173, 245, 138, 93, 10, 234, 190, 44, 2, 23, 165, 17, 177, 111, 29]), (C4bESmShareDecryption, , [227, 118, 168, 36, 94, 27, 141, 27, 52, 171, 13, 37, 103, 219, 237, 71, 32, 68, 213, 184, 54, 55, 21, 164, 106, 205, 118, 221, 181, 148, 107, 116])] }] }), ctx: EventContext { id: EventId(0xea4a9fff747686aaa9a4adba4ce8dca2945a50131e7d0efe69e3e98df1f13eb1), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 90, ts: 32742385045922161167027691497686881, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:09.957422Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, party_proofs: [PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C4aSkShareDecryption, , [246, 55, 190, 228, 208, 191, 49, 207, 49, 223, 224, 149, 191, 144, 127, 238, 145, 197, 201, 194, 87, 46, 163, 212, 222, 218, 251, 130, 172, 37, 70, 81]), (C4bESmShareDecryption, , [241, 138, 245, 238, 165, 120, 206, 86, 142, 125, 126, 246, 47, 176, 171, 148, 80, 213, 37, 206, 122, 80, 109, 189, 120, 149, 106, 41, 117, 210, 155, 246])] }, PartyProofData { party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C4aSkShareDecryption, , [92, 132, 213, 248, 224, 88, 148, 105, 232, 108, 138, 146, 146, 11, 163, 14, 60, 173, 245, 138, 93, 10, 234, 190, 44, 2, 23, 165, 17, 177, 111, 29]), (C4bESmShareDecryption, , [227, 118, 168, 36, 94, 27, 141, 27, 52, 171, 13, 37, 103, 219, 237, 71, 32, 68, 213, 184, 54, 55, 21, 164, 106, 205, 118, 221, 181, 148, 107, 116])] }] }), ctx: EventContext { id: EventId(0xfdf3659e49db7896d7ebf8e89a9893465ccf0312efb70fb37b2a39a8633a2854), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 90, ts: 32742385045919099007511456684113989, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:09.964054Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x5e634e70829339b4324c1b7f9984a332726f8654b1397eac609e298f06468960), causation_id: EventId(0xfdf3659e49db7896d7ebf8e89a9893465ccf0312efb70fb37b2a39a8633a2854), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 91, ts: 32742385045926643725837603890724933, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:09.964092Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x5e634e70829339b4324c1b7f9984a332726f8654b1397eac609e298f06468960), causation_id: EventId(0xea4a9fff747686aaa9a4adba4ce8dca2945a50131e7d0efe69e3e98df1f13eb1), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 91, ts: 32742385045925370900496516959668065, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:09.967377Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x2f335ccbfb822f1534e4bf4db25fece9bc13c66d625d130750dc823ee9b826fe), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 60, ts: 32742385046050015550202572399937377, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:09.967377Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe057fc943ca1ebee9b44f5bdf6035ccb169c121c7ca381eb87d4ffa2e3e21650), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 60, ts: 32742385046048742724861487412871237, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:09.969458Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(20)` -[CIPHER] [cn5] 2026-03-31T14:44:09.969499Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(180)` -[CIPHER] [cn4] 2026-03-31T14:44:10.082245Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(87) in 142.136041ms -[CIPHER] [cn4] 2026-03-31T14:44:10.082336Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 117, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x22bd52ab9443e1a8f8fee6f6510119e915649f4be678baaeeaa78fd054119d34), causation_id: EventId(0xb851055099b71fd16ce2d019e77e100e2f94ac16cf4ddd1520796b5eef51f4fe), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 93, ts: 32742385048227801262056575587720961, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:10.082500Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C4aSkShareDecryption, data_hash: [207, 91, 179, 182, 224, 174, 15, 119, 62, 37, 240, 97, 130, 96, 93, 250, 129, 58, 79, 166, 46, 67, 140, 27, 53, 165, 205, 24, 199, 29, 45, 250], public_signals: }), ctx: EventContext { id: EventId(0x1ab2b5433adabd723e0e548c05a08d4f834653a7f30fb77a71fadcf9beb56feb), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 94, ts: 32742385048230383806226894924947201, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:10.082536Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C4bESmShareDecryption, data_hash: [107, 206, 217, 199, 8, 83, 24, 66, 8, 11, 118, 14, 164, 156, 50, 24, 49, 147, 137, 207, 206, 229, 40, 24, 15, 140, 148, 150, 3, 37, 71, 52], public_signals: }), ctx: EventContext { id: EventId(0x8da6878ba86f4841196b75e8919abf5ab9ca5f5f645cc3dbcd2b3d8fee05585c), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 95, ts: 32742385048230420699715042344050433, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:10.082566Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4aSkShareDecryption, data_hash: [246, 55, 190, 228, 208, 191, 49, 207, 49, 223, 224, 149, 191, 144, 127, 238, 145, 197, 201, 194, 87, 46, 163, 212, 222, 218, 251, 130, 172, 37, 70, 81], public_signals: }), ctx: EventContext { id: EventId(0x62b3d378ec745bb1496d528f299249e487ad82a06dc98e0d22da82aecc056a99), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 96, ts: 32742385048230420699715046639017729, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:10.082604Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4bESmShareDecryption, data_hash: [241, 138, 245, 238, 165, 120, 206, 86, 142, 125, 126, 246, 47, 176, 171, 148, 80, 213, 37, 206, 122, 80, 109, 189, 120, 149, 106, 41, 117, 210, 155, 246], public_signals: }), ctx: EventContext { id: EventId(0xb873558a4d49c9388b3cbad1cd8ba9d50edc9634ec8d33ebee6cd22bca6072be), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 97, ts: 32742385048230439146459116053602049, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:10.082633Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0xbaa709f14e9c24d501165f00f3e0e4e768202b6e5b3bfc88249d322a499c3c6f), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 98, ts: 32742385048230457593203189763153665, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:10.082693Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated -[CIPHER] [cn4] 2026-03-31T14:44:10.082698Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:44:10.082980Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0x89ac24b53000f4021772da1466df3f69246fbb209a2bf4db0cee335b0df2a979), seq: 99, ts: 32742385048235641128287902147157761, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:44:10.083864Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated -[CIPHER] [cn5] 2026-03-31T14:44:10.086260Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), origin_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), seq: 93, ts: 32742385048291737677016052922515525, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:44:10.086295Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), origin_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), seq: 93, ts: 32742385048293047395845285328684897, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:44:10.086511Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), origin_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), seq: 15, ts: 32742385048291848357480491433472349, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:44:10.087877Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 1/3 -[CIPHER] [cn1] 2026-03-31T14:44:10.089696Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), origin_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), seq: 15, ts: 32742385048276021051065249995847996, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-03-31T14:44:10.089700Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), causation_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), origin_id: EventId(0x43dda0e6b44391969fe3b5621f457a1889315bd72b5ca999ec32e70679c9c128), seq: 15, ts: 32742385048309501891559034440407269, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:44:10.114789Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(20) in 145.323875ms -[CIPHER] [cn5] 2026-03-31T14:44:10.114839Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(180) in 145.330958ms -[CIPHER] [cn5] 2026-03-31T14:44:10.114909Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc633ee3ead5d3204314d6d459ff7597ac404d3294f55d3cecf621c68a906466b), causation_id: EventId(0xe057fc943ca1ebee9b44f5bdf6035ccb169c121c7ca381eb87d4ffa2e3e21650), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 94, ts: 32742385048828796183978032808263749, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:10.114949Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd0710ddfaa9e436eeb1e500e3a597843b598d23ecd0ab1db1fd8c7eed81cb0fa), causation_id: EventId(0x2f335ccbfb822f1534e4bf4db25fece9bc13c66d625d130750dc823ee9b826fe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 94, ts: 32742385048828427249096557645236065, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:10.115099Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C4aSkShareDecryption, data_hash: [207, 91, 179, 182, 224, 174, 15, 119, 62, 37, 240, 97, 130, 96, 93, 250, 129, 58, 79, 166, 46, 67, 140, 27, 53, 165, 205, 24, 199, 29, 45, 250], public_signals: }), ctx: EventContext { id: EventId(0x1ab2b5433adabd723e0e548c05a08d4f834653a7f30fb77a71fadcf9beb56feb), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 95, ts: 32742385048831655429309456816768865, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:10.115086Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4aSkShareDecryption, data_hash: [246, 55, 190, 228, 208, 191, 49, 207, 49, 223, 224, 149, 191, 144, 127, 238, 145, 197, 201, 194, 87, 46, 163, 212, 222, 218, 251, 130, 172, 37, 70, 81], public_signals: }), ctx: EventContext { id: EventId(0x62b3d378ec745bb1496d528f299249e487ad82a06dc98e0d22da82aecc056a99), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 95, ts: 32742385048831231154195762469077061, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:10.115133Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C4bESmShareDecryption, data_hash: [107, 206, 217, 199, 8, 83, 24, 66, 8, 11, 118, 14, 164, 156, 50, 24, 49, 147, 137, 207, 206, 229, 40, 24, 15, 140, 148, 150, 3, 37, 71, 52], public_signals: }), ctx: EventContext { id: EventId(0x8da6878ba86f4841196b75e8919abf5ab9ca5f5f645cc3dbcd2b3d8fee05585c), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 96, ts: 32742385048831692322797604235872097, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:10.115166Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C4aSkShareDecryption, data_hash: [92, 132, 213, 248, 224, 88, 148, 105, 232, 108, 138, 146, 146, 11, 163, 14, 60, 173, 245, 138, 93, 10, 234, 190, 44, 2, 23, 165, 17, 177, 111, 29], public_signals: }), ctx: EventContext { id: EventId(0x9653f93f70f415c4de2ba4b056cf7a7800e6213f955b2f66eb244c7c93338ace), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 97, ts: 32742385048831710769541677945423713, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:10.115161Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4bESmShareDecryption, data_hash: [241, 138, 245, 238, 165, 120, 206, 86, 142, 125, 126, 246, 47, 176, 171, 148, 80, 213, 37, 206, 122, 80, 109, 189, 120, 149, 106, 41, 117, 210, 155, 246], public_signals: }), ctx: EventContext { id: EventId(0xb873558a4d49c9388b3cbad1cd8ba9d50edc9634ec8d33ebee6cd22bca6072be), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 96, ts: 32742385048831268047683909888180293, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:10.115225Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C4bESmShareDecryption, data_hash: [227, 118, 168, 36, 94, 27, 141, 27, 52, 171, 13, 37, 103, 219, 237, 71, 32, 68, 213, 184, 54, 55, 21, 164, 106, 205, 118, 221, 181, 148, 107, 116], public_signals: }), ctx: EventContext { id: EventId(0x18c5bc9ab23c7fab56facb8b6d2605c7b9acfeb9c60afa9f417573ef7ca28a01), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 98, ts: 32742385048831710769541682240391009, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:10.115234Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C4aSkShareDecryption, data_hash: [92, 132, 213, 248, 224, 88, 148, 105, 232, 108, 138, 146, 146, 11, 163, 14, 60, 173, 245, 138, 93, 10, 234, 190, 44, 2, 23, 165, 17, 177, 111, 29], public_signals: }), ctx: EventContext { id: EventId(0x9653f93f70f415c4de2ba4b056cf7a7800e6213f955b2f66eb244c7c93338ace), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 97, ts: 32742385048831268047683914183147589, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:10.115265Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0x2ea0f1e588291153a624fc70f76a44fe2852d4f2438121d04a5667396c63dc46), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 99, ts: 32742385048831729216285751654975329, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:10.115268Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C4bESmShareDecryption, data_hash: [227, 118, 168, 36, 94, 27, 141, 27, 52, 171, 13, 37, 103, 219, 237, 71, 32, 68, 213, 184, 54, 55, 21, 164, 106, 205, 118, 221, 181, 148, 107, 116], public_signals: }), ctx: EventContext { id: EventId(0x18c5bc9ab23c7fab56facb8b6d2605c7b9acfeb9c60afa9f417573ef7ca28a01), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 98, ts: 32742385048831286494427983597731909, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:10.115299Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0xa5d04b3ae03f8ffea1d14589d29c95506173d077099c9ab667e80759600b1dbe), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 99, ts: 32742385048831286494427987892699205, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:10.115334Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated -[CIPHER] [cn3] 2026-03-31T14:44:10.115339Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:44:10.115367Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated -[CIPHER] [cn5] 2026-03-31T14:44:10.115374Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:44:10.118223Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 100, ts: 32742385048838406937640435484655685, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:44:10.118941Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated -[CIPHER] [cn3] 2026-03-31T14:44:10.118223Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0x6c3ffe0e0283c6c9ae628cd8b6d67ae292f0570174b4358dea255f636aee206c), seq: 100, ts: 32742385048837779748341928387905377, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:44:10.119191Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated -[CIPHER] [cn4] 2026-03-31T14:44:10.121137Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 100, ts: 32742385048932485332416354169003777, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-03-31T14:44:10.121125Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 16, ts: 32742385048940343645391752078195004, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:44:10.121148Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), origin_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), seq: 101, ts: 32742385048937724207733287710556229, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:44:10.122569Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 101, ts: 32742385048955580655996637584525153, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-03-31T14:44:10.122495Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 16, ts: 32742385048942723275377262218729701, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:44:10.128203Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), origin_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), seq: 101, ts: 32742385048979727443989124330692353, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:44:10.128221Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), origin_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), seq: 16, ts: 32742385048955377741811824005099869, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-03-31T14:44:10.128221Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), origin_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), seq: 17, ts: 32742385048976241009359190865639740, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:44:10.128952Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 17, ts: 32742385048955802016925519324787037, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:44:10.129617Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 2/3 -[CIPHER] [ag] 2026-03-31T14:44:10.129651Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 3/3 -[CIPHER] [ag] 2026-03-31T14:44:10.129653Z  INFO e3_aggregator::publickey_aggregator: All keyshares collected, transitioning to VerifyingC1... -[CIPHER] [ag] 2026-03-31T14:44:10.129682Z  INFO e3_aggregator::publickey_aggregator: Dispatching C1 proof verification for 3 parties (0 missing proofs) -[CIPHER] [cn2] 2026-03-31T14:44:10.131145Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), causation_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), origin_id: EventId(0x3725fb025b655fd96e875d684d664bc511118f96ed41876784c5491e07711952), seq: 17, ts: 32742385048998543122944307321919717, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:44:10.134065Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), causation_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 18, ts: 32742385049102361398591141712376157, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.135473Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, PkGenerationProofs -[CIPHER] [ag] 2026-03-31T14:44:10.147602Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, correlation_id: 78, party_proofs: [PartyProofData { party_id: 0, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C1PkGeneration, , [167, 1, 102, 160, 20, 248, 64, 89, 83, 41, 175, 187, 42, 101, 184, 8, 202, 181, 190, 171, 251, 185, 96, 93, 191, 14, 33, 109, 238, 134, 195, 48])] }, PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C1PkGeneration, , [195, 160, 166, 13, 241, 176, 189, 66, 192, 144, 172, 102, 183, 50, 205, 4, 80, 65, 29, 119, 49, 48, 86, 190, 87, 120, 180, 27, 120, 50, 65, 241])] }, PartyProofData { party_id: 2, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C1PkGeneration, , [22, 84, 201, 12, 100, 5, 176, 106, 181, 89, 169, 210, 128, 79, 111, 210, 23, 210, 25, 130, 178, 136, 242, 110, 240, 239, 78, 32, 22, 77, 225, 121])] }] }), ctx: EventContext { id: EventId(0x926c3178d2c758cad48a4b11f7b68ecbf4f9c859edd5837ecab55427795c02e7), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 19, ts: 32742385049226674006903870380716381, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.157023Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, correlation_id: 78, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x863facfc994647cde32254c36c3bf29774e0ef089223b519ea1f67a93b3ea072), causation_id: EventId(0x926c3178d2c758cad48a4b11f7b68ecbf4f9c859edd5837ecab55427795c02e7), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 20, ts: 32742385049434568812614577027428701, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.163258Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }] })), correlation_id: 79, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe984f93fd6a690247966175b23973b01d23ae4f7650eb12c05a0108828931194), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 27, ts: 32742385049609148798528164223922525, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.164846Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(42)` -[CIPHER] [ag] 2026-03-31T14:44:10.262856Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(42) in 98.002583ms -[CIPHER] [ag] 2026-03-31T14:44:10.262953Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 79, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xadc0611e7437f80201f563f421b6bcd7c8148559950ad598e1f2dc9cf819a3cb), causation_id: EventId(0xe984f93fd6a690247966175b23973b01d23ae4f7650eb12c05a0108828931194), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 22, ts: 32742385051559504602697401406730589, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.263108Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C1PkGeneration, data_hash: [167, 1, 102, 160, 20, 248, 64, 89, 83, 41, 175, 187, 42, 101, 184, 8, 202, 181, 190, 171, 251, 185, 96, 93, 191, 14, 33, 109, 238, 134, 195, 48], public_signals: }), ctx: EventContext { id: EventId(0xd0e4b6d6cf218728977773bafb952af2bf6c4769418643ece72e4739af580d98), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 23, ts: 32742385051562308507796605258576221, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.263165Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C1PkGeneration, data_hash: [195, 160, 166, 13, 241, 176, 189, 66, 192, 144, 172, 102, 183, 50, 205, 4, 80, 65, 29, 119, 49, 48, 86, 190, 87, 120, 180, 27, 120, 50, 65, 241], public_signals: }), ctx: EventContext { id: EventId(0x7d921d8e1b9796c71df9dacfff0174deb6bf39e7d9cb6fe8f8e7e22dc223da9c), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 24, ts: 32742385051562345401284752677679453, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.263201Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C1PkGeneration, data_hash: [22, 84, 201, 12, 100, 5, 176, 106, 181, 89, 169, 210, 128, 79, 111, 210, 23, 210, 25, 130, 178, 136, 242, 110, 240, 239, 78, 32, 22, 77, 225, 121], public_signals: }), ctx: EventContext { id: EventId(0x032a08c34b81181312e3b91a01d46242bfbacbe684e0529a05a0937ea60b9b50), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 25, ts: 32742385051562363848028826387231069, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.263238Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x305f112b0f0602912ec06a9ae327d0a8783578da11afff704ca89fc33f1cc633), causation_id: EventId(0x6952b133e4b0f7e4b30d7f8b47758af95dfb7cff01a63674d6de25e324f4f9dc), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 26, ts: 32742385051562363848028830682198365, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.268099Z  INFO e3_aggregator::publickey_aggregator: Aggregating public key from 3 honest shares... -[CIPHER] [ag] 2026-03-31T14:44:10.268187Z  INFO e3_aggregator::publickey_aggregator: Publishing PkAggregationProofPending for C5 proof generation... -[CIPHER] [ag] 2026-03-31T14:44:10.268229Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 2 (buffered=1) -[CIPHER] [ag] 2026-03-31T14:44:10.268244Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 0 (buffered=2) -[CIPHER] [ag] 2026-03-31T14:44:10.268255Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 1 (buffered=3) -[CIPHER] [ag] 2026-03-31T14:44:10.268267Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: proof aggregation disabled — skipping cross-node fold -[CIPHER] [ag] 2026-03-31T14:44:10.268271Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: proof aggregation disabled — skipping cross-node fold -[CIPHER] [ag] 2026-03-31T14:44:10.268498Z  INFO e3_events::eventbus: >>> PkAggregationProofPending EnclaveEvent { payload: PkAggregationProofPending(PkAggregationProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, proof_request: PkAggregationProofRequest { keyshare_bytes: [, , ], aggregated_pk_bytes: , params_preset: InsecureThreshold512, committee_n: 3, committee_h: 3, committee_threshold: 0 }, public_key: , nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"} }), ctx: EventContext { id: EventId(0x2e3be6e677eba8ab70bb0cb6cc1831d88d8507d2100967ac323d97b2f0c21f29), causation_id: EventId(0x305f112b0f0602912ec06a9ae327d0a8783578da11afff704ca89fc33f1cc633), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 27, ts: 32742385051657327686520283158950237, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.269422Z  INFO e3_zk_prover::actors::proof_request: Requesting C5 PkAggregation proof for E3 31337:0 -[CIPHER] [ag] 2026-03-31T14:44:10.272007Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkAggregation(PkAggregationProofRequest { keyshare_bytes: [, , ], aggregated_pk_bytes: , params_preset: InsecureThreshold512, committee_n: 3, committee_h: 3, committee_threshold: 0 })), correlation_id: 80, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xac786cc7d4499bcbe5c39506f5723dedcf3a9e09439c55c5408f8775d3388551), causation_id: EventId(0x2e3be6e677eba8ab70bb0cb6cc1831d88d8507d2100967ac323d97b2f0c21f29), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 28, ts: 32742385051680127862195388164747613, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:10.272756Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_aggregation(139)` -[CIPHER] [ag] 2026-03-31T14:44:11.678056Z  INFO e3_zk_prover::prover: generated proof (9792 bytes) for pk_aggregation / 31337:0 -[CIPHER] [ag] 2026-03-31T14:44:11.678159Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_aggregation`(139) in 1.405400958s -[CIPHER] [ag] 2026-03-31T14:44:11.678746Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkAggregation(PkAggregationProofResponse { proof: Proof { circuit: PkAggregation, data: , public_signals: } })), correlation_id: 80, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x963d45c98275df212fb925de6d6179cca6fd76f342798b1f2349290ba3acc9f9), causation_id: EventId(0xac786cc7d4499bcbe5c39506f5723dedcf3a9e09439c55c5408f8775d3388551), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 28, ts: 32742385077666978576033719003787613, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:11.679182Z  INFO e3_zk_prover::actors::proof_request: C5 proof signed for E3 31337:0 (signer: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266) -[CIPHER] [ag] 2026-03-31T14:44:11.679286Z  INFO e3_events::eventbus: >>> PkAggregationProofSigned EnclaveEvent { payload: PkAggregationProofSigned(PkAggregationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C5PkAggregation, proof: Proof { circuit: PkAggregation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4d5595d28ffdd3c11eb588a433687562ac5852f1030814c57b969180a8957df3), causation_id: EventId(0x2e3be6e677eba8ab70bb0cb6cc1831d88d8507d2100967ac323d97b2f0c21f29), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 29, ts: 32742385077685609787548165650919773, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:11.679614Z  INFO e3_aggregator::publickey_aggregator: C5 proof signed — waiting for cross-node DKG fold to complete... -[CIPHER] [ag] 2026-03-31T14:44:11.679638Z  INFO e3_aggregator::publickey_aggregator: C5 proof ready — publishing PublicKeyAggregated (dkg_aggregated_proof=skipped) -[CIPHER] [ag] 2026-03-31T14:44:11.679819Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x4d5595d28ffdd3c11eb588a433687562ac5852f1030814c57b969180a8957df3), origin_id: EventId(0xbc9e114c7994b1a65156fb5ed4d1780ed1341b9dcfc8c0d2ef0760b65a9231bf), seq: 30, ts: 32742385077694021502845777206456669, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:44:11.680429Z  WARN e3_net::net_event_translator: GossipPublish event: PublicKeyAggregated -[CIPHER] [ag] 2026-03-31T14:44:11.681103Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.publishCommittee(..) -[CIPHER] [cn4] 2026-03-31T14:44:11.683048Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), origin_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), seq: 102, ts: 32742385077734327638646836294196993, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-03-31T14:44:11.683061Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), origin_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), seq: 18, ts: 32742385077748605418559886735726821, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:44:11.686611Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), origin_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), seq: 102, ts: 32742385077728590701239911680542561, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:44:11.686629Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), origin_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), seq: 102, ts: 32742385077735010168177563576500293, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-03-31T14:44:11.686732Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), causation_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), origin_id: EventId(0x23b23165a608b8df53c1e44853aa018b431481c7e7a543e3d9dfcc69ad0bfd4a), seq: 18, ts: 32742385077748550078327663998695740, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:44:12.710761Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 31, ts: 32742385096711655412148492025868637, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:44:12.710754Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32742385096711452497963684938260225, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:44:12.710754Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32742385096711434051219610285606753, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:44:12.711237Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 19, ts: 32742385096719292364195009137899836, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:44:12.711389Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 19, ts: 32742385096723295307659005718976741, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:44:12.716248Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32742385096733902185501389491470405, aggregate_id: AggregateId(31337), block: Some(342), source: Evm } } -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] PUBLISHING PRIVATE INPUT -[TEST] ENCRYPTING NUMBERS -[TEST] -[SERVER] 📝 Input Published for E3 0: index 0 -[SERVER] 📡 Fetching E3 data from contract... -[SERVER] ✅ Received E3 data from contract. -[SERVER] 🎯 Committee Published for: 0, expiration: 1774968522 -[SERVER] 📥 Setting up session for E3 0... -[SERVER] 📊 E3 0 now has 1 inputs -[SERVER] ⏰ Scheduling E3 0 processing in 268 seconds... -[SERVER] 📝 Input Published for E3 0: index 1 -[SERVER] 📊 E3 0 now has 2 inputs -[CIPHER] [ag] 2026-03-31T14:44:19.047438Z  INFO e3_evm::ciphernode_registry_sol: Committee published to registry tx=0x2df4d0822f7f9ab3b140c141672670cfb6f00f5924a9fa78d16b6eed5424214a -[SERVER] 📊 Processing E3 session 0 with 2 inputs -[SERVER] 🔄 Calling FHE runner for E3 0... -[SERVER] payload: -[SERVER] {"e3_id":0,"params":"0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000ffffee0010000000000000000000000000000000000000000000000000000000ffffc400100000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000","ciphertext_inputs":[["0x0a8a2408021080041a8024cf724fbb12a414e3e19510b9cd51959009a5fb4e290a44af61a5adfa7181aa0b380e72a6811086d2d21df243ab8ada507162441a4d5a9cc126478c3368e0b07a4dea9b09fa7cb6cb5f9c4497c46271c0b63a8e12b629887c43e86015878a98c5e7a9b87c253f9c6a8894ed72ef4e751ac0e39c15df72dabb360d9074e9b0e99fb0162fb725cfd07cb4d6f1a2b2c9f391ce5fae4155cd497c2d2361f471a1f726076533b86547feee1684cd783fa420bedaad525777bea368e6daace94a8277fc81e57c55b5bbb69c73032e2f5f881d85e5b9d8aac5b3107afc14c4e4d7bda25cfb0867921c5bec9655d5a19bb8e5c086f66256e5081efa17ac53d5dde7a62d6aace9ff0b6b2deb8b5d99f86947b51c87df07e224ad30b0c67015b420182bfe6dbda49eea65629a19125729befe5d6a0856d874b1bac944ced5218033a3489e4abda6b410d3a574c2e5f9fcc9c735a59dbeccc146f3ae218ca53e691face45a21fb6547e88ae5e71ebde9fc6f8c364ffdd66f9d1ec704fb1941952832c8123471472a54af12db75396251d5b9196fd653bc0687e9f171d6fa10175abcb45385ee3bcdff0fb06b09a2c86539225b78c7f79af204dd8af762b2a8678b4fb0ee8f59cf529d5a56d302d0dfe92a2a242b221cbb55ba5f337fce5ee56c0cf8a4eb2a0cf11d940f8319166deb58e079b18955a569fa08ccc1b8854427618009553347026c443608b4fe6c3d6e609adfe79240c9649bb27355922849f19c01cbfc28ce5042fb842da0c2fd8ac98faa36ecd9a84e32c998bfff9ec1d96bb022166c22d203b7c48140f4ebda5582148e63c58f425a6c5ee3fb2e61b3556d36dc83731580245748e916bbdd568d373a66f3864ab496c4dfb374cfc3f63fe51500fdbf813f5093464db770dda24d28a460a311c2f10cd4a10f76c86125d938c57acaaa347f1ff1f7f0de46bab7d8156e43c2fceca3f67ad7e28fd85481035735113194edfdc21c90382815cc3e528e9400891a6f2ded17bc4785d3f38d5a60ba08e732790140af99c84e67820af152927543d84a10f2f293a53739d35c07a87e3bcda509e5e072aa17b595c3cead110ed68b875f30fa3c0bf7ff4daf070f74133a294efb1009ac6e6a59d58b95e67c8d74e3329c50776a82f4fae1354654a25f0b29a7975380774d1bd3de2cb19f77cefa62ef3f1fa7d8ec44db11c58f11899de5c9f9362b0617d17033c67670063d90d34873dac81efc56c08c08655f8df563644f015b10228687216005d185c5aa1e4f4a6226031cc911558f4618eaf7ca1a2180546c3724959d6034bb41ec1cb90d557ad077af0f1509c9349f270960d9c2167453422061a2fb1e75078850e44acd956733a4c3cb0960244a9ff54c79af09e9090d2298c985941bf79cf959df9bd25c03263aff9fd9278480fd9b6694c619ea3c131045bef9af7848967a95c6a2cc47a78651e1c18bf7128a7adc7e9b4c078c03e538d96d08dabba0e29138f8fd541a44edece7db502fa53fcaf683bfff05a74e6173a7559796a2535ba9922a4771fcce74866b7032fc296db605634bb08e96dfb74cebc483396179add759e3f6aaaca3ad0a8cea824ee37fa75f8b3d1f92c0df94399764368dc0e99114bce15a55ef158274e8f258b7a46b9c9699f1ca38ff74e5130e293b609882f59aa1111eab9cea4ae4330bf37b12e8e6b116275518ecb174f1fa94a9e8833c3a4e3dfc86b940f63f099b14a8e379401dce4c69626a47affc8a18f76370dfe80001388b7070ad25ac1376076fb0350a45f75033624cc502ab7fc37292b0dead7758d155389aba09b71e42ef043c8c261d29421ab092e081365db6e4933512bdedd31ed90de6ffe1b9181fc2fc221a8806cf38af8f377197279ded3bceeeaba57b23d1783319e96dafa956722445f59e75acf7adb0253aa22a385620c1c5196ab767195559b5ec3f1a0dc9a1644523f2606fddb280f9860cfe34d40189007a30a77010fd5f1c9f013cc187f55c951848456e26a92dfc42a791cdad842b150c839a9dda100e921d78d87f1ada14aa6820a08aa4caef8646a14147073bd16f85eb73a15895688d14fba18f102ce1b42266b2367a1c13f8a4de1d549c6db3b2757f05719040d57686cf240dbf5880a8e8edf2a9a4f48677b2b08b28b4b80254cefac47aa4242ab6771510d0bc3720411df3f7f91839ee0be9dc18dbd0778d0bf6ce93ff8895ce21b12a89fa1f00a44237313615c308d7088cc56ecc5d80691b26293faf387bf0b8fb4fefdfbb87177e690257cf211f3c2f50956fa6c43862a43571da648279b177558da3bb079d587507bc3a8de6303d88f5880580b1e7bfd5b218acfc5d99c58243985ef97b198e966424d85c3726491bcb7836c32b1521c0fc5021cf49818c6d51c7a1500b7f034bb586d753c5e7e54c4331f5c929ce603579dce0d8bb3d14fcf0d817edd614464f8330557574121e0806d7b5cfb6db244349baa199e346900f7e83d311261c6edc462410cb34c4275d86083411c9cac8bd7d6b2cc8e9f70dd42d10025804029a80e0527ed068444a64d7d92cd7cd9ecb5993b053db33045faf46b7ca7205c9128748e7a0923356d53bff97f59e278819ff8389918fe3db95b7dca48e5a0d687d68d7368f65259bc7cece16e01afc5d4fad313054f11b8c2221aee9eec4f51989ed9a3ad7da1e35b2d37eff7e26b822959c1368b00120441e6fc5e07a0667bc7f2856b8e9802a60654bdf0df1a0155dd01cb356d2f9ee7a50919f1231c5e95e0e9a25040a10e55ac6ba6ceb303e64a294d99214c92da85940ac5ce5cfebbf5aefb96ef1178068727545a8ee987a815fdbd823c1b8d59a861c04cf8318bc3c51f9172441258494f8f9da7dd5f7e9e97baa96861674c0c885e5d3e882e263891804adac8ee261ef86b7400387672c18e9393dea2ddca4abaebf9d02cc51d332581441027a2137f122f51a87592c94ea5d9a3ea03ed32639c3a376014d507b2076ee149f09353cf07db265bd73db3ba3cec18b178dd2b1682711dada7a11e522aa77967298bfcc1b6eb0d5cc749076e1cee48c446d70a0f1c1d32b24adedeffcb9e0ba548f1575180f1509b90a2d1250033fdc85535ecc1bf3a00aec3d67f91b277ed16dc999d9a2e28e6f8f7bdbfe6064bbb392e8f96d49ad4128aff965d0da5b463d8ee5e92d7253820c48fa25889d7cf5183b9389421f452fe45afbb1e8e91051cd610eef7075b342b178e97e523224665e5a6db311f6ea41e9c47fcb03ecff0b058b6ce5af595e3afdd97f6db688e5b7de6ac2a5f38bc3c6b33ed3a661d9dd88a8b0ac1039e20ca4a91fa0fa2ffecab367f430053f1d775e34907be73c99f26adc52380b8d73a45f1d6fb080e0172514394db0426918c0568c84d266e66d57e7a6b45fe0e20cd676897bd9e3e92ad00b47c54f746d679719b31cdfec8ddcae85e03ab7b2e2fa7aa46704f0f8e8259df1b369ce22e9272a95ad46a112fd62507f2377c69a7e5d8272014bbd20a3f1c7e369a6043007e3734f26e738a40eec5d26f21e214faa8389efebb20e39f28d76d373963897bd751a9d872d6714b616c89a614f8b4befa3338d0eb241f933921170c32fb1a88c39eb44e492c01107241755233ce7eda478ccab7287d9ff0e4458c810eb6978b7f0208a08d20f096f579859e5e971a91e71d449180c1297a3e797b08169a7343d913b8f67de3d39aa5d61257a30e426425878ea782cd10933495f1ba00f76a413364f2ee2c87c901ffdf3012718ad19cc17a92483677b15c604f4b71a59671de27a02ae9c94f6b7e1333e899a80279c74f072d93e6307d3004878e746f7665ea1237b8d00bb626cff7e4ad8cf2a9892fc2bc86775604fa80d861b8e93e68991bd6db6a5135db02732970b9305663def6b6f90bf244c5a147dcff0d4e6eef11db59c24422f5700591a1d05e2efa10e45f3606ec2c8c228648194c4f88ddce6c1c68a1b95910efaef38ff9006ec36dbd4b2d506861dccc3ad64b5ff50525d92d9340081d64f6145658719d7a8987182c5b6486d7b9e6d9c838c14422fbacc4c1cb7600542f81f33d0fc9e14ec8f58c88059dd901bc97939568cb5d2ef530c999efe166100c6386603bf02a31ea82f80a481ccb52e90ae811d4de32bfefa8609995057451348b077680b1a07de80762d9ad386a4fcffb5ea7fbeda5d80f90614193dd190c9c0cd287ead2bc08c6cb677be738023f56f8f94bb5b29dc7a36d5351c2ba97670053b9e775203cce5174391c4b154a0f9ccdedfa808f995c6ab47bc1da374b4308389dbda0e577777e1436129fceb9c9193388ae543c891d2308cc2bb83cb7e2d82f066a04812ee24c5ecf7b8012a5169b9a0c6e094e00e28113209ee5ede9409d3f007193ca4f65f2e062410dfe8337b059d1a8fa10591995f5344a9dfa97a2c52def1dc432d02addb42210ccd18f63fc8d6f420815551b26600979f72bc5e739a448ad9302569a027c5bab08267e945acba2f8e4c6932731231d55edd4cc4d3048062f5f4df6b63175966c931ab5a72a68044a6addcc876a5d61e9eaa11c395da812c71048654d7e56f6619b32d3cb45da75d4ed39d113819ad3c1fd2f0199896635f70cca58552c5ef2727cfc788cd202bbb8fbbc98573431a2574c24e90ac09b69e6d5414272885da48a1051fbcf60c4031f21c0bf9b7da98201fdf7280b3ff00d7804f4f75ac07d00f9181fbed3a8b105506235023617186b035337a5c5db5c227e0e519766e7d7bd86522e89196e4ccb580ca7a19c848ce7f3dc1c7b03ae1428b516754dc7faecb9f575088538d3f2b56a43863931da34459edbc1a9f509b6c80bc5c9132e1528be381c359e60fdc3d6bac4651b19cdb3b17fefa28cbba477b13128096a8dcd14454638ccdef1fdaf1a865eb1cfa9acd55de517b8ee367bf5e0f555c76077ea0851fddc1e22bec61680762e5864acc6b49684600fd044a544c464855c6c8b8efb4c129482c4d1813258e536a3f65599c985eddb69adde245dc7c44c997833dd04d26bbe1bc452a4d325d0174a158c02f5162e3a2addb5c2de06de31dc4138a1a79a30a7886884d1f1dc346311f274cbbb87e957c4b98e82469b89d9db71fb927c36aec1ccab7be22b76ba2e94bbe4b65b2d9bb78aaab188d3b8b426b2016d48d865ac98b03750bb4631dd88a0938a2d4dd5fa8de0b1ce9b3870febcc1e7c7886fc19df187658309e0d41392cf0c54783d2fb4bcd1fe9532b81a76ad47855ced3e11a48bfbbbffb6c4a544fe25520a0d3dce5447db8dd4b2b9952950a9435e9605d8df197c3a1e74fc9b49290917c595b2bc1183aae068226d1de50843d51516b98d06c1dcc8c8c8f31f77f62286a95a88388e48277df39af1f160f7fa1bbfe76a6e023b50d2bc334084de40cdc5fb4237ee87c3c36a5a5805635285ea89be89384fa9289b5a7acadeb028fdd726a553250d9dcabf6efc7b00cc78396a637154ba546f12b3ece232c2ab698f5d84e37d5946e5ddd7a43d49602e1f03805bc86c648c8106452dfc488d3ecc75f9f9827c44e1a4a32961a1acf624792b807e80bbdfc7e45d154a61a8c9213930b69ff9b045e386c8f76cd211e672274c7b960b9927d475ba3c42816babc25af898827d548ab489cf4e74d95446f2c575581ef6302816c979bdb24af5c85dc8126de4b3e4e200928d37d96f02b1d5b984b5c40fcef77e86eb54b7ffe27c3eda47713139b13511eb4d0063f7c51b00ae944197f0cc4cfe8291337fc25ebd7ef1c549bd1963ec4b042a3d4f9fade51abb5008665fd5a46016dde7ece22337a3f37a07533b12e7ac12d09f85901a9a7eacf60c65091f30f39c19a389b06b84cd1a2d3517f429543a5b31a9f1df18e5f8abc7fb6e8e92404c6c03914b2d03f5f3ed69fc2e58d29059646e9a48dd9257918eef91e806b7d6763d38019158a0bf0437fd8b12f4d9ed719f8bc9ac4ea6b744b2a7a5efc7e74039a2c1714cafb93b2c138e3b9870deef9473ee520b525deb221552867aad1358bb2c568574cf3de4d5c2e9957d9bb7325501a3691de0c056cb23240b58aa6706b25b26b75a1ebdd2427bac296f433719615c46df8a8a7c7308d0522ee3753178861a0b8ccd1077f7652b6da6c47662554a5562a4a16422171d0d061751b5182d4206ecfe0719f20c5134444323215d81abd3104b0f6942ebc0c7b11c447610de678555174ae6ebfb5aab011eab79f00fcb69642be2d594f16b2ce5d36fb8cb3bcc3574bb2e17c9199ed516f30aa4b795b8746ff0529f502a22739422be1be142b57464501ad50623dd3fedd686f32a9db592c58d65ce1306c1bb48fada354c2d57a11ca4461aa68333cb46def92ebee72f2315c122de45299d9bb067cdbf201610ae54230eecc46b633a403914339fdc6c9de42c7da3ba1f9357308f463eb96dfb730c425643e68ec271391948d2f13edb6ab583985f213028c960d5ff7c9535536f2af660d8f198b3364a2a6b920010a8a2408021080041a80245535610ea61a170ad1fc09783e5924b26a430ca091f091d19241f0a98ed4803bda2ca210f0714ff4e133d341b4ce6854508ee6a7aed673cd6f4e9ac6a5ef89cf217b91516df86de2985c7f46891b86e725a5b770eb80e9cfc916523bfbf8850e44854d462e8a50ecc67c0f16208afa46f6e8d779e77b23f4f4dc52d319ba5f5b3bfea4a27b14831d32fe3650ffebd524b2f838ec704a9314e3c7a6b070e62598307a3a9fdd5db895b0adacc788beb0507878a7fc52398dff4af6ea261ad9f32fd1234de430e3dd43ddbda52198559858413c6794b9f5d40c70e5ff67e0016151cfdcf8b0753ca04afc5be9e325c189177c154017376008bc07b815f7675710649126e359f1b54c797afae9d0a5fda062991631f9962dec0714998398f627e7a1c30e9055348420b073c918dce321d6d38ee0b8ce8a298059196f2f054f8332cb516adb18a9a8674c49e4933ea22d2444f147abc0a2ae8dc2a5bb8b131094b75ed2c55d045e8027228fcbebe471c4fac9285b7a519c5e7ea32d5cbac505f4a32949e8e4522e74c46f6f4790a358f8993f087bcdf84688a89767306434f8762ea823ea41e0418ccd5e138f78573cd7bcc3ef8ce753feddd2e650057eafd274d138740349f226106e8badab6340f39fd55d01e0c9b782ef0a851983ab0d7a4c5cd3dc4b240f0ded9e931bef82053601b6b054255354044b2dad7ceb0946acf8e1d42e67585da8dce4e3b8f46cf90606bc30ad0cc421820fa04c3d005955eb5b7b786ac0ba623ee360591206c1dc5e7da8604641464b1f376c379c79e2b22bddde2fa5f057ea80be73d966592a54487e95de7402b658c7b6b63313cd90a64dcc8588c58840dcf60600797b4f49de2a116df63a17b426b2b0c4198f8ae6fafaee8c2618424cdaf0a464aa13e5c2ceee66a1cdba4f2705d1224eba572d846dd414e75d37c1c16949b9cf7090a23a2ab56b6a479ad698029d6725365be5daf236f2a32e15abf30099c70fd61554d334cd4593abe9fb7a74f303253c7294e56389c7ed881430ea4e7c5ec1177620959fd2ae4413328a063ad6036504512be08e9edfffac0f627bed02a5439e37e66e58a254da629dfbf4e5cf08c55d134354e0a724a4ea37a1b73f119eef26ea33d3ac81d71f688cd7e674d0c584ddee9af41d7af956b388d41e3ad563a5981bdf5a1fa7c14ba771d7f3484d477c9bb65995226be638495a1bcb6c0b3507025dbe48e17dfc0b16289de0712a738fdd397a18bef047be72e995f8e776663471c7d47c137a525d636ecbadf6bc4621f938d23e027ba65ffc82c44a5bd338dfca5f74cfd2ce8d9efbae7e2b87e6dc0b848280fd147d182c520aacdbc6f79eaf7b69058044b11e104b925cdca57a83502719a4e4512a147f9dc7369632569ed38aec94a4fbe3c84e1ea403ec8ee4767fb7604ce1270a190092cf3e5e1b747b66be457536cd4a579fe2224e8496c68c614c3f3625bf038e5e20062970b9c7ca4407a2fd3fbd13d09676051cf879afc847cbf39d97354260c5b813fb61db2a7dcce68f438dbaa006ca1c66aa2e81375ff25817dbd6a9424205e53ab155bb3b12f3f50f05cbb9038edf4cf241b319d4bde6177a32d93a8849c3cd1a7fb7604e5e3b26d62021132eb09159174fb191be798a0d3efe932586665dd4d41d8f6d84853b1b973bef642ec5d581439b19f5c8ea433a2b3834f50aa7be9d7297e9fc4642142abb30eccf9b2c3a5a903c71a40ccb57e6e2b7745a6bd1b701aace917a5f4fc190fe54f7fe133a5a0bd07637da5c7e90d751508cc13f612aafd4c29836530c3488ee1e100ad16a4eec0a797a3dd610d35a67901824ceda5ed9137d5fc70df37a662cbe4358e11c5099e7890374ba55a3361792eb64b0e7d13b741191578fbebde0c0f77bced0761b9d941d68aecc6300456de66c45a4ebcc6509d59292149ea7a4e10544e8cfe944f06e732019cf5197bd73c0d433b45847ac582c124bb0bb5181c5b367680b0b3aa4be6f2db299f7bc77f831975a6a093e9e811b3e0b5a36f2b903c8c2b50bb5d173d223f818f3789212db372203443db2daebd6385bac62945da6c19ccef9a3e6e35540b29a2da1ae6dbb573f96d8a6b4f3eff0dfaf8e98c4f2ff12bf77a2509400df5bb2e3b5e4917c42c0c8846c914d431414173ee71a392210dcce69843e833f50c24b7926ae47a4ef0d93dec374514ce712c5c851f081c54d0d92b41aa9134a31a4afbf57ab87ecf48dd48f96a4067950d13f9de4a49fb1bd334fe924a4f03c1efc323ff964e1fb4f0bf21a9e0e3a7b53e68a25d4c4bf2d1dc5eadfbe6e534080c7211af9d69aa26d37ff3eeae2bc17ff923f8e4bf37d0fb94fcc2e01e902e48e5c85a30943ad31f38c851560c7125d0fa0715501435df8f6c55632d1ef4448bc308d6a5fe93a29d0993275bc883df48eab26435dc72e0844cb560b9c9eacc35edfb654f893a00492eb3abe70a43232f427785ad70cef1a22e9dbda55572006667b8a7646fd845f4f9917652217c7962ec86506611bbda5c2b8145ba24f697d8e3406f70a26ba436c2e7d1323bbbdba8a032e838a84f693d52a239ddccddf90b45697dd0e4bdb0f05594becba4b50aa06017b32af21b6bdd022e0d6a31d3d35514b93f3767c95c58083775a23f05447223abf05e9432183295ae35359419c5d4167ce02d5f967f33596ec4ced74b8b09e04fd093f555dc670ab6cd013948a5631e8b1bd2b816e4dbfbbcdb96db6d1e1d602d8410a4709da9892aad2290f57fbbcae0c449c576ec379e016a9aa8ac8257ff354394666b8672e65144c9cf8f3098f47d451b1d34fb5bd8bf4c1cc1bad118cfd935e02311722e8101b231fd62047231c93d7ca2df0d7fce0688d8b41b4acf3b09e56bbd2373f9cf34f9fd2b0b9bbc2f07c0a9a551f5a149b37ba9daf3b9f68ee13b2eef64ff6d691b365b2def15b254d685a372a49191e94afe1fe405eb451019b18131868b88b0bb7ff08c77941d2d6628f33abb941107fdef73062613deac823c6a2f559c24c542667c8c3ad5f6f2abfcf025cda9b88200fb3e11b133f66c27d1cbb058b0984d2b8b955587de1021b39c715400c07c87ed89f6fecb0adcb9f604e9c740315de819a589dece92763b07bcc55a768011aa034eaf701cf50207185c78b8b5bccdd0ea6c2671d264aa6cf28b83d13042a6a6528bdddce8c1ed188ff5f1de57587124a3a896458645dc5092ff896d9f053034fbb42d62ae8e2a07f342e168c7f81f2e31ca6cfdb96f092910a5a07665a2c0c76f19f2b279f99d96115c3b77490d162936b5f028c03fcd56943507346f4f6fed8a6b4417e9104dd92829e9604fe686c0cad8087000ce3e85960cde9a9d34da8ec22441c7ba046f63a70ce7b12fd3510e1c309fc6c9d0449fe94fef3f40c73b24c406e1c6eb0b547f178213454ef5b44aeb2f20dcd237ca9b317e9e0795c1e55591e95c2108d3c63f09259bd72da954fa845470f63ad675b65416162b2d51961a1421eb4957d08cc9f8e46d530e0def22ed61c42c4c3b2727f336bb0ab1215a3bb61ecf10b1daf9b0307f9d7e3ab7cc79ef1b3a821a3c165bfce3d83a7c29ebfd084b5bd554d7251e55f8f8555a06f2f3c698635e2e90bb7e7a6196409d88093d44b3ad3500495889d50598ad8ec9171dcf8894f4e15cd42e9efbc285204c272aa5d512bf4c44e548a65dc698105d372fff5d1144d8c1afae855112ae39784f88890c46900ea35ce83b45bab2ec02872938300b3330baebed529960946b19f50f945c81d185d36588e9849afa1ae706f51a62e08c5512dd24c37959c99723742f3ce0628ad8106c7155a83b0f0d34a1b0d3a87a34fc92a49409aeb3062c0fc0119233577a674ea8bcbb253f7aef016da6d2ad9b63ecfe790553bf6a553914448c5dc14dc2c8443bc6ca2b0ccd589f1589c29a7cadb8507c433783822d671ee02f078bb8b569a2fb1017086c2f5aac40dfab07ace907aa19ca2b94c50214231fd42ef403709cf386f3721c3de28f3a00a66f5d5db95cf7746ccb229e3f22b7ca630e54ce839eb3725221cf7cff4f199f0ab3a3cf0043e14b24de4982d7b6beba9a229f5ba41f968c9c072359e621b059f2a7551cda72af7c4275593e0ef93815bedb1f5192af22dab8d0bc07235c54ffe728ecfff6e138ed3743c30f332244da04522ab9b5756937ab8f3c72f2b3cd16ad39becf721a1024529d74be63fc61035279e78e4b885a1f4db9aa4995f89b30f909a288ca531da90f5ede198f0f36a9327c186207a22bade63b2b26b2bb11b2a29ccea4ea8c3bb8b6976401a40ee193ddeacc43513be327f4223c0c0974aa3c4d6f4d3d9b8fcedde64624f7623e6cb196ee53539d366bdca099f68083526cb66e6f562ba1a9a03387d2cb369d54146bf2da01d908737a0b6531393751ff96df5fc59224e11144a67d29db358e207a0902a2d8735ad7fdcce327cabe42a0142d8c2e3db42429166e1583591341ca29ddef2a82237ee3029b98077b93350c7df740b98e71c2fe434186f3008bc8056bb01343a4b4ec162ba278d0431250ed929ca3cad7e356f9a74b3fb85901fd44cd2326696d3451f3581d589ac7c6d21855fee546cc30726dfc39eb383560e3e987334d224bc9e30f8d1186f6f708a74c00071fbccb2add53025609bc67d2e7699134aeb4a35e59a6e53cc415ce62659d70dc8abf64ccbf1280eb864fbd20304fb1b5e57d5a172e9da6b96e81eb1c5c7626fc41c9558b80ec53514e85746bd1deb9c3728b2ad4b59f12e533d07405554649e0a05b7a6761509e5f6388b6eacc6f0b1043f8f3e019c7eca337271e7083117e03f47ca05655e38a1d00982815151769ca6182fee5a09d074557e499317ef32318e3917c00ba730f6f4564d060fb064017b5a10ea93fe8ac3e8016eda0737f60e2b98715487de00455ebd0cc043064a8d84b32be7c6797eda13bd264579231286fa76f93a6cea35f702afd75872d444abd1e10264384b2fb3f2d668e20a12a779ec6cb011ed29b7e44cfcac85627942b4229221cee37adb7ad86bdf2ce9c18ff5f04d93376bcc24f028ee2521edddd94a5f4235c4e85cdbaa33a2fa5568ac3863eb3b01fbaa36c90a8229e7551f8322be72f75b08e981a0b72ff10ee2b20d533e0cd89ac09e0017e495cba98979159974b4557227b63c4883db5697bad4690de5d15f73aa47b201b75dfa333c16723ad276edb8ee6744d60e28953808972d59ff968b6a3cc4194339d5a6453030ca7cf1f3bd024df2f91a925b47c1abf9964e7a74a6d553b697f5f049d99ce0f443876f2fbac8a5b1cea908b41dd830c56d8f58dc91ce0d759dc2cb22af4a830b5594d3a43962b244a6dc8ea1a55dc3d6786b50656d47491ff80fdab7672a9ec8390fb32aa2ced743f3ba27d8ca58ae57eae5247cae00694e9ea2abc4020489d573c8bf578977ed0ee3db7b5f1dbad2266c09248c58f2e2381286b63e280bee3d2b398631b1c3510983a22a0aebaba1596a734d4fe0f9a90c4bf2eafa2ac797d3e51edfe2d4af0b753612427bf61a7ba29a183b39d4f4936d60c2851bdca030be431e480e3740497f2caa6742032df2fbe60835c2c318447b20b2d6cb3cf7a811ae1253a173bb5ce66eaa7ae49c225de1354fdf1242620d376e54b0002feaaeb5c6099cb8885afdf0103c80decc7bfdf943d5a6a215e4113288c5cf9fbed7cfc20cc29a49890bf3d004f2c47fe9828db1f98f3d839f7c601c8290916e6e442fa49ee60250c028f300f2b52b16e2c52f1f933b3f692bf27d75bda7edd3a0d21841855ee5057cdbf383ea3fdb2035f831b0cdbd510f0f0b925ef042badd194da2d11627a6d5492b167a4d6048cf7bc5c2f88ce3f13647f3525cf19bfb89079aea0ab7c3f9abe35a83acea41b58d1d6a12b394d03ea4930de27bf9fd2b2a59c90e9c9c98504536c416acd935b6fd4803aec2e959caaa7ab608cc80dfa9f3274d478671ce0df30f9f82bcc2322df84c8689f8e3526f18941f3a1dfe5a8b3486db59e74e0231dd360ca6132cc5114656f5d6766ec691a85791a8cee527da5f1671ccc75dc057bede2986c0a8ff4406328a5f42b84dcf32e9e1098f8349a2ed02a42015a12ea2f590b2c75449a67c440070f2fe03a0d2aa593e6288501531ab5e3a3e3b3eb26a892ec33a010a77924dcdd0793ada6512cd790860d1d953bd802ccf059ceb1597dd7cbe94e96ba89350e360cb1f0464b6aeaf5d824bf0855b8d97c5adc27de06a5c190580596ec35799cfb69021b5045d6c6603daf0f41428e167a2c5bd8cab45c8b953a44a8ade858a6eeeb6ddf61f63a9643926fc21e76ec67e0dfe6783f6a8a14cba1835ab722f9ecb394da81c0bc409978244c3a474b18a320b041f256caaff421a33f782630b9929969868ec8767919fb10b54792aa7355bc12cf3a288889e0dc12d6fd0721b99ab6e6f5244b381fb83a367b6cbb14b3b988dbe043e65f102afcada3ff49e642001",0],["0x0a8a2408021080041a8024f91968a3a13ae388c0dc4c9263264abd7fb75077d628f580339133710f4e73a950812815d6ed746404a3ad32857840f6834385fff3071d7a90e6342643dafe39f12dc79ed78e8ee9689ca83a06803da74c66a6aa2f85463b8bcfe08688a1d33b20ada03d2bdb84116655c07b4761bcb2f894b47a0d48f817187ddb3232654ad99bd9382b39fb78d48e635729536fcf0b8c33926f66aaf8482bfd135402a95721931e3d17cbf084591de135368a16a3c1d9e70d39c56fcf087ef4abfa041d311770aff936182f0619b1bb49744dca9e4512675997a100c4bc2d3a1ee22ea75c39ebbd83c5a326b75d79d9cd9157460f65b0d559fa93009e52d30f6be6b15a981794f8c2ac3eb2a4799151ddce4e6130c6f945c1f33db1940f56dcc349018a541988121893ae3f2869f0f532c17da614c76d14ee80671b16c36a61f41ac04c3e9df1e496f1eed70debbb65e8ace73aa2c0e6d39865046f17d211f720a796cfb4d08eccb7ece034900cf8bb980b98e08a2f6eea01d57a00deea50ce76e1224c596b218e52540f49abaac909da5fd4df4c839d353e4f0d46abe2a28c00315706a8f601f8efff2dbac8ec9a6cd7629561fab7c38cc358debcf6e109b63cea22c7d6cdbaaa0837ee2e66e66c60247006f4cb4c98a8c1759a75e8fc68bc12df52602bc386a9dd4902b398ccd4c53922692cff9f8905b4cfc4afdf56b5c9518338559008f2cc59436708b1301ee8d6897a1cc395c1b2e4106fc3dd6ff25b8a03bce63cedf6d24f4919e0bb974305eafd9c02d4a953e7d86f58a39c963302ea2e22e2f0d6ee2d4a94fa075980944e72f2c02612b6e789ef21ef8ea046abe2c1929c5b2dc6f7cffba66460072a956421673bd6b45ef83ecff5ce68bf51f994794fb0f078ba223cf7d72c7912965ddc7d1d278c7ebf3957c5d54b95aac92b0fdca3dda57660988064a76dca7b21de8fb4ad3673872b46aff0d039dd0d8c3beb54af8eea81b9e911f9a37e76f74488f4598e065c3e07a80c304a9d6d7a1164f3e68b2abd8f3355819b4c1bcc7461bd9bd5af2fb4796b70546adb1c51b207d6172c4e940b26d5ef341e0398d014a9312f9dc8dba756389816883da5406b92ab80ff07629eebfc48157166ffbe49bb1458776d8b1d76c3bdfdb80bb3b5245ce73ca1f7dda592e019245ef0a844b2103bbca5c5da0cf1c3c742be250b320676674ac22d7de443825972c45426b95d89c5503eb83b5234a0c3c2e02cfff31e5c025f50a9b40c60b95c22df23b919493bd60d6f9e1db497242d97fe67d151fc56fd1bbae937a3bf975c3edf3ee216c12884512c38fba4d56f95b94d023e02724fd0633426828aba201627be4e204c83d7f8cfe06627211bb9dd2fc3d77eccc4422b701187103bebc028e74da14db6dca042ad7a733bbaaf537ee1d2a80447a088b508e4882be5000903e99e16c3e5dd002e408ff49b3ce8c0e279594d86c5cc7d5fa4f54714cb67111c17af06c20608fac8ca68f6e647bd0ea082f7e144eafc86f90086ba0d3a2dcd8e704b3d57ef136010b468fb18920e2b2f792b0a52534b25646206cd268bddeb954af7fa2ab24eb50b893c59cab93ce8b95b71fddf2a464c69213e254a9bcfa81917e4b36bb261416bde89ea9c2c31058513fad044ca42b0c4b7569f6b73970dea602e28329651ca45ee60266a7af1e4bc242f531934ed70b368e1c94d9f4c7e706bcaf5ace6a771bc906fd410642175a7e1440dcb5412e42c6c031cd8841bbd5a3f72d295836512acaf1b96a2ca851385d82a1c599d96d22190a6cf07e1afd26c6323aa70df3d71819e9241026275f2ad4992c6fcc691152b3c670fc6b98199408b4129c7fe24818768cae7a3a65a062c1dea551d63625a5f3f1acf854a162e0d71716035829cf8ed5c50660294e08b248656cf8072993712ebf29421b3d52cd231e80ca8b43ec224df31a6eb1d991e5c6cc2b04cb816d178e8d9dcf6205da108b92e6beb09ab2e20b82dc73aa209ebe66ddc0a3c922cab174aeebbd0e31f8f71307c4b8aae88167720ee49eee1df79d0a8a8b0143eae80fd3b68e2caf060e0a8cffd7156b4b4dc5a66f5cc2b6d1214aa0a622fd118fa442786701a6913b8e7a212b77cf1f03e6b88b80755da8e6047701af55df194e8448b581fd490333f75f1bb3775c4f53c81a3dea27a43c9d106a93d080557e678d7eeb98919f91643fbf9075f8d637e42c3b68083809f58907eb3386134d35592d20050fe1217ebd530735c26ae1574859b8569b4836bfa7328b49b23af5cd8861311470ee8ff3ff024f9d0e846be5007da32d0f8392c4c7bd9d9fdfc4da29c5c14f77b3471f0dd13bba1ff297e2979b84d962f4ea4bac38c7fa8543fcde7cd1b210f1f985e77dd8e842a618738b9d98786e2c8bae8a0429bf0eae23ba6e8d97a8546b38c148c46a2b7ddd1e168911aa90f3882dc31fd357db91c0de333af1898e1bbc78a51f68a636ea114e0e61ff8b4be9cf84374c5c3b1f376d4d6aea8585f03a731a88eef172eb0cc9e0d09388c9766eb0fead46afe2c4e0b1b04c91dbf83c369a884ddc98efa4429cf6eb3fd885c6be46737a46fb336650214ec496538189db66e801d4ce83e5f39f22fa75f2e03431398c9df31f850f28f937927d33adbb9a4774bbd834368265e576b1c82bf878ada7b536adf4e997e6879f532ddba215118a37234f981294509ba9e25b6eb03167eaeeb094ef88d16146de5886fe0970cb2654edb7b42dabef69512914df51dbec0e62a0e1f58d30236245d506d3c59ebc4040edae7d823917f3c4cc5476207d1bae77dff1d371dec65401453bc92402d26eada87a7ce790a9e9c7073a5ec9937dbf64c21eee20c8654004f119bf31692e64958bd119582f84d92f2b055eccd902e747e8bfc8a120deb227f7db05bbf9963cf125712ae626fa8195b02812cd86a6fd8b860d8bbd850032b5dd6435fdc8ef8ad062fc3814ed13540178d67ae4a0ee23560df9042732445fad3eb83ad7e7a2e68798965a856cdceb2f2aea32d3720a321d91f160acefafecc6bf85e3e0463cd00627269719167e9305bdd8dbe86a1be2e26f71302f3030fa347bec86c8116a441f01ef3bfb90063051fc9f61df826fbb2cc0d61a7f4c2fc2771b204706f74fc9bcd9f727d8690e950c9221f24b014d4e3e39e7ee42dc47485b38ea4e1377f04dd92f75f5ff76e784e30b84a2ab1a97fb44371703ad29bba1d98c832cfd7beed551378aaad1f751f2e1a4a92f1a7f8848b6556604d24c3811ed8061b267401e981d4e5aee76560eef84ccddd18913eb8b541ad1467a0e77054c03acd4f089e5729dcf1c277028cfa7b839f90812e259205d48a7a44402846f456b1af6ffb652b44f5ac18d7561949fbb6dc3d0729661a7b13c16a6bb98f6b11759f9624931743e000319713b6ab6332e42b0e37f4306dff60fe04e589f14be536aa45b1edf5c77eb54accb0b176a0f2c9e7a0301859ec79f8411bf738f5ad535255f71c347fbe13837d7a6cffb8abb4b64fc865831dabeaf90c8dc123df738d2eff8cd4f0784e822acce8e9ce67f133ed854891f9c0ab70f9a299441d62eabf14f33dbff16eaf3faa5aa0ce753d4dfbe36613df671b236df28c2af57734d50322e486d45003c03279de665501673a9c4c7969452f7a6f3de32c4bd099e2ef56fe14a90689ede6bfbe515515d07161a9739cc6865fc4801e2a87ed7c6bc287895e8e219d346e19a023b33165c71ea949f74be28d5989821de78eab01e885d968986e942ec88bea607ee78c4f6fc765d91d7d97cc850a6b9bceaea226e81885fcc3ec78cd5271bb5b3172ceadbfd39bd5a36574a113ffa8a98427c164598fb34bd6d897262b069d208be0c63f956507bbfc5b0a3b70402b9537366f59be25a391e772f0c93673f568140171263b240ed2265b299dabb697b91772daaed47d92b799e9be8e53c6de151fc618abc1a9fb019e11868fbe16d11cd1fa476053601bb481368b6801ba875bbec524281474b2113301bbdb2dad47d0bff6a30eca6ad542a8441304ff0dcd7f955cf16cd114c804e344bc820ebbd0be16fa3228ee7e82759eea4a4fff8df7d7f1a39c9aad87a77a6c4edc96cea28e8b06ec319309a819f173e8199d9a2bbe77d8278d17721666d585ec40e4dfcc7c5b8863108fcb5d9140e3cc2de4101d5096158950f9016ca6502f4b90dd9bdf1bb8dfecbc73f204377d170733a0d21b126318c82062733ed7aab4ea3f176ba814381660d0c335f246a1890e46d7df93421d5ca7bd447fe3891f0d8a544ad7b5565669102d08912b17405f346ab492a27add87c786e8a4201fe3dbd4c0fd94decbd76455224494e6d3967cc1e67fdfa5562c80d9cf62cd5372e2b7d51e1f53c638d9661eda183c3c2416d206a17977df4cfe0c2e86d526f869146d6142589fa512a33adf18e66b88c143a0a9b7f82669b3e60623dd079a6870eae998ef508b383b04ccfccdb4e2ec68020f06d40ccc9e2f1ad8f911c0b7115ef5c8ddf620b86e3d96e28a5e66006958c49b8bbb78bb2d406eea934051451f203f8bc4252902fcd4f3415c4f6028e49522371f490d2dd6eac01115dcf877b9f0bb475b5addbe94dd494c57967bd1d8db93b53eead38801257e5666587dd369726d98861e08c025c05be7b18809d0205afedf8b00338f19bfa33c882ae0ed10fda0fcb41e3332d4313361d1ccefe631c75eea3605fbb6df834683e595ff37ad4a78ef8ca2982ecc8c881bdbf81f96eb00bb6efc0f6d061fc77a9aa547db18188d65dda543b8017357e6102ecb6079b589559020c4476be84e6c8f5340fd9b1c21d731c066c33fecba16b4a10827bd5d47e27ff8e1f66f87d500061dbcd8da6720e18d22d716640dfe33de353c39a8c600068cb824ce933cc2a3b743e9ad431d69a62bd2b1ed4201501aa961d041bf0801942c0bd159351f8183aea5e67830f42f4f448e88816603ad8f513e48ef6acc9a81adf00d1ca57d1b4de4665f204ad53f165a1e306ebe4b1afe3b7592d03c94cf1a2890c9712934eaf13d538fab7f2bffda79a0fe4a86ea35661700f2208701d8e21f50f5807eb78e5d8b43f0d98298a5a4897f9d93ad46b0a1d5177c0769fa0bc5c41f3e80459df83d9572a753f2c0e639b652575fda8b0aadafadbba3e9072a47e2f9c16df858021dd3da794a870f3284c8ff8d8b5dc2bcaa3ac2c956a9edc8ebb95367c7f385423582b3a2005e4cb07264bf0e4446eaac57c76bda7b25e6b83fa2c83b1729340b418d933f09cd5c714db122ef893a8439a48ee9913c3d664eeec67b6a78809a0ac08040ebf948c732a2ef4a84ead067ccd236a0fc6702f5b6ba69aeae6511a45feebc801514943166f39934889fb42d80024644e4ae78e83042066002f2d6dce3677e6f00982803f653049567bf5f1c503d7dbfbc8a622c6a8567fcee1db4331bcc07e692fd138e497cd18476c88d683d60030a3eb7772df2ece383e73ae9830f1ba68031942ee10db966fbf89cf3cf499deee408e8bcc23b7ff19613c5025da0c5c8d82dcea370c4c319d93d0162274cdaeb20b75c27669dc97906e58bbf400561581731305591729ed9329e506d224dde0e455264efbeedc6e8195725abd9114efc50e86b4930ac2b9db02a9fb935e46fe89157d99ed5823a15e0f6319012159fc761483da0835c7c8ee411faca7c9fbf0081aba4a03116df1393970516721158f958de891dd7d5724a6800a5cc3664bbdfeec866f3b097b14ae4f16885e8ef0b3907b8d3f67f0804e5b668ce35e6d14b7eebe250ab7c2f8b9b88f835206fab2850562fe693dd7a6f083515cfdf1f4c776511e9d6ac8b27c2f05894a767ffacb4537a63ca7a352de9e2e9ace0ab9aaad7c0d6d811d91721ce62740e9601e79cfd6d6c064e2152f3cde64cef3f6e5d135db6e2c21280d362d8d1eb0a56a3ff714b420b732c60fad0c3e97db03531820e93ccf053cf0e4bcc4d52bdb9282cc22f44d64614bfa1834734376f03b9a299e47a305348528348109335f67519863aba594f37a816d2ed09c748a82065b71f3051e8d30feb14d93935e99efc4e46c9a933a7afca30134033ba1312545c2083a1dde65a71de30ff2f47c0900c7d1c120273947f00bdef4a85022787ef40345e1e1fa5d7492e1acf98b8a9d7900affc24840035212540231ca433adf63cc2c104e96fde9439ca456b452c62a542f59ac78b61da3d08e65f8c5ca4f14299fe38511db412ec4fd5abeb15a6e9aebaa99065c4f3017702786a5e77811c8b6ab77377b94563ba2242a9de1fcee6b105fdec37fb9abc78a4751600d511425610e3c17b4606fd75713c133d79268664c63dd5abc3f04146853268892133507fd4e2b8f09eece55c6cc58a6999703b16072f469b1827ee3906bc58d83fdf526d7a9d093abf0d7a6faa7790ffdaf2eb173e3119f2e565551ee26eda0f1a9c59cdaf3b3620e3dcc3d2c7f38b9f4c19757f1509acecd4280bebd93362620010a8a2408021080041a80240b7ec335838fc75d9c80cca5e807e6384c4b05100b56f82fefc1af9d4bc855c47a406ed7bd6884ee2a049beaf2bf840c981c6035c1061ae92cc3d8ebe15635c20ded06803e4377cece70bf08da4410cab92a704298316592e6403238e82267561743ff63d29cae853b3f4683a49a67d340972e070589173fba4c26931804cb3bb47fe220689b8ae3a1063f7a5209dddf10bcf458fcb134734e91b72d1da5a642ef38cb8e2d2fcf18589a7fa2d23a780114282ea4cc80e1d550c6ec7a2e3fd25e6d8deef3425112847a42ff4755acc3e21036c0180c5c110512094a23d5b87b71096a9afddb793234dd83693b2e1f4e2d1f1be4efc60a63c576b736e1aeff27807d5af3c262ad83c2cdc32c8a930453062b2c1236d14adaae62999c215e123570c11a905da7cdd994602c330a1af8810e4adff4df7cdd225927381ee9273f0a0ba7431587d2fdddf422923e11306d8db53624e3d4694a56ca1083528f28689fadf106ab73452c62656cf3f2652a449b541ef3a7065f88bc2a316954cf16bdf91c5dd95ee71787632006cd13bf6bac88548068c54fdf1bbecf131f5a4464e73c7d8d1d8e357c4e89e5ff36a91c114a6facb2b231866b9bb8fe92de137552f9d0703baaf11c6df697301377486797c586a1eff3415d5f47ada28d57f16ecc2e0e4d1f70f00896d864c3b87322ea51140b9743f633ded39612364f3eb8797fc69baff17237899e25b8ad3d34dfeed015463ff5d75446c45df9175f76b668a682a11b0fe797bfbf08d750e4d70d5ca08c0765b61f1d69d899dc3cfc25aa6f5bc072e010a69e3f20785009ce62d607e7e87acf0da7209942ba2814ac8133da864b660267c7e767f892f82a18fe4f2fce456ee2b55ac925ad911f29b91b7d47729fcdeadcb0209f600f415b8327a41be848817521848127c0bf30723eb741e7d9d704af72208087fc05d098d543ff7aa7c03770e2de9c62218d3ab816a6b6a8cef1501e50c4273f4285099bbccdab9f9da76184db49c09a3df2679439ec21ca9c7aefeca6477a4a4f988e92374b6068884e176b54ac88b4d747c311878d4bb2cc8cca9e14d03ad4ffe6f8722d89d98c1b522134b64cf05783fabcc178f296922ce1bd6c4d4059916479b4964c862f95313ebf2067d2bd53a018628618f117f2d21b9b8b20246bc36fb983ead8f31e7a99686591ae244133bf41b75bfa2016e1d2d6a6b8bcb6a24fd9e4c758dd561777e7eeae54983324268f135ca7f8809e9b217a85693c2e602d91d54e4a89f9257c6fd6534d4c520012c6e119150d9022947ffa043637af9c28bd571e5dfbca3347267e16ca227dad5061753912410e6ea3e5b6006b262b37173d761720eb1910cda36ae4b1cc0e3135bb135e0d55b77820ecfdfb4d55e8633fcb24fe3c00642d9afb83bc18bbbd65c7ce183752295bd76d6408412492b8f2936c4340792e03b49e3446b281da8619f59bd5c890d0a540840c82198db2d3c9ca509cdcc95d9e0d2039f4a5ee9d05a2c65d034cfbf93d212f2c9ca41cf8b17fba2ec3e3a5e584a461f414851b49477b91afdb80967d18e96ae0a9c66909e8752b3a115486e7463ebd37c67f72d3c5df89056702703500f16812e0148e0ac585dbc59e70dee609f3b2da0a9a775698dd06aaa864d95c3ce243e4d2b198e232cafebd665f1a1efe623bf92a2b46419733d950918f7e66a5513c264af09c374cb015535455639db36b8874dba5111a992ec57ff000d4e49bc7c869f2ec215cb1eefe0624a13447d4d5f2191723023b2235eec507c0278ad5616a6b6c8806316ccb25edcf5cd11761f3d5668f78df26aa009cbd8cf5514d61e11f8e9d44195cd33396c7bd67874938e89301f6f87208884f479d1caee129ad93178856fcb73f6a1194707bf5e675f097c32bbb42a2314634765723b6f7242adf92a17ec571d034b37d4d32f7381f3bd05b280ab7233ebc862ebd37aece78f6e49181f1a8ca8d009a8074c566599b0b22ad5c3d4cb297036673fec125f6198b55b5674bc7542988022d565cffe5851bfb5b075cb4887e79bca792a33fadc68315e797d0c8ff2781138806ac42ccfd9daab1e68ed0066af70e2b12d68fec5f31a4094dea5a1b2845a008cea376243c0fc6eaf4ac85b982fe200a6a8306c926d3173aa3a9796fb85ae5381dbbabce59af5bf95034a2ab53d50faac5a914681808a5cbb947bddb3ae91e77ff1a4411da259f93db713ae35883665d7c0ad948e6c9786a3c7acfad25471670493eafa41ec7a43a89cb5e316206669a2ed496a3ada84962de9ce7340d6801f3ebce45adb949ebd6234d9c229078a0081395c7db7fc1f3ef3dff99e7a863cfed6dd69d3c29c4a8019ff4f0ae36330c5c9bed82ef158c87cb4609720bcb1053540bb0e8d68e7e99b39e7614d0d3aad466885b7716f15f7bb9ce5ca86b0df3170f974f1e7d58c849b506eaa8637a106a0d59a507f623d53ac80690239984d8969b8ed33e84b6304abc060b74b615735358f7ffe39ab78e1b519e688c66942d4780a02f460d2187c30aec04e913dce24ddfbe7c79debe92fe93fd294dce81be2ca90778b5a6e27edc7abf644447d04242d4a2db1d9d5493ed47569a5b5901a97c7546e1d436863eb653262000ff0f522c7cee96ccc6cfb6b50270fcc5fbdb7922fb7ec94111e59baf77660bb0d8343b0bed2b5c93e656692dadc52325b86f024ac575618f1b3a90c832c7c33f27ec402e1d6556af841fecceeaef9511bb32240d666680c4e1328a916b58edcb5585fc1b5ae002a3443866d742c5b95d53d65958becd68a87c5d27368143be1edbfc24c51903bf6abcc0c4bed54eece8f25980d19325e4f73d0dbbb92e8ad625c611a33eb05e317a480e1ad509b01a647858b65eb7b1002030f9029e4fa9f15251b86a838b4c758d47b982d0d54b3d5d96533ba2d50e9bce82ff2d6eacc36ba7fcbe5d75a6f4c3a153715a2d3e0f58974adc17eee398e72df423b87ac4de59806a4f7fb8db36861b3564ac91b70e332bf0c69c87f216830c3bfc812631b91f13a1aaed3d7d8f26d26d77ca984542e159a271281010c9b46cd9d6e200fcc9c3aba0ed3bfada2b5e5b2305f068fcaf3a53912e7d7ce9e75fe4a6a116bd498857c25d07a08538bedd20785b4d62d46eff75c5275f709835e8507caeafd69016074c8182f08612c1b08620c6a0e0ae4d95a30365ce6718d0445cf1d0fc44c986a701a90d9e47fa8845d9b55ea1b9beceddc7bcc153e82f919204a92f558ddcde5340ea8fb3aafb94a9f257fb9d43ffa8f3af452b64f485356bfc01af7d2335c29e5fae3c89c57730ad1e0a31e5f9f8f8979daa88966e06e293d2c5421a03bfd63776244c2fae7ed11229cc4773889e1cc29717e87af570adae1f722f8103efed93e6de5ee5fbb7902efc00e1ae2955961f5e1bc4270a93570e4f9e82fce3a3f9482f6dee24087e14025fbaedd86fa8454e80f24c549eea81feef235ffc64abe93bd66a25fe8c3d8b63357e053539bf77e4ff9408ec2d6e371207690ebbafdde6776a037f5fb538433dd31ceb7585c2c7e68e4acf433fdf7544c4989a96e2db951e0952412a17344c2cdc6284a282539f2341007384c3c15a5df8fc0f83d346480eccd1d5ab5492dc54f2178d170f673b1715bf659240f7c866ac495b4aaefec3178cc59e851a1889f6a80e4108d5855b518c98da4142cebe3c4fa8a5e7cff0e369f2a58957dde04dbfb48f1d5721007e00ce8ad6b0b774670b811308fdb61cd35532b6f15b1d2f8a98f514c9ea843c4d84650594c61217e02bcf0ffe945f76f39da1c6997111d68757797bb4369ad232f6a3160bd16abdded3e13a6cdeb31aa2fa695ff752a5d281de2b23a5c3d0b1e8ce48383d2193dc67eb6624dbed8677cd148d44141fd466b13c950bcd81452316ed4188ba16c442e82d4578adb4390fd11921c2e0fc93a068f260fa834062230f76a05c5b5bbdd81c0f7e23392d76641586d5bae87adc0a8afd4351378dfbae75fcc7ef9275a3e3b7f4fc1402d8d1e058237caebc23cf5fc0da860b915c40a481d8aab0679c09012220eeb8e9b9ad2cf0dda855ac06d5411d6d392e2c4b4a2f08c68887869f6ba5e0ef7f035c131a2c50c734a630d40fdf75039e7092e7763f3b8c5602c183de6a5a006a7b442f78c25f15993f997d522650b1441088dcc222c2c8df554e43610e9db6e86b3903d3dbcc44643b005a79f6e71e2faf20e23dae0955e552956243aab3241a73fa84545502e078169127910a585acf1fa7c111736d821b0bf7468d1dc75638ad3390b8328f417d8fa6fe4879ffac08bfffb2cdd66a1ead83fd3a13a94d4b2f9af6561d1823cf85506972de476f296cca7ffa66267c50605ce19b9320ce58f387920e2c6dab7eec295bb82388097165f510517c5f09314758d3a987ae14bd81b4f0eb83bcc1c8c0e2a541dc1a953e9406ccc0a714cd4d608d4c7b6aa821039a69d41eb3618065bcecc0b86b1c673b7fad1f37e87f106d34bce9b24d0712c09a7bd520d04ebdd5601dc05a8cda254a07d50a46e7be435a811afd4d32df0d7b59da032792a5f427af479f474d108b7e710aeeb811e68b4fc1227fc9516c205bfc54b51644740ea0d320f96bce8824aca4c54708e87743010e6d98a5d435fc8722ead90d5fd7de7df6312cc3b20387e5f74f1a2cabe075af8c4cb875566219c601b7eb35b3b5daec6145a1a77bf5bfd5d152086a5dc3c97d36a6dbc7bdc0b52b10cdf97b8e2214cb444644052f02348233ff83dbb4f9dee6be6564eec22435b40d3ff2ca4ea2843d64eb75c71d8a2ca56855dde933a3df08f038ced74446a2e0cf85e4b1089cc398fa4e247853b915b46fc730159d5bd37bd8f37c5bf3c0219a2ada2f44ecf8a502ec261bb0e95e30f671aaab9adec0cd4e909a7f3ad3040026375ee8a43e024d8f931c510b20249d6303fa96bfaccb43203f15e24cfce4a41d2a66ca5ce38447acb3f42965a02db8ba32485385104716cc60ca52c8ef3e2c71e4d663eacc2e32aac05e348f6b04e0ecbe341ab46ac8ab6b13bf56fa9a8a2f4f91a145d2f259cae6e22276f53f4fc430cc399b03ef2150a9e086c60e06f4864c94936ef3212209782a4b7694794456b0fde43e4b0bf125d66a9c8eafc13803215247361256a88a7137817863f7a04b19f359d58e7211d70d47b97df894866c444d173470b063eb139486eb37650efd91db36e7e96d0c0940462139ed8efbb8106bcf5427b5db14837247bf026e31e5c8ed43e5a3423af096cf1194880b890bb6750dc4ddd2c133df20894a1d59f0084e997a3735860d778945cf765ce4f64afcc889d4ec05ed0abffd7730e45c08a89cf5450f46af845a18af3105879f04048323cf57f88faf7553e0b4450511d62f3526bff374be6455094e7262fe1aab9d3061f779ac05cbf7e07ebdb1afd21818b092faf9a8746126b11c0607e00e9e13961b0e5b2bb539bf147cba0445d18904f82074340210ee73bf22cd0ff4a7e243081de789f11f8178e0924fb4f9697515094a7f27e9d863d705cc3e0445b8960bd2291414c5eb9dbe26e53ff4e926a7c9b608bfeeb2f5675ecd25106041745a857309a16776a44f5a4b95e68db80fe2257ac38757edcf81f98df71828bf41a5b00b1bc5ef502c54fae3fea1061d5552e22990e27abde01b689015d5858e489251a55e711c18740b582bbd56c913d05af4bae77f5014dbd1050690d16ff8c4cf21a3a9feac6c2a8dc05b12106722dfc9918dec09394c7804e131ccc8f1f46b1b5eeb7c02ebe683808884e14fb64d3f0eb151a549afe8b4a6c1a130045bef9860d416e038e4b596b51d5f5ff314b17f318f478b692522429125947c411701771d7a8658fa121cde9cb326cc52b659bf9222a447e81ad8382c3e437f761a2b3714406c7a62d7ade43ce6a8ae505562abed545eb77ddf91d581a286fefffea3bfc45176b02aa58b90dc05a30a2f933eebae6f983fc6b2ec33cb3852b445b2898d3edab29358363d013829370b90cc30d80584fd249b545b86915b912da834062eaacd6db4806c95d861e1f9fcc2e748052f2771af3318055fc5ae39057b2cded17d0f43d0208e9df7d8718ca21534fee143b5ffc20a18a22f496ac9ce62bafd53cb65bbc4bacb7a82b00c47f99f3c8322f159138ffa03e1acbb4b7e1be4bbbef66d1c57b8bf36efe4d060cf5930f0a61ce72d90dba8095c60626f66e3fb0037d7caf7fef8ad4f582f3e86a34fa5dbdf120d920a3d0b035308a5646f9d315c6a4de9519768a4abc5d9c6199e8250994cb6e56a3a682fa4504f2d6f5dcdad408e81852fbe8028a408da4daca02827be8c938f1eabe34afc01f9a3ae3eb0a06e6afc5a78ee5de78ec7a847dc3fc5932199918a0c2c708194255d0696ea74743f5e54568a8db1d20e4df001909f61810fc376ec9a831d0bddba328d2930d479a5895ee454d7ebdbdd28fa6d49d72c5d6cc7123862e5cd37f918b3df5053f4862001",1]],"callback_url":"http://127.0.0.1:8080"} -[PROGRAM] Processing computation... -[PROGRAM] fhe_inputs.params = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 255, 254, 224, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 255, 252, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] -[PROGRAM] callback_url:http://127.0.0.1:8080 -[SERVER] ✓ FHE Runner accepted E3 0: { status: 'processing', e3_id: 0 } -[SERVER] ✅ E3 0 sent to FHE runner - awaiting callback -[PROGRAM] computation finished! -[PROGRAM] handling webhook delivery... -[PROGRAM] handle_webhook_delivery() -[PROGRAM] call_webhook() - status: Completed, ciphertext len: 9242, proof len: 11 -[PROGRAM] callback_url: http://127.0.0.1:8080 -[SERVER] 📨 Webhook received: -[SERVER] 🔄 Publishing output for E3 0... -[SERVER] ✅ Successfully completed E3 0 -[PROGRAM] Webhook response status: 200 OK -[PROGRAM] ✓ Webhook called successfully for E3 0 -[PROGRAM] ✓ Webhook sent successfully -[PROGRAM] ✓ Computation completed for E3 0 -[CIPHER] [cn5] 2026-03-31T14:48:43.693026Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 104, ts: 32742390095444970597845071794733125, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:48:43.693042Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 32, ts: 32742390095445690020863942720893277, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:48:43.693815Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 33, ts: 32742390095445837594816532397306205, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:48:43.693800Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32742390095445505553423208399734625, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:48:43.693023Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 20, ts: 32742390095446962846205030037616956, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:48:43.693901Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 21, ts: 32742390095447110420157619714029884, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:48:43.693163Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 104, ts: 32742390095444066707385459997810433, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:48:43.693880Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32742390095444509429243229027049217, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:48:43.693726Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32742390095445155065285808890249285, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:48:43.693016Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 104, ts: 32742390095445321085982471304218465, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:48:43.693944Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 20, ts: 32742390095457532830559267219069157, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:48:43.694796Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 21, ts: 32742390095457698851255930605033701, aggregate_id: AggregateId(31337), block: Some(613), source: Evm } } -[CIPHER] [cn5] 2026-03-31T14:48:43.698987Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(0)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7cf2b0466a88d94adbefcb7a1e9e9ef162e1e29f97bc2d4eeafd680f75673579), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 61, ts: 32742390095513094423709281168851013, aggregate_id: AggregateId(0), block: Some(613), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:48:43.700449Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(135)` -[CIPHER] [cn5] 2026-03-31T14:48:43.700458Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(0)`... -[CIPHER] [cn3] 2026-03-31T14:48:43.700888Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(1)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x26d13b6c04c8c464d4766f235262e6888d9eae50f01eef7cfe61338eeb2a6747), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 61, ts: 32742390095512651701851511167616865, aggregate_id: AggregateId(0), block: Some(613), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:48:43.701001Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(2)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1c8bf6d4c09b0f116ac6828d8ba0e28adedac03c5ef842bf8ad1f095ab3f781e), causation_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 61, ts: 32742390095511212855813762765692673, aggregate_id: AggregateId(0), block: Some(613), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:48:43.702368Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(38)` -[CIPHER] [cn3] 2026-03-31T14:48:43.702377Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(1)`... -[CIPHER] [cn4] 2026-03-31T14:48:43.702444Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(150)` -[CIPHER] [cn4] 2026-03-31T14:48:43.702449Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(2)`... -[CIPHER] [cn5] 2026-03-31T14:48:43.733226Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... -[CIPHER] [cn5] 2026-03-31T14:48:43.733247Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... -[CIPHER] [cn5] 2026-03-31T14:48:43.733322Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... -[CIPHER] [cn5] 2026-03-31T14:48:43.733368Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(135) in 32.912125ms -[CIPHER] [cn5] 2026-03-31T14:48:43.733646Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc9e817caa4be223929ccdbd9cf31e970fb482a1c802632176b990b1830579c3a), causation_id: EventId(0x7cf2b0466a88d94adbefcb7a1e9e9ef162e1e29f97bc2d4eeafd680f75673579), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 106, ts: 32742390096200862829753468091301957, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:48:43.734116Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... -[CIPHER] [cn4] 2026-03-31T14:48:43.735607Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... -[CIPHER] [cn4] 2026-03-31T14:48:43.735618Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... -[CIPHER] [cn3] 2026-03-31T14:48:43.735653Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... -[CIPHER] [cn3] 2026-03-31T14:48:43.735663Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... -[CIPHER] [cn4] 2026-03-31T14:48:43.735688Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... -[CIPHER] [cn3] 2026-03-31T14:48:43.735729Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... -[CIPHER] [cn4] 2026-03-31T14:48:43.735732Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(150) in 33.283958ms -[CIPHER] [cn3] 2026-03-31T14:48:43.735789Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(38) in 33.411459ms -[CIPHER] [cn5] 2026-03-31T14:48:43.735231Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0x335ad6e46558c3d012d947422dfc4b6ddda96f79ca4c7966a4f53082768d5bd6), causation_id: EventId(0xc9e817caa4be223929ccdbd9cf31e970fb482a1c802632176b990b1830579c3a), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 107, ts: 32742390096213388168979516876849221, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:48:43.737687Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 -[CIPHER] [cn4] 2026-03-31T14:48:43.738573Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x434663b9677551f35a79d0bb598a9af1a6d33d77d6beb18ca19bc7a7fb899c84), causation_id: EventId(0x1c8bf6d4c09b0f116ac6828d8ba0e28adedac03c5ef842bf8ad1f095ab3f781e), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 106, ts: 32742390096243991317397800994086657, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:48:43.738597Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x6737758dd5b526298bf88cd44414303a519e469937b6b2764008781a2cf8e254), causation_id: EventId(0x26d13b6c04c8c464d4766f235262e6888d9eae50f01eef7cfe61338eeb2a6747), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 106, ts: 32742390096245928225525539553904481, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:48:43.739061Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... -[CIPHER] [cn4] 2026-03-31T14:48:43.739061Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... -[CIPHER] [cn5] 2026-03-31T14:48:43.738591Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbff61ca069039a4b9954c3ca0196eabe3aecd11d9f4df57f1d5c300252235e4a), causation_id: EventId(0x335ad6e46558c3d012d947422dfc4b6ddda96f79ca4c7966a4f53082768d5bd6), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 62, ts: 32742390096279279938810807395221573, aggregate_id: AggregateId(0), block: Some(613), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:48:43.741376Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(52)` -[CIPHER] [cn4] 2026-03-31T14:48:43.740618Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0x2cdab83857a3604994cf93abb70f93f9567cc441d86f2e93dc0d29fdc2e708cd), causation_id: EventId(0x434663b9677551f35a79d0bb598a9af1a6d33d77d6beb18ca19bc7a7fb899c84), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 107, ts: 32742390096304644211912157999800065, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:48:43.743342Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:48:43.740603Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0x662aca4a40cc029687968ccf4f311721f0f3b151c085a84e75dccdbaa8d7fd2f), causation_id: EventId(0x6737758dd5b526298bf88cd44414303a519e469937b6b2764008781a2cf8e254), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 107, ts: 32742390096304644211912157056698209, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:48:43.743532Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:48:43.743858Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1cca42c8a83afdf97cef721c7f0f35fb055f87cc7a00017c5ae2f7057a2d7753), causation_id: EventId(0x662aca4a40cc029687968ccf4f311721f0f3b151c085a84e75dccdbaa8d7fd2f), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 62, ts: 32742390096387101157921638752421729, aggregate_id: AggregateId(0), block: Some(613), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:48:43.746018Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(220)` -[CIPHER] [cn4] 2026-03-31T14:48:43.743850Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8a27d7faf3adc1a9ef75f0b0446376f5f167e6e347fcda516aed8d93446cca99), causation_id: EventId(0x2cdab83857a3604994cf93abb70f93f9567cc441d86f2e93dc0d29fdc2e708cd), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 62, ts: 32742390096383614723291708590268161, aggregate_id: AggregateId(0), block: Some(613), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:48:43.746109Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(156)` -[CIPHER] [cn4] 2026-03-31T14:48:45.467188Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn4] 2026-03-31T14:48:45.467364Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(156) in 1.721251959s -[CIPHER] [cn4] 2026-03-31T14:48:45.467676Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x15fe354d60cbc7d065fefa11b4a1430a06475177b960770459ee2104751a52e0), causation_id: EventId(0x8a27d7faf3adc1a9ef75f0b0446376f5f167e6e347fcda516aed8d93446cca99), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 108, ts: 32742390128186594716362145086971649, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:48:45.474431Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 2 (signer: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65) -[CIPHER] [cn4] 2026-03-31T14:48:45.474612Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x2cdab83857a3604994cf93abb70f93f9567cc441d86f2e93dc0d29fdc2e708cd), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 109, ts: 32742390128316607368593650006761217, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:48:45.477098Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0x2cdab83857a3604994cf93abb70f93f9567cc441d86f2e93dc0d29fdc2e708cd), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 110, ts: 32742390128317050090451419036000001, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn4] 2026-03-31T14:48:45.477214Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete -[CIPHER] [cn4] 2026-03-31T14:48:45.477135Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated -[CIPHER] [cn5] 2026-03-31T14:48:45.486493Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), origin_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), seq: 108, ts: 32742390128522288565015511536173125, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-03-31T14:48:45.486497Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), origin_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), seq: 22, ts: 32742390128499433049108184621406437, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-03-31T14:48:45.486588Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), origin_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), seq: 22, ts: 32742390128519779807821484648462652, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:48:45.486500Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), origin_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), seq: 34, ts: 32742390128495300978435670715806045, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:48:45.489173Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=2 -[CIPHER] [ag] 2026-03-31T14:48:45.489179Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 2 [] -[CIPHER] [cn3] 2026-03-31T14:48:45.486493Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), causation_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), origin_id: EventId(0x9c0769980984f7bda8c9d9ef60ef8d906d04dfcabcb8360764c936bf97ad9874), seq: 108, ts: 32742390128511939941590159505721185, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:48:45.491934Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn5] 2026-03-31T14:48:45.492018Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(52) in 1.750631125s -[CIPHER] [cn5] 2026-03-31T14:48:45.495765Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x524eb93d2c3ff9379d1c5b4f53564176bf8389b9a1141555812fe77fc2e92723), causation_id: EventId(0xbff61ca069039a4b9954c3ca0196eabe3aecd11d9f4df57f1d5c300252235e4a), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 109, ts: 32742390128643299206139046194774085, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:48:45.498231Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 0 (signer: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc) -[CIPHER] [cn5] 2026-03-31T14:48:45.501774Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x335ad6e46558c3d012d947422dfc4b6ddda96f79ca4c7966a4f53082768d5bd6), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 110, ts: 32742390128755547643827568816357445, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:48:45.504266Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0x335ad6e46558c3d012d947422dfc4b6ddda96f79ca4c7966a4f53082768d5bd6), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 111, ts: 32742390128755971918941264136044613, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn5] 2026-03-31T14:48:45.504314Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated -[CIPHER] [cn5] 2026-03-31T14:48:45.504398Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete -[CIPHER] [cn2] 2026-03-31T14:48:45.508808Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), origin_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), seq: 23, ts: 32742390128933429596930349242276069, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:48:45.508826Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), origin_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), seq: 35, ts: 32742390128945051045696783293755741, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-03-31T14:48:45.508808Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), origin_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), seq: 23, ts: 32742390128944479196630499655317820, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:48:45.511355Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=0 -[CIPHER] [ag] 2026-03-31T14:48:45.511360Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 0 [] -[CIPHER] [cn3] 2026-03-31T14:48:45.513330Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), origin_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), seq: 109, ts: 32742390128955916177956200994015073, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:48:45.517850Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), causation_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), origin_id: EventId(0x51b56eec6b20e9fac44654b169d56af33726f4f7ab6cf78ca1f14aff67081c25), seq: 111, ts: 32742390128973625052266963106668289, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-03-31T14:48:45.534071Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn3] 2026-03-31T14:48:45.534158Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(220) in 1.788132417s -[CIPHER] [cn3] 2026-03-31T14:48:45.534306Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x07c458893a6c8567c5f915a1b8618371e294eb5d300de8e6510e478b66096c2f), causation_id: EventId(0x1cca42c8a83afdf97cef721c7f0f35fb055f87cc7a00017c5ae2f7057a2d7753), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 110, ts: 32742390129418505179092615419889505, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:48:45.536661Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 1 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) -[CIPHER] [cn3] 2026-03-31T14:48:45.537202Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x662aca4a40cc029687968ccf4f311721f0f3b151c085a84e75dccdbaa8d7fd2f), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 111, ts: 32742390129464437571836152203413345, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:48:45.539695Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0x662aca4a40cc029687968ccf4f311721f0f3b151c085a84e75dccdbaa8d7fd2f), origin_id: EventId(0x24ad2e29f74a9e3bcd61235e2f629431a91c895d3e07906109034f2a2ffa51ab), seq: 112, ts: 32742390129464861846949847523100513, aggregate_id: AggregateId(31337), block: Some(613), source: Local } } -[CIPHER] [cn3] 2026-03-31T14:48:45.539732Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated -[CIPHER] [cn3] 2026-03-31T14:48:45.539808Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete -[CIPHER] [cn5] 2026-03-31T14:48:45.544492Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 112, ts: 32742390129603415341687480937283653, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-03-31T14:48:45.544498Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 24, ts: 32742390129603858063545247577831740, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:48:45.544499Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 36, ts: 32742390129604208551682646701650269, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:48:45.547148Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=1 -[CIPHER] [ag] 2026-03-31T14:48:45.547152Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 1 [] -[CIPHER] [ag] 2026-03-31T14:48:45.547308Z  INFO e3_aggregator::threshold_plaintext_aggregator: Changing state to VerifyingC6 because received all 3 shares... -[CIPHER] [cn2] 2026-03-31T14:48:45.544759Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 24, ts: 32742390129610572678388079462996197, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:48:45.544916Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 112, ts: 32742390129614926109989475668598529, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-03-31T14:48:45.551731Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), causation_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 37, ts: 32742390129664547851547750644986205, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.558676Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ThresholdDecryptionProofs -[CIPHER] [ag] 2026-03-31T14:48:45.560616Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, correlation_id: 87, party_proofs: [PartyProofData { party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proofs: [(C6ThresholdShareDecryption, , [47, 191, 140, 45, 252, 95, 85, 125, 239, 68, 99, 120, 147, 195, 204, 13, 98, 216, 221, 5, 241, 56, 144, 214, 32, 105, 27, 242, 148, 205, 14, 55])] }, PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C6ThresholdShareDecryption, , [107, 50, 197, 213, 155, 86, 164, 83, 240, 170, 141, 224, 72, 81, 11, 188, 89, 149, 16, 133, 103, 29, 176, 189, 178, 124, 15, 186, 42, 97, 111, 127])] }, PartyProofData { party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proofs: [(C6ThresholdShareDecryption, , [228, 163, 146, 93, 123, 58, 201, 68, 131, 130, 167, 248, 222, 201, 15, 62, 222, 45, 126, 139, 142, 206, 113, 89, 4, 179, 247, 9, 4, 45, 23, 80])] }] }), ctx: EventContext { id: EventId(0xc4f31ccfe7b1b21682428da3bfe9eee5ceb5e88dbd34e57bde7647cfca7671cd), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 38, ts: 32742390129900500154994569519706461, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.566297Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, correlation_id: 87, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xa2848a1bf74554b1a857d857468bc3776b70ea5c5428b46d30497a1e311fbc7d), causation_id: EventId(0xc4f31ccfe7b1b21682428da3bfe9eee5ceb5e88dbd34e57bde7647cfca7671cd), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 39, ts: 32742390130004576685058438809923933, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.569802Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xf02ebb8bf4a5a72b39ab9fc9c3c88a5dcbf987225c180c9900bb8cbb962fc8a6), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 29, ts: 32742390130011826255479406663709021, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.576820Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(52)` -[CIPHER] [ag] 2026-03-31T14:48:45.677535Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(52) in 100.709708ms -[CIPHER] [ag] 2026-03-31T14:48:45.718781Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xac098f3b9b02a0e725e68319cacfb2d54eeb81aa2d6d8f7a6746cdd47bd62f82), causation_id: EventId(0xf02ebb8bf4a5a72b39ab9fc9c3c88a5dcbf987225c180c9900bb8cbb962fc8a6), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 41, ts: 32742390132769134879153068181959005, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.725635Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x15d34aaf54267db7d7c367839aaf71a00a2c6a65, proof_type: C6ThresholdShareDecryption, data_hash: [47, 191, 140, 45, 252, 95, 85, 125, 239, 68, 99, 120, 147, 195, 204, 13, 98, 216, 221, 5, 241, 56, 144, 214, 32, 105, 27, 242, 148, 205, 14, 55], public_signals: }), ctx: EventContext { id: EventId(0xf2b977b71ae3fd3c6b28fe80e469e5c4c28414ba961d40d12fb7b84119acba3d), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 42, ts: 32742390132825231427881218928423261, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.727780Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C6ThresholdShareDecryption, data_hash: [107, 50, 197, 213, 155, 86, 164, 83, 240, 170, 141, 224, 72, 81, 11, 188, 89, 149, 16, 133, 103, 29, 176, 189, 178, 124, 15, 186, 42, 97, 111, 127], public_signals: }), ctx: EventContext { id: EventId(0x7effd7a1e8fe9b702eeae0a67fb649f46b821b99827173ec635f96d3997a167d), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 43, ts: 32742390132825563469274545700352349, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.729897Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x9965507d1a55bcc2695c58ba16fb37d819b0a4dc, proof_type: C6ThresholdShareDecryption, data_hash: [228, 163, 146, 93, 123, 58, 201, 68, 131, 130, 167, 248, 222, 201, 15, 62, 222, 45, 126, 139, 142, 206, 113, 89, 4, 179, 247, 9, 4, 45, 23, 80], public_signals: }), ctx: EventContext { id: EventId(0x6e68b4940bab921ddd78f6ccb40f0a260ad825ebb560f7de73b26e199e0e724f), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 44, ts: 32742390132825877063923798762729821, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.731918Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xd7c38ca6ed81f848a2cc195081ffa58c2351815845fb5b5df8d0d65644150016), causation_id: EventId(0x38aa4e057b52e0911a671f702199146446ab315410c63e8a484d80ecb7a97250), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 45, ts: 32742390132826190658573051825107293, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.731985Z  INFO e3_aggregator::threshold_plaintext_aggregator: C6 verification passed: 3 honest parties, transitioning to Computing -[CIPHER] [ag] 2026-03-31T14:48:45.732010Z  INFO e3_aggregator::proof_fold: ThresholdPlaintextAggregator C6 fold: no proofs to fold -[CIPHER] [ag] 2026-03-31T14:48:45.734845Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateThresholdDecryption(CalculateThresholdDecryptionRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, d_share_polys: [(0, []), (2, []), (1, [])], ciphertexts: [] })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x039389224905e9c22db554fb6171ebb1728f088d4c9c1b11ec1934b74e92216a), causation_id: EventId(0xd7c38ca6ed81f848a2cc195081ffa58c2351815845fb5b5df8d0d65644150016), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 30, ts: 32742390133067529411289393888899421, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.735564Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_threshold_decryption(81)` -[CIPHER] [ag] 2026-03-31T14:48:45.735575Z  INFO e3_trbfv::calculate_threshold_decryption: Calculating threshold decryption... -[CIPHER] [ag] 2026-03-31T14:48:45.746739Z  INFO e3_trbfv::calculate_threshold_decryption: Calculating threshold decryption for ciphertext 0... -[CIPHER] [ag] 2026-03-31T14:48:45.751084Z  INFO e3_trbfv::calculate_threshold_decryption: Successfully calculated threshold decryption! Returning... -[CIPHER] [ag] 2026-03-31T14:48:45.751114Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_threshold_decryption`(81) in 15.546958ms -[CIPHER] [ag] 2026-03-31T14:48:45.751163Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateThresholdDecryption(CalculateThresholdDecryptionResponse { plaintext: [] })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x624cf4d5933beaa3b233bdd3d376bcb2e8fbd68dfcd9abe8bb3fc70102ec52c3), causation_id: EventId(0x039389224905e9c22db554fb6171ebb1728f088d4c9c1b11ec1934b74e92216a), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 46, ts: 32742390133420581646116120997278045, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.751322Z  INFO e3_aggregator::threshold_plaintext_aggregator: Received TrBFV threshold decryption response -[CIPHER] [ag] 2026-03-31T14:48:45.751398Z  INFO e3_events::eventbus: >>> AggregationProofPending EnclaveEvent { payload: AggregationProofPending(AggregationProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, proof_request: DecryptedSharesAggregationProofRequest { d_share_polys: [(0, []), (2, []), (1, [])], plaintext: [], params_preset: InsecureThreshold512, threshold_m: 1, threshold_n: 3 }, plaintext: [], shares: [(0, []), (2, []), (1, [])] }), ctx: EventContext { id: EventId(0x5bb9ddc033fb38bd3b18a4e457c2295bb02289179ce21d3b1070e1b79979e61b), causation_id: EventId(0x624cf4d5933beaa3b233bdd3d376bcb2e8fbd68dfcd9abe8bb3fc70102ec52c3), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 47, ts: 32742390133424234101442715488498013, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.752409Z  INFO e3_zk_prover::actors::proof_request: Requesting C7 DecryptedSharesAggregation proof for E3 31337:0 -[CIPHER] [ag] 2026-03-31T14:48:45.754859Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DecryptedSharesAggregation(DecryptedSharesAggregationProofRequest { d_share_polys: [(0, []), (2, []), (1, [])], plaintext: [], params_preset: InsecureThreshold512, threshold_m: 1, threshold_n: 3 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x230ca0af660d9c4da16455207a2d76b16c76f58ce06248d56f3ea2751c43c8df), causation_id: EventId(0x5bb9ddc033fb38bd3b18a4e457c2295bb02289179ce21d3b1070e1b79979e61b), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 31, ts: 32742390133444285712250837771104605, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:45.755423Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_decrypted_shares_aggregation(63)` -[CIPHER] [ag] 2026-03-31T14:48:46.624505Z  INFO e3_zk_prover::prover: generated proof (9408 bytes) for decrypted_shares_aggregation / 31337:0 -[CIPHER] [ag] 2026-03-31T14:48:46.624542Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_decrypted_shares_aggregation`(63) in 869.117083ms -[CIPHER] [ag] 2026-03-31T14:48:46.624658Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DecryptedSharesAggregation(DecryptedSharesAggregationProofResponse { proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }] })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd90a1e1ed89ce45d9db0797ebeba9d7f33189c907b2492f97993e6ad0396260a), causation_id: EventId(0x230ca0af660d9c4da16455207a2d76b16c76f58ce06248d56f3ea2751c43c8df), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 48, ts: 32742390149532742683345139179860317, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:46.625164Z  INFO e3_zk_prover::actors::proof_request: All C7 proofs signed for E3 31337:0 (signer: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266) -[CIPHER] [ag] 2026-03-31T14:48:46.625258Z  INFO e3_events::eventbus: >>> AggregationProofSigned EnclaveEvent { payload: AggregationProofSigned(AggregationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C7DecryptedSharesAggregation, proof: Proof { circuit: DecryptedSharesAggregation, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xae9a83bc9f18fe8caa1e7648a505a2c6110ca268bae42d78df363d5eccd65d0b), causation_id: EventId(0x5bb9ddc033fb38bd3b18a4e457c2295bb02289179ce21d3b1070e1b79979e61b), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 49, ts: 32742390149543773836301217491726685, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:46.625672Z  INFO e3_aggregator::threshold_plaintext_aggregator: C7 proof signed — waiting for C6 cross-node fold to complete... -[CIPHER] [ag] 2026-03-31T14:48:46.625674Z  INFO e3_aggregator::threshold_plaintext_aggregator: Both C7 and C6 fold proof ready — publishing PlaintextAggregated -[CIPHER] [ag] 2026-03-31T14:48:46.625678Z  INFO e3_aggregator::threshold_plaintext_aggregator: Dispatching plaintext event with C7 and C6 proofs PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None } -[CIPHER] [ag] 2026-03-31T14:48:46.630504Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0xae9a83bc9f18fe8caa1e7648a505a2c6110ca268bae42d78df363d5eccd65d0b), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 50, ts: 32742390149560486586431998345490781, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:46.630945Z  WARN e3_net::net_event_translator: GossipPublish event: PlaintextAggregated -[CIPHER] [ag] 2026-03-31T14:48:46.633870Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x0e13ae8b6faae5be2cd6ef417e2e1a2940587677f997db81ee1758e1434ef201), seq: 32, ts: 32742390149649990188677637089931613, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:46.635111Z  INFO e3_evm::enclave_sol_writer: publishPlaintextOutput() e3_id=0 -[CIPHER] [cn3] 2026-03-31T14:48:46.637650Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 113, ts: 32742390149729956824237170770544481, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:48:46.637651Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 113, ts: 32742390149722836381024719826722561, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-03-31T14:48:46.637659Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 25, ts: 32742390149719737328020334262253884, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:48:46.637698Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 113, ts: 32742390149719792668252557779599429, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-03-31T14:48:46.639200Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 63, ts: 32742390149782696065543907321716481, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:48:46.639211Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 63, ts: 32742390149782345577406505897133921, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-03-31T14:48:46.639251Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) -[CIPHER] [cn3] 2026-03-31T14:48:46.639238Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 -[CIPHER] [cn3] 2026-03-31T14:48:46.639251Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) -[CIPHER] [cn4] 2026-03-31T14:48:46.639232Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 -[CIPHER] [cn2] 2026-03-31T14:48:46.639194Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 25, ts: 32742390149725105330545785350150373, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-03-31T14:48:46.642563Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 63, ts: 32742390149785868905524585393487941, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:48:46.642610Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 -[CIPHER] [cn5] 2026-03-31T14:48:46.642634Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) -[CIPHER] [cn1] 2026-03-31T14:48:46.642760Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 27, ts: 32742390149783489275539074472638780, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-03-31T14:48:46.642786Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), origin_id: EventId(0x524a06338e5a63f50a94b1a09c4ba93d3b2c565d75ccdff8f3f703d22fa2babf), seq: 27, ts: 32742390149811436092810746051713253, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-03-31T14:48:47.735256Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32742390170019770438583265789149253, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } -[CIPHER] [cn3] 2026-03-31T14:48:47.735251Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32742390170019290823237348368811873, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:48:47.735264Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 51, ts: 32742390170020213160441031072035165, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } -[CIPHER] [ag] 2026-03-31T14:48:47.735371Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn1] 2026-03-31T14:48:47.735311Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 26, ts: 32742390170020877243227685973555516, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } -[CIPHER] [cn1] 2026-03-31T14:48:47.735430Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn3] 2026-03-31T14:48:47.735371Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn3] 2026-03-31T14:48:47.735402Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 -[CIPHER] [cn3] 2026-03-31T14:48:47.735407Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down -[CIPHER] [cn4] 2026-03-31T14:48:47.735348Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32742390170021781133687300101381889, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } -[CIPHER] [cn4] 2026-03-31T14:48:47.735436Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn4] 2026-03-31T14:48:47.735454Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 -[CIPHER] [cn4] 2026-03-31T14:48:47.735457Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down -[CIPHER] [cn2] 2026-03-31T14:48:47.735367Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 26, ts: 32742390170020674329042876776863973, aggregate_id: AggregateId(31337), block: Some(617), source: Evm } } -[CIPHER] [cn2] 2026-03-31T14:48:47.735465Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn5] 2026-03-31T14:48:47.735393Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn5] 2026-03-31T14:48:47.735421Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 -[CIPHER] [cn5] 2026-03-31T14:48:47.735427Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] Answer was correct -[TEST] -[TEST] ✓ tests/integration.spec.ts (1 test) 520163ms -[TEST] -[TEST] Test Files 1 passed (1) -[TEST] Tests 1 passed (1) -[TEST] Start at 15:40:06 -[TEST] Duration 520.90s (transform 230ms, setup 0ms, collect 571ms, tests 520.16s, environment 0ms, prepare 38ms) -[TEST] -[TEST] wait-on http://localhost:13151/health && pnpm vitest run ./tests/integration.spec.ts exited with code 0 ---> Sending SIGTERM to other processes.. -[EVM] anvil --host 0.0.0.0 --chain-id 31337 --block-time 1 --mnemonic 'test test test test test test test test test test test junk' --silent exited with code 0 ---> Sending SIGTERM to other processes.. -[CIPHER] [cn1] 2026-03-31T14:48:47.823795Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [cn2] 2026-03-31T14:48:47.823859Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [cn4] 2026-03-31T14:48:47.823919Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [cn3] 2026-03-31T14:48:47.823945Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [cn5] 2026-03-31T14:48:47.824022Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [ag] 2026-03-31T14:48:47.824082Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [cn5] 2026-03-31T14:48:47.824866Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] [cn2] 2026-03-31T14:48:47.824868Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] [cn3] 2026-03-31T14:48:47.824864Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] [cn4] 2026-03-31T14:48:47.824891Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] [cn1] 2026-03-31T14:48:47.824903Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] [ag] 2026-03-31T14:48:47.824901Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] 2026-03-31T14:48:47.926127Z  INFO execute:execute: actix_server::server: SIGTERM received; starting graceful shutdown -[CIPHER] Cleaning up processes... -[CIPHER] 2026-03-31T14:48:47.926426Z  INFO e3_entrypoint::nodes::process_manager: Received SIGTERM, shutting down all processes... -[CIPHER] 2026-03-31T14:48:47.926465Z  INFO actix_server::worker: shutting down idle worker -[CIPHER] 2026-03-31T14:48:47.927072Z  INFO actix_server::accept: accept thread stopped -[CIPHER] 2026-03-31T14:48:47.927250Z  INFO e3_entrypoint::nodes::process_manager: starting to terminate processes... -[CIPHER] 2026-03-31T14:48:47.927267Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn4 -[CIPHER] [cn5] 2026-03-31T14:48:47.926027Z  INFO execute: enclave::start: SIGTERM received -[CIPHER] [cn5] 2026-03-31T14:48:47.926059Z  INFO execute: enclave::start: initiating graceful shutdown... -[CIPHER] [cn5] 2026-03-31T14:48:47.926304Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 65, ts: 32742390173541272328998492902195269, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-03-31T14:48:47.926155Z  INFO execute: enclave::start: SIGTERM received -[CIPHER] [cn2] 2026-03-31T14:48:47.926170Z  INFO execute: enclave::start: initiating graceful shutdown... -[CIPHER] [cn2] 2026-03-31T14:48:47.926286Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 29, ts: 32742390173543098556661789367490789, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-03-31T14:48:47.926155Z  INFO execute: enclave::start: SIGTERM received -[CIPHER] [cn3] 2026-03-31T14:48:47.926172Z  INFO execute: enclave::start: initiating graceful shutdown... -[CIPHER] [cn3] 2026-03-31T14:48:47.926346Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 65, ts: 32742390173543117003405862885361505, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-03-31T14:48:47.926435Z  INFO execute: enclave::start: SIGTERM received -[CIPHER] [cn1] 2026-03-31T14:48:47.926445Z  INFO execute: enclave::start: initiating graceful shutdown... -[CIPHER] [cn1] 2026-03-31T14:48:47.926494Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 29, ts: 32742390173548152964537984176257340, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-03-31T14:48:47.926467Z  INFO execute: enclave::start: SIGTERM received -[CIPHER] [ag] 2026-03-31T14:48:47.926477Z  INFO execute: enclave::start: initiating graceful shutdown... -[CIPHER] [ag] 2026-03-31T14:48:47.926552Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 34, ts: 32742390173548946174533152329314653, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-03-31T14:48:47.930375Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector -[CIPHER] [cn2] 2026-03-31T14:48:47.930451Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream -[CIPHER] [cn3] 2026-03-31T14:48:47.933250Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector -[CIPHER] [cn5] 2026-03-31T14:48:47.933293Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector -[CIPHER] [cn5] 2026-03-31T14:48:47.933335Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream -[CIPHER] [cn3] 2026-03-31T14:48:47.933286Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream -[CIPHER] [cn1] 2026-03-31T14:48:47.937366Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector -[CIPHER] [ag] 2026-03-31T14:48:47.937360Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector -[CIPHER] [cn1] 2026-03-31T14:48:47.937423Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream -[CIPHER] [ag] 2026-03-31T14:48:47.937463Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream -[CIPHER] [ag] 2026-03-31T14:48:47.937411Z  INFO e3_aggregator::committee_finalizer: Killing CommitteeFinalizer -[CIPHER] 2026-03-31T14:48:47.937897Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn4... -[CIPHER] 2026-03-31T14:48:47.937904Z  INFO e3_entrypoint::nodes::process_manager: Process cn4 terminated. -[CIPHER] 2026-03-31T14:48:47.937910Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn1 -[CIPHER] 2026-03-31T14:48:47.940734Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn1... -[CIPHER] 2026-03-31T14:48:47.940748Z  INFO e3_entrypoint::nodes::process_manager: Process cn1 terminated. -[CIPHER] 2026-03-31T14:48:47.940753Z  INFO e3_entrypoint::nodes::process_manager: Terminating ag -[CIPHER] 2026-03-31T14:48:47.944315Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: ag... -[CIPHER] 2026-03-31T14:48:47.944330Z  INFO e3_entrypoint::nodes::process_manager: Process ag terminated. -[CIPHER] 2026-03-31T14:48:47.944335Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn2 -[CIPHER] 2026-03-31T14:48:47.947107Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn2... -[CIPHER] 2026-03-31T14:48:47.947119Z  INFO e3_entrypoint::nodes::process_manager: Process cn2 terminated. -[CIPHER] 2026-03-31T14:48:47.947124Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn3 -[CIPHER] 2026-03-31T14:48:47.952787Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn3... -[CIPHER] 2026-03-31T14:48:47.952803Z  INFO e3_entrypoint::nodes::process_manager: Process cn3 terminated. -[CIPHER] 2026-03-31T14:48:47.952808Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn5 -[CIPHER] 2026-03-31T14:48:47.957910Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn5... -[CIPHER] 2026-03-31T14:48:47.957923Z  INFO e3_entrypoint::nodes::process_manager: Process cn5 terminated. -[CIPHER] 2026-03-31T14:48:47.957929Z  INFO e3_entrypoint::nodes::process_manager: SWARM All processes terminated, exiting -[PROGRAM]  ELIFECYCLE  Command failed. -[CIPHER]  ELIFECYCLE  Command failed with exit code 1. -[CIPHER] pnpm dev:ciphernodes exited with code SIGTERM ---> Sending SIGTERM to other processes.. -[SERVER]  ELIFECYCLE  Command failed. -[SERVER] TEST_MODE=1 pnpm dev:server exited with code SIGTERM ---> Sending SIGTERM to other processes.. -[PROGRAM] pnpm dev:program exited with code SIGTERM - ------------------------- - ✅ Test has passed! ------------------------- - diff --git a/logs_c0c3_debug.txt b/logs_c0c3_debug.txt deleted file mode 100644 index 5db5753e20..0000000000 --- a/logs_c0c3_debug.txt +++ /dev/null @@ -1,6149 +0,0 @@ -warning: /Users/ctrlc03/Documents/zk/enclave/Cargo.toml: unused manifest key: workspace.msrv - Compiling rustix v1.1.3 - Compiling tracing-subscriber v0.3.19 - Compiling tokio-native-tls v0.3.1 - Compiling tungstenite v0.26.2 - Compiling alloy-node-bindings v1.0.41 - Compiling actix v0.13.5 - Compiling derivative v2.2.0 - Compiling multistream-select v0.13.0 - Compiling if-watch v3.2.1 - Compiling serial_test v3.2.0 - Compiling hyper-tls v0.6.0 - Compiling reqwest v0.12.22 - Compiling libp2p-core v0.42.0 - Compiling tokio-tungstenite v0.26.2 - Compiling tempfile v3.20.0 - Compiling alloy-transport-ws v1.0.41 - Compiling prost-build v0.12.6 - Compiling prost-build v0.13.5 - Compiling libp2p-swarm v0.45.1 - Compiling libp2p-tls v0.5.0 - Compiling libp2p-dns v0.42.0 - Compiling tracing-error v0.2.1 - Compiling tracing-test v0.2.5 - Compiling color-spantrace v0.3.0 - Compiling libp2p-quic v0.11.1 - Compiling color-eyre v0.6.5 - Compiling alloy-transport-http v1.0.41 - Compiling noir_protobuf v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling fhe-math v0.1.0-beta.7 (https://github.com/gnosisguild/fhe.rs#3824c52c) - Compiling fhe v0.1.0-beta.7 (https://github.com/gnosisguild/fhe.rs#3824c52c) - Compiling acir v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling alloy-rpc-client v1.0.41 - Compiling libp2p-identify v0.45.0 - Compiling libp2p-kad v0.46.2 - Compiling libp2p-mdns v0.46.0 - Compiling libp2p-ping v0.45.0 - Compiling alloy-provider v1.0.41 - Compiling libp2p-request-response v0.27.0 - Compiling libp2p-allow-block-list v0.4.0 - Compiling libp2p-gossipsub v0.47.0 - Compiling libp2p-connection-limits v0.4.0 - Compiling e3-polynomial v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/polynomial) - Compiling libp2p v0.54.1 - Compiling e3-fhe-params v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/fhe-params) - Compiling acvm_blackbox_solver v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling e3-zk-helpers v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/zk-helpers) - Compiling brillig_vm v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling bn254_blackbox_solver v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling acvm v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling noirc_printable_type v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling alloy-contract v1.0.41 - Compiling noirc_errors v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling noirc_abi v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling alloy v1.0.41 - Compiling e3-utils v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/utils) - Compiling noirc_frontend v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling e3-crypto v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/crypto) - Compiling e3-evm-helpers v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/evm-helpers) - Compiling e3-bfv-client v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/bfv-client) - Compiling e3-trbfv v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/trbfv) - Compiling e3-indexer v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/indexer) - Compiling e3-events v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/events) - Compiling e3-sdk v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/sdk) -warning: unused import: `crate::traits::EventContextAccessors` - --> crates/events/src/events.rs:11:5 - | -11 | use crate::traits::EventContextAccessors; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: method `pending_aggregates` is never used - --> crates/events/src/eventstore_router.rs:40:8 - | -26 | impl QueryAggregator { - | -------------------- method in this implementation -... -40 | fn pending_aggregates(&self) -> Vec<&AggregateId> { - | ^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(dead_code)]` on by default - -warning: associated function `new` is never used - --> crates/events/src/snapshot_buffer/batch_router.rs:50:12 - | -49 | impl BatchRouter { - | ---------------- associated function in this implementation -50 | pub fn new( - | ^^^ - - Compiling noirc_evaluator v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling e3-config v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/config) - Compiling e3-logger v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/logger) - Compiling e3-data v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/data) -warning: `e3-events` (lib) generated 3 warnings - Compiling e3-request v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/request) - Compiling e3-sync v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/sync) - Compiling e3-net v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/net) -warning: unused import: `NetReady` - --> crates/net/src/net_event_translator.rs:14:52 - | -14 | EventContextAccessors, EventSource, EventType, NetReady, Unsequenced, - | ^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - - Compiling e3-fhe v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/fhe) - Compiling e3-sortition v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/sortition) - Compiling e3-evm v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/evm) -warning: field `0` is never read - --> crates/net/src/direct_requester.rs:34:21 - | -34 | pub struct WithPeer(PeerTarget); - | -------- ^^^^^^^^^^ - | | - | field in this struct - | - = help: consider removing this field - = note: `#[warn(dead_code)]` on by default - -warning: struct `Expectation` is never constructed - --> crates/net/src/direct_requester.rs:240:8 - | -240 | struct Expectation { - | ^^^^^^^^^^^ - -warning: struct `DirectRequesterTester` is never constructed - --> crates/net/src/direct_requester.rs:245:19 - | -245 | pub(crate) struct DirectRequesterTester { - | ^^^^^^^^^^^^^^^^^^^^^ - -warning: struct `ExpectationBuilder` is never constructed - --> crates/net/src/direct_requester.rs:255:19 - | -255 | pub(crate) struct ExpectationBuilder { - | ^^^^^^^^^^^^^^^^^^ - -warning: methods `respond_with` and `error_with` are never used - --> crates/net/src/direct_requester.rs:261:12 - | -260 | impl ExpectationBuilder { - | ----------------------- methods in this implementation -261 | pub fn respond_with>>(mut self, payload: T) -> DirectRequesterTester - | ^^^^^^^^^^^^ -... -272 | pub fn error_with(mut self, error: impl Into) -> DirectRequesterTester { - | ^^^^^^^^^^ - -warning: multiple associated items are never used - --> crates/net/src/direct_requester.rs:282:12 - | -281 | impl DirectRequesterTester { - | -------------------------- associated items in this implementation -282 | pub fn new( - | ^^^ -... -297 | pub fn expect_request>>(self, payload: T) -> ExpectationBuilder - | ^^^^^^^^^^^^^^ -... -307 | pub fn respond_with>>(mut self, payload: T) -> Self - | ^^^^^^^^^^^^ -... -315 | pub fn respond_with_each>>( - | ^^^^^^^^^^^^^^^^^ -... -329 | pub fn error_with(mut self, error: impl Into) -> Self { - | ^^^^^^^^^^ -... -334 | pub fn num_requests(mut self, n: usize) -> Self { - | ^^^^^^^^^^^^ -... -339 | pub fn spawn(mut self) -> tokio::task::JoinHandle<()> { - | ^^^^^ - -warning: constant `ALL_PEERS_DIALED_TIMEOUT` is never used - --> crates/net/src/net_sync_manager.rs:34:7 - | -34 | const ALL_PEERS_DIALED_TIMEOUT: Duration = Duration::from_secs(120); - | ^^^^^^^^^^^^^^^^^^^^^^^^ - - Compiling noirc_driver v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling noirc_artifacts v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling noir_greybox_fuzzer v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling nargo v1.0.0-beta.16 (https://github.com/noir-lang/noir?tag=v1.0.0-beta.16#2d46fca7) - Compiling e3-zk-prover v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/zk-prover) -warning: unused import: `SignedProofFailed` - --> crates/zk-prover/src/actors/proof_request.rs:21:34 - | -21 | ShareDecryptionProofPending, SignedProofFailed, SignedProofPayload, ThresholdShare, - | ^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused import: `commitment_consistency_checker::CommitmentConsistencyChecker` - --> crates/zk-prover/src/actors/mod.rs:49:9 - | -49 | pub use commitment_consistency_checker::CommitmentConsistencyChecker; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: field `request` is never read - --> crates/zk-prover/src/actors/proof_request.rs:184:5 - | -182 | struct PendingPkAggregationProof { - | ------------------------- field in this struct -183 | ec: EventContext, -184 | request: PkAggregationProofRequest, - | ^^^^^^^ - | - = note: `PendingPkAggregationProof` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis - = note: `#[warn(dead_code)]` on by default - -warning: `e3-net` (lib) generated 8 warnings (run `cargo fix --lib -p e3-net` to apply 1 suggestion) - Compiling e3-multithread v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/multithread) -warning: unused import: `warn` - --> crates/multithread/src/multithread.rs:85:28 - | -85 | use tracing::{error, info, warn}; - | ^^^^ - | - = note: `#[warn(unused_imports)]` on by default - - Compiling e3-aggregator v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/aggregator) - Compiling e3-keyshare v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/keyshare) -warning: unused import: `ProofVerificationPassed` - --> crates/aggregator/src/publickey_aggregator.rs:15:76 - | -15 | PkAggregationProofRequest, PkAggregationProofSigned, Proof, ProofType, ProofVerificationPassed, - | ^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: `e3-multithread` (lib) generated 1 warning (run `cargo fix --lib -p e3-multithread` to apply 1 suggestion) - Compiling e3-ciphernode-builder v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/ciphernode-builder) -warning: `e3-zk-prover` (lib) generated 3 warnings (run `cargo fix --lib -p e3-zk-prover` to apply 2 suggestions) -warning: unused imports: `EventStoreQueryBy`, `SeqAgg`, and `TsAgg` - --> crates/ciphernode-builder/src/event_system.rs:19:5 - | -19 | EventStoreQueryBy, EventStoreRouter, EventSubscriber, EventType, InsertBatch, SeqAgg, - | ^^^^^^^^^^^^^^^^^ ^^^^^^ -20 | Sequencer, SnapshotBuffer, StoreEventRequested, TsAgg, UpdateDestination, - | ^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - - Compiling e3-test-helpers v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/test-helpers) -warning: `e3-aggregator` (lib) generated 1 warning (run `cargo fix --lib -p e3-aggregator` to apply 1 suggestion) -warning: `e3-ciphernode-builder` (lib) generated 1 warning (run `cargo fix --lib -p e3-ciphernode-builder` to apply 1 suggestion) - Compiling e3-tests v0.1.15 (/Users/ctrlc03/Documents/zk/enclave/crates/tests) -warning: unused imports: `EffectsEnabled`, `EventType`, `GetEvents`, `HistoryCollector`, `OrderedSet`, `PkAggregationProofPending`, and `PkAggregationProofRequest` - --> crates/tests/tests/integration.rs:17:24 - | -17 | E3Requested, E3id, EffectsEnabled, EnclaveEvent, EnclaveEventData, EventType, GetEvents, - | ^^^^^^^^^^^^^^ ^^^^^^^^^ ^^^^^^^^^ -18 | HistoryCollector, OperatorActivationChanged, OrderedSet, PkAggregationProofPending, - | ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^ -19 | PkAggregationProofRequest, PlaintextAggregated, Seed, TakeEvents, TicketBalanceUpdated, - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: `#[warn(unused_imports)]` on by default - -warning: unused imports: `build_pair_for_preset` and `create_deterministic_crp_from_default_seed` - --> crates/tests/tests/integration.rs:22:21 - | -22 | use e3_fhe_params::{build_pair_for_preset, create_deterministic_crp_from_default_seed}; - | ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `BfvPreset` - --> crates/tests/tests/integration.rs:23:53 - | -23 | use e3_fhe_params::{encode_bfv_params, BfvParamSet, BfvPreset}; - | ^^^^^^^^^ - -warning: unused import: `e3_polynomial::CrtPolynomial` - --> crates/tests/tests/integration.rs:27:5 - | -27 | use e3_polynomial::CrtPolynomial; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused imports: `compute_modulus_bit` and `compute_threshold_pk_commitment` - --> crates/tests/tests/integration.rs:36:21 - | -36 | use e3_zk_helpers::{compute_modulus_bit, compute_threshold_pk_commitment}; - | ^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `ProofRequestActor` - --> crates/tests/tests/integration.rs:38:20 - | -38 | use e3_zk_prover::{ProofRequestActor, ZkBackend}; - | ^^^^^^^^^^^^^^^^^ - -warning: unused import: `fhe::bfv::SecretKey` - --> crates/tests/tests/integration.rs:40:5 - | -40 | use fhe::bfv::SecretKey; - | ^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `PublicKeyShare` - --> crates/tests/tests/integration.rs:41:32 - | -41 | use fhe::mbfv::{AggregateIter, PublicKeyShare}; - | ^^^^^^^^^^^^^^ - -warning: unused import: `rand::rngs::OsRng` - --> crates/tests/tests/integration.rs:44:5 - | -44 | use rand::rngs::OsRng; - | ^^^^^^^^^^^^^^^^^ - -warning: unused variable: `addr` - --> crates/tests/tests/integration.rs:1199:9 - | -1199 | addr: &str, - | ^^^^ help: if this is intentional, prefix it with an underscore: `_addr` - | - = note: `#[warn(unused_variables)]` on by default - -warning: unused variable: `addr` - --> crates/tests/tests/integration.rs:1419:9 - | -1419 | addr: &str, - | ^^^^ help: if this is intentional, prefix it with an underscore: `_addr` - -warning: unused import: `AggregateIter` - --> crates/tests/tests/integration.rs:41:17 - | -41 | use fhe::mbfv::{AggregateIter, PublicKeyShare}; - | ^^^^^^^^^^^^^ - -warning: `e3-tests` (test "integration") generated 12 warnings (run `cargo fix --test "integration"` to apply 9 suggestions) - Finished `test` profile [unoptimized + debuginfo] target(s) in 39.06s - Running tests/integration.rs (target/debug/deps/integration-1d1f88486c2791bf) - -running 5 tests -test test_duplicate_e3_id_with_different_chain_id ... ignored, Needs to be ported to trBFV system -test test_stopped_keyshares_retain_state ... ignored, Needs to be ported to trBFV system after Sync is completed - - - ############################### - ## STARTING TRBFV ACTOR TEST ## - ############################### - -test test_p2p_actor_forwards_events_to_bus ... ok -test test_p2p_actor_forwards_events_to_network ... ok -2026-03-30T15:33:13.202441Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -Building collector 0x781199F9d55d18E855a7AA84C5e4B40dA2C96fc8! -2026-03-30T15:33:13.602542Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:13.602564Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up history collector -2026-03-30T15:33:13.602744Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:13.603266Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:13.603919Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:13.603964Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:13.603968Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:13.664161Z  INFO e3_zk_prover::backend::setup: setting up ZK proving infrastructure... -2026-03-30T15:33:13.664214Z  INFO e3_zk_prover::backend::download: downloading Barretenberg from: https://github.com/AztecProtocol/aztec-packages/releases/download/v3.0.0-nightly.20260102/barretenberg-arm64-darwin.tar.gz -2026-03-30T15:33:15.308630Z  INFO e3_zk_prover::backend::download: installed Barretenberg v3.0.0-nightly.20260102 -2026-03-30T15:33:15.309140Z  INFO e3_zk_prover::backend::download: downloading circuits from: https://github.com/gnosisguild/enclave/releases/download/v0.1.15/circuits-0.1.15.tar.gz -2026-03-30T15:33:17.451080Z  INFO e3_zk_prover::backend::download: verified 204 circuit files from checksums.json -2026-03-30T15:33:17.452396Z  INFO e3_zk_prover::backend::download: installed circuits v0.1.15 -2026-03-30T15:33:17.452453Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:17.452539Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:17.452963Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up FheExtension -2026-03-30T15:33:17.452971Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up PublicKeyAggregationExtension -2026-03-30T15:33:17.452978Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdPlaintextAggregatorExtension -2026-03-30T15:33:17.452984Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:17.452989Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:17.452998Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:17.453577Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:17.453732Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:17.453753Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:17.453842Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:17.453849Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:17.453928Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:17.453932Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:17.453935Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:17.453938Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:17.454029Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:17.454035Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:17.454080Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xe7cda59d2aa536178ff04aa2b11fb613a6e4a473de744e386e08d0e238744414), causation_id: EventId(0xe7cda59d2aa536178ff04aa2b11fb613a6e4a473de744e386e08d0e238744414), origin_id: EventId(0xe7cda59d2aa536178ff04aa2b11fb613a6e4a473de744e386e08d0e238744414), seq: 1, ts: 32740845618951143623834887472199872, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:17.555795Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:17.555811Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:17.555966Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32740845620829926060998131594737856, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:17.556230Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:17.556237Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:17.556338Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845620838116415366858635655360, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:17.556487Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:17.556529Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:17.556552Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:17.556557Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:17.556594Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:17.556622Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:17.556696Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845620845273752067457941682368, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:17.556839Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:17.556931Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:17.556947Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:17.556953Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:17.556959Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:17.556964Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:17.556977Z  INFO e3_sync::sync: Sync finished. -Building normal 0x8f32E487328F04927f20c4B14399e4F3123763df -2026-03-30T15:33:17.558438Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:17.558490Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:17.558774Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32740845620850586414360686292547776, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:17.558882Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32740845620851176710171044998199488, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:17.559105Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:17.559147Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:17.559320Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:17.559556Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:17.559596Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:17.559602Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:17.926014Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:17.926047Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:17.926133Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:17.926141Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:17.926145Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:17.926651Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:17.926803Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:17.926814Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:17.926910Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:17.926918Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:17.926973Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:17.926978Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:17.926981Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:17.926984Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:17.927036Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:17.927044Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:17.927095Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xfa5a78e27555e32672a5dcd4b1b0b807fd17d1e4adae1c53eadb9b3bc3780ec5), causation_id: EventId(0xfa5a78e27555e32672a5dcd4b1b0b807fd17d1e4adae1c53eadb9b3bc3780ec5), origin_id: EventId(0xfa5a78e27555e32672a5dcd4b1b0b807fd17d1e4adae1c53eadb9b3bc3780ec5), seq: 1, ts: 32740845627677080759998010131729024, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.029635Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:18.029679Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:18.029909Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 10 }), ctx: EventContext { id: EventId(0x9e0ed163f3687631e43486fd4e40dc7bfeb5d1cd84b9bd1ca57d1fbb35dcb4bc), causation_id: EventId(0x9e0ed163f3687631e43486fd4e40dc7bfeb5d1cd84b9bd1ca57d1fbb35dcb4bc), origin_id: EventId(0x9e0ed163f3687631e43486fd4e40dc7bfeb5d1cd84b9bd1ca57d1fbb35dcb4bc), seq: 2, ts: 32740845629571321568695022858521216, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.030329Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:18.030340Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:18.030484Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845629583920694897366482274944, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.030661Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:18.030715Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:18.030723Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:18.030730Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:18.030737Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:18.030772Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:18.030849Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845629591539200199808527092352, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:18.031077Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:18.031091Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:18.031113Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:18.031120Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:18.031135Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:18.031141Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:18.031159Z  INFO e3_sync::sync: Sync finished. -Building normal 0xE7d68a2809ECC01b26b09Fda8f82CcE3aA2D2358 -2026-03-30T15:33:18.032771Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:18.032869Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:18.033400Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 11 }), ctx: EventContext { id: EventId(0xded13fc7480eeb2817fb88fb03a16bdf2c8c29a9256bf6216e958f44443b3500), causation_id: EventId(0xded13fc7480eeb2817fb88fb03a16bdf2c8c29a9256bf6216e958f44443b3500), origin_id: EventId(0xded13fc7480eeb2817fb88fb03a16bdf2c8c29a9256bf6216e958f44443b3500), seq: 5, ts: 32740845629597313031094879616748160, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.033693Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 12 }), ctx: EventContext { id: EventId(0xc6be85a677e5e9c678e0d80a7ab1355b2d30b063802c6744b12fc217a5186439), causation_id: EventId(0xc6be85a677e5e9c678e0d80a7ab1355b2d30b063802c6744b12fc217a5186439), origin_id: EventId(0xc6be85a677e5e9c678e0d80a7ab1355b2d30b063802c6744b12fc217a5186439), seq: 6, ts: 32740845629598198474810417675225728, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.034084Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:18.034148Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:18.034401Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:18.034790Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:18.034854Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:18.034863Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:18.078699Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:18.078730Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:18.078825Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:18.078833Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:18.078839Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:18.079255Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:18.079403Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:18.079414Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:18.079503Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:18.079511Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:18.079564Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:18.079569Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:18.079572Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:18.079574Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:18.079625Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:18.079633Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:18.079688Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x750d8fe7cc621f63c877fb692cc3639ece00861da23bdaef1f852b648b65dd4c), causation_id: EventId(0x750d8fe7cc621f63c877fb692cc3639ece00861da23bdaef1f852b648b65dd4c), origin_id: EventId(0x750d8fe7cc621f63c877fb692cc3639ece00861da23bdaef1f852b648b65dd4c), seq: 1, ts: 32740845630491850991461277733304552, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.180775Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:18.180798Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:18.180954Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 15 }), ctx: EventContext { id: EventId(0x34227114d2399085885c31ef6f079b91db2cca9d27ca7f4249115eabe4db0ff0), causation_id: EventId(0x34227114d2399085885c31ef6f079b91db2cca9d27ca7f4249115eabe4db0ff0), origin_id: EventId(0x34227114d2399085885c31ef6f079b91db2cca9d27ca7f4249115eabe4db0ff0), seq: 2, ts: 32740845632358938192881790000117992, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.181271Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:18.181281Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:18.181410Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845632368198458406792195029224, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.181584Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:18.181643Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:18.181652Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:18.181658Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:18.181666Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:18.181703Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:18.181786Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845632375761623477013111191784, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:18.182013Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:18.182027Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:18.182048Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:18.182055Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:18.182061Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:18.182066Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:18.182085Z  INFO e3_sync::sync: Sync finished. -Building normal 0x95b8a2b9b93aE9e0F13e215A49b8C53172c4f4ba -2026-03-30T15:33:18.183902Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:18.183986Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:18.184414Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 16 }), ctx: EventContext { id: EventId(0x2597900b15534c572675cd89f95dca20ef2e2fd45432a6b90c72f29b56b04724), causation_id: EventId(0x2597900b15534c572675cd89f95dca20ef2e2fd45432a6b90c72f29b56b04724), origin_id: EventId(0x2597900b15534c572675cd89f95dca20ef2e2fd45432a6b90c72f29b56b04724), seq: 5, ts: 32740845632381572347860231619950824, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.184592Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 17 }), ctx: EventContext { id: EventId(0x13a31292d3790c2cc4ab418bc996a36ce5da478853cb37418205063f09bc784a), causation_id: EventId(0x13a31292d3790c2cc4ab418bc996a36ce5da478853cb37418205063f09bc784a), origin_id: EventId(0x13a31292d3790c2cc4ab418bc996a36ce5da478853cb37418205063f09bc784a), seq: 6, ts: 32740845632382291770879106292463848, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.184880Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:18.184937Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:18.185152Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:18.185587Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:18.185659Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:18.185672Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:18.228834Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:18.228862Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:18.228942Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:18.228950Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:18.228955Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:18.229417Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:18.229562Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:18.229574Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:18.229659Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:18.229667Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:18.229717Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:18.229721Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:18.229724Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:18.229727Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:18.229776Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:18.229783Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:18.229839Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x410b8615b61527fdcd862ea422ad24d9a39dc4c38870fd1f2feb388b80d1f07e), causation_id: EventId(0x410b8615b61527fdcd862ea422ad24d9a39dc4c38870fd1f2feb388b80d1f07e), origin_id: EventId(0x410b8615b61527fdcd862ea422ad24d9a39dc4c38870fd1f2feb388b80d1f07e), seq: 1, ts: 32740845633261684954360987436240454, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.331204Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:18.331227Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:18.331396Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 20 }), ctx: EventContext { id: EventId(0x05c7f5f335a9b9bd9b2d4f876188db7bb28b06bc373b6f5b95a2d3b9a6f5c8ca), causation_id: EventId(0x05c7f5f335a9b9bd9b2d4f876188db7bb28b06bc373b6f5b95a2d3b9a6f5c8ca), origin_id: EventId(0x05c7f5f335a9b9bd9b2d4f876188db7bb28b06bc373b6f5b95a2d3b9a6f5c8ca), seq: 2, ts: 32740845635133881903889917248851526, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.331730Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:18.331740Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:18.331874Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845635143714018481204439862854, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.332047Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:18.332106Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:18.332114Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:18.332120Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:18.332128Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:18.332166Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:18.332255Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845635151350970527720194231878, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:18.332470Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:18.332486Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:18.332509Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:18.332516Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:18.332522Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:18.332528Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:18.332547Z  INFO e3_sync::sync: Sync finished. -Building normal 0x8966a013047aef67Cac52Bc96eB77bC11B5D2572 -2026-03-30T15:33:18.334247Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:18.334312Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:18.334690Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 21 }), ctx: EventContext { id: EventId(0x5541e35b0a8f6a830c67411be7d1d11567d8f82d035b83f903bcf1c0e1285838), causation_id: EventId(0x5541e35b0a8f6a830c67411be7d1d11567d8f82d035b83f903bcf1c0e1285838), origin_id: EventId(0x5541e35b0a8f6a830c67411be7d1d11567d8f82d035b83f903bcf1c0e1285838), seq: 5, ts: 32740845635157069461190570155232838, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.334837Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 22 }), ctx: EventContext { id: EventId(0x9c7c9ed8402112189404ec8baedb98e70091d08a1d62b0182978b47720860094), causation_id: EventId(0x9c7c9ed8402112189404ec8baedb98e70091d08a1d62b0182978b47720860094), origin_id: EventId(0x9c7c9ed8402112189404ec8baedb98e70091d08a1d62b0182978b47720860094), seq: 6, ts: 32740845635157825777697592246849094, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.335086Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:18.335138Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:18.335329Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:18.335658Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:18.335718Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:18.335727Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:18.380010Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:18.380031Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:18.380111Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:18.380118Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:18.380122Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:18.380581Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:18.380718Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:18.380728Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:18.380816Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:18.380823Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:18.380877Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:18.380881Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:18.380884Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:18.380892Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:18.380938Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:18.380945Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:18.380993Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xdf29a833f0e288439bd8a927b2710ae916786a5e79a3c0a27ee24ba37a069e7e), causation_id: EventId(0xdf29a833f0e288439bd8a927b2710ae916786a5e79a3c0a27ee24ba37a069e7e), origin_id: EventId(0xdf29a833f0e288439bd8a927b2710ae916786a5e79a3c0a27ee24ba37a069e7e), seq: 1, ts: 32740845636050168575519220333520602, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.482563Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:18.482583Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:18.482741Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 25 }), ctx: EventContext { id: EventId(0xa2c99ad1acd8458bd0b3a40746830696ce052d5e8a6eede4e08b9e7ea54fcbab), causation_id: EventId(0xa2c99ad1acd8458bd0b3a40746830696ce052d5e8a6eede4e08b9e7ea54fcbab), origin_id: EventId(0xa2c99ad1acd8458bd0b3a40746830696ce052d5e8a6eede4e08b9e7ea54fcbab), seq: 2, ts: 32740845637926017980374744637351642, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.483042Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:18.483051Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:18.483179Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845637934872417530125222127322, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.483349Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:18.483403Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:18.483413Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:18.483420Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:18.483428Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:18.483466Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:18.483551Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845637942306455391830171428570, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:18.483756Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:18.483771Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:18.483794Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:18.483800Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:18.483806Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:18.483812Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:18.483831Z  INFO e3_sync::sync: Sync finished. -Building normal 0x2B1eD59AC30f668B5b9EcF3D8718A44C15E0E479 -2026-03-30T15:33:18.485567Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:18.485641Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:18.486046Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 26 }), ctx: EventContext { id: EventId(0xa48306f7fadf633aa1c9b5c3f7d15dfd739d8bb917ab72cce543466d7254b9f5), causation_id: EventId(0xa48306f7fadf633aa1c9b5c3f7d15dfd739d8bb917ab72cce543466d7254b9f5), origin_id: EventId(0xa48306f7fadf633aa1c9b5c3f7d15dfd739d8bb917ab72cce543466d7254b9f5), seq: 5, ts: 32740845637947803585125795617810138, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.486213Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 27 }), ctx: EventContext { id: EventId(0x29be7fd43acf929ff9580376b0dc7b3e7f55210e0c6e59cfecdf2f7af81acfc9), causation_id: EventId(0x29be7fd43acf929ff9580376b0dc7b3e7f55210e0c6e59cfecdf2f7af81acfc9), origin_id: EventId(0x29be7fd43acf929ff9580376b0dc7b3e7f55210e0c6e59cfecdf2f7af81acfc9), seq: 6, ts: 32740845637948523008144670290323162, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.486485Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:18.486540Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:18.486736Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:18.487075Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:18.487135Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:18.487145Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:18.531876Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:18.531911Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:18.531988Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:18.531997Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:18.532002Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:18.532444Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:18.532598Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:18.532609Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:18.532705Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:18.532713Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:18.532766Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:18.532770Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:18.532773Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:18.532776Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:18.532828Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:18.532836Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:18.532892Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x5278f9b01ba39ab46d2800d5fb4291949392dc5fbb69fe4681cf69e5d9fcee35), causation_id: EventId(0x5278f9b01ba39ab46d2800d5fb4291949392dc5fbb69fe4681cf69e5d9fcee35), origin_id: EventId(0x5278f9b01ba39ab46d2800d5fb4291949392dc5fbb69fe4681cf69e5d9fcee35), seq: 1, ts: 32740845638851970745898670113990310, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.633083Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:18.633109Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:18.633283Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 30 }), ctx: EventContext { id: EventId(0x6d048b01fb637e20c63c999bda6ff541f0538faa3caa2ff572f1b9eed3b53c50), causation_id: EventId(0x6d048b01fb637e20c63c999bda6ff541f0538faa3caa2ff572f1b9eed3b53c50), origin_id: EventId(0x6d048b01fb637e20c63c999bda6ff541f0538faa3caa2ff572f1b9eed3b53c50), seq: 2, ts: 32740845640702585004861359751210662, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.633560Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:18.633567Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:18.633677Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845640711347208296371788228262, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.633793Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:18.633835Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:18.633840Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:18.633844Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:18.633850Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:18.633878Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:18.633937Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845640716881231518484653713062, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:18.634089Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:18.634100Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:18.634115Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:18.634124Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:18.634128Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:18.634132Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:18.634143Z  INFO e3_sync::sync: Sync finished. -Building normal 0x83A06c5Ac9E4207526C3eFA79812808428Dd5FaB -2026-03-30T15:33:18.635158Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:18.635220Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:18.635581Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 31 }), ctx: EventContext { id: EventId(0xd6d6fadb38ef2cbaf7bb2162d749d761ee41377837b2ea488cd0ee1d9759d226), causation_id: EventId(0xd6d6fadb38ef2cbaf7bb2162d749d761ee41377837b2ea488cd0ee1d9759d226), origin_id: EventId(0xd6d6fadb38ef2cbaf7bb2162d749d761ee41377837b2ea488cd0ee1d9759d226), seq: 5, ts: 32740845640720828834750258497758886, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.635698Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 32 }), ctx: EventContext { id: EventId(0x7240fc9e55072ae8c28597e6f86840018aa764c38de4499c86cf38f0abc11318), causation_id: EventId(0x7240fc9e55072ae8c28597e6f86840018aa764c38de4499c86cf38f0abc11318), origin_id: EventId(0x7240fc9e55072ae8c28597e6f86840018aa764c38de4499c86cf38f0abc11318), seq: 6, ts: 32740845640721400683816543493858982, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.635897Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:18.635944Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:18.636123Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:18.636378Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:18.636423Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:18.636429Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:18.666292Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:18.666315Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:18.666397Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:18.666404Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:18.666408Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:18.666814Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:18.666953Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:18.666963Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:18.667059Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:18.667069Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:18.667124Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:18.667128Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:18.667130Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:18.667133Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:18.667183Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:18.667191Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:18.667239Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x719d0da2ca46a80442c3007f3f686481ec98d5b501e48714a6759efc9e0bf6e7), causation_id: EventId(0x719d0da2ca46a80442c3007f3f686481ec98d5b501e48714a6759efc9e0bf6e7), origin_id: EventId(0x719d0da2ca46a80442c3007f3f686481ec98d5b501e48714a6759efc9e0bf6e7), seq: 1, ts: 32740845641330401492665991313290674, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.769538Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:18.769554Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:18.769677Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 35 }), ctx: EventContext { id: EventId(0x248633f4288c526a44957496c92e65def9ec41d673d3b4973f98b11168cc920d), causation_id: EventId(0x248633f4288c526a44957496c92e65def9ec41d673d3b4973f98b11168cc920d), origin_id: EventId(0x248633f4288c526a44957496c92e65def9ec41d673d3b4973f98b11168cc920d), seq: 2, ts: 32740845643219550999998660203836850, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.769907Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:18.769914Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:18.770015Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845643226450082282227576141234, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.770134Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:18.770173Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:18.770179Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:18.770183Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:18.770189Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:18.770215Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:18.770270Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845643231818084807677055661490, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:18.770402Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:18.770414Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:18.770428Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:18.770433Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:18.770437Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:18.770441Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:18.770453Z  INFO e3_sync::sync: Sync finished. -Building normal 0x409C702A02650Be6Be316e8d2996fe1f7aAD4448 -2026-03-30T15:33:18.771554Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:18.771608Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:18.771873Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 36 }), ctx: EventContext { id: EventId(0xf21539900b378d5e28a0134d91783f59e96ac4c03c76520d48c6018f09bfa6e4), causation_id: EventId(0xf21539900b378d5e28a0134d91783f59e96ac4c03c76520d48c6018f09bfa6e4), origin_id: EventId(0xf21539900b378d5e28a0134d91783f59e96ac4c03c76520d48c6018f09bfa6e4), seq: 5, ts: 32740845643235359859669829289571762, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.771972Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 37 }), ctx: EventContext { id: EventId(0x52cdf372b8b87ba22681396dfc223c5fa142137e9ecbd6b12c129af0c3a97326), causation_id: EventId(0x52cdf372b8b87ba22681396dfc223c5fa142137e9ecbd6b12c129af0c3a97326), origin_id: EventId(0x52cdf372b8b87ba22681396dfc223c5fa142137e9ecbd6b12c129af0c3a97326), seq: 6, ts: 32740845643235857921759819447465394, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.772140Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:18.772183Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:18.772322Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:18.772567Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:18.772618Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:18.772625Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:18.812734Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:18.812769Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:18.812855Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:18.812863Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:18.812867Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:18.813389Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:18.813591Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:18.813609Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:18.813878Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:18.813908Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:18.814006Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:18.814012Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:18.814016Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:18.814019Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:18.814100Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:18.814110Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:18.814200Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xa3e3dc636d243a2b0bafbc2c7d3e49026ddcf7cfce5c00e62ca188bad233f2d3), causation_id: EventId(0xa3e3dc636d243a2b0bafbc2c7d3e49026ddcf7cfce5c00e62ca188bad233f2d3), origin_id: EventId(0xa3e3dc636d243a2b0bafbc2c7d3e49026ddcf7cfce5c00e62ca188bad233f2d3), seq: 1, ts: 32740845644040135963373553900550425, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.915675Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:18.915700Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:18.915973Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 40 }), ctx: EventContext { id: EventId(0x4e50fd247b2700766b3bd6edc46ce1903ff9e0f5f6c46250ca104ee9b4ee77d3), causation_id: EventId(0x4e50fd247b2700766b3bd6edc46ce1903ff9e0f5f6c46250ca104ee9b4ee77d3), origin_id: EventId(0x4e50fd247b2700766b3bd6edc46ce1903ff9e0f5f6c46250ca104ee9b4ee77d3), seq: 2, ts: 32740845645915468859395014336936217, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.916562Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:18.916577Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:18.916721Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845645932034035573205514287385, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.916985Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:18.917094Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:18.917102Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:18.917107Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:18.917114Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:18.917170Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:18.917273Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845645942770040624104473327897, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:18.917452Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:18.917467Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:18.917485Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:18.917491Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:18.917495Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:18.917499Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:18.917513Z  INFO e3_sync::sync: Sync finished. -Building normal 0x271603Ea9118221DC5c7b6710391e8ADb19029df -2026-03-30T15:33:18.918743Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:18.918824Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:18.919224Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 41 }), ctx: EventContext { id: EventId(0xa08701f9fffa1e4b81d7ef3baf6f9be26dfef32b36d4b32ec8cb27af1ba13ab1), causation_id: EventId(0xa08701f9fffa1e4b81d7ef3baf6f9be26dfef32b36d4b32ec8cb27af1ba13ab1), origin_id: EventId(0xa08701f9fffa1e4b81d7ef3baf6f9be26dfef32b36d4b32ec8cb27af1ba13ab1), seq: 5, ts: 32740845645948027362685111695538457, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.919331Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 42 }), ctx: EventContext { id: EventId(0x108bd3085d4f3880c08980da759d76413154d1dc325ee9f6ed3c2be83a2e46c2), causation_id: EventId(0x108bd3085d4f3880c08980da759d76413154d1dc325ee9f6ed3c2be83a2e46c2), origin_id: EventId(0x108bd3085d4f3880c08980da759d76413154d1dc325ee9f6ed3c2be83a2e46c2), seq: 6, ts: 32740845645948617658495470401190169, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:18.919525Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:18.919572Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:18.919728Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:18.920070Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:18.920127Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:18.920134Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:18.958089Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:18.958116Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:18.958197Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:18.958206Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:18.958218Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:18.958750Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:18.958921Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:18.958932Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:18.959034Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:18.959042Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:18.959097Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:18.959101Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:18.959104Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:18.959107Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:18.959167Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:18.959174Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:18.959237Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x296aadcb1cf4283f6284c5a9f087eab939f0f63f130ff841c1506e853e416517), causation_id: EventId(0x296aadcb1cf4283f6284c5a9f087eab939f0f63f130ff841c1506e853e416517), origin_id: EventId(0x296aadcb1cf4283f6284c5a9f087eab939f0f63f130ff841c1506e853e416517), seq: 1, ts: 32740845646716444933819556771619320, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.060649Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:19.060690Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:19.060969Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 45 }), ctx: EventContext { id: EventId(0x00c954d0de7d161f772b9da7845568f371f9f9e87f398fe611d0d04e4a90410a), causation_id: EventId(0x00c954d0de7d161f772b9da7845568f371f9f9e87f398fe611d0d04e4a90410a), origin_id: EventId(0x00c954d0de7d161f772b9da7845568f371f9f9e87f398fe611d0d04e4a90410a), seq: 2, ts: 32740845648590191409850678186566136, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.061299Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:19.061306Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:19.061429Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845648601923539081557461393912, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.061522Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:19.061556Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:19.061561Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:19.061564Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:19.061568Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:19.061594Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:19.061636Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845648606830373005164202123768, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:19.061732Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:19.061741Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:19.061751Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:19.061754Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:19.061757Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:19.061759Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:19.061767Z  INFO e3_sync::sync: Sync finished. -Building normal 0xC4aA85Fd657631853cd6B99DD64DFeAb4E13494C -2026-03-30T15:33:19.062523Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:19.062567Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:19.062774Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 46 }), ctx: EventContext { id: EventId(0x7ccd5e68f63d24d9e75726d584a93619e2606dad935079538a1fc15e3e893e7c), causation_id: EventId(0x7ccd5e68f63d24d9e75726d584a93619e2606dad935079538a1fc15e3e893e7c), origin_id: EventId(0x7ccd5e68f63d24d9e75726d584a93619e2606dad935079538a1fc15e3e893e7c), seq: 5, ts: 32740845648609376023687336120246776, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.062840Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 47 }), ctx: EventContext { id: EventId(0xb6959fcac88ccabbdcd3f069b58899e35135df7ee62c184acb31f6a776716f8c), causation_id: EventId(0xb6959fcac88ccabbdcd3f069b58899e35135df7ee62c184acb31f6a776716f8c), origin_id: EventId(0xb6959fcac88ccabbdcd3f069b58899e35135df7ee62c184acb31f6a776716f8c), seq: 6, ts: 32740845648609708065080662892175864, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.062972Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:19.063004Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:19.063115Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:19.063293Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:19.063326Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:19.063330Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:19.093841Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:19.093883Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:19.093989Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:19.093997Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:19.094001Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:19.094557Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:19.094781Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:19.094797Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:19.094942Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:19.094958Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:19.095076Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:19.095080Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:19.095084Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:19.095087Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:19.095144Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:19.095151Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:19.095232Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xdf4bbe9c3d5f45b60b76340e9ec7e2709852a861e3cb3e11bc117b295e45b6a0), causation_id: EventId(0xdf4bbe9c3d5f45b60b76340e9ec7e2709852a861e3cb3e11bc117b295e45b6a0), origin_id: EventId(0xdf4bbe9c3d5f45b60b76340e9ec7e2709852a861e3cb3e11bc117b295e45b6a0), seq: 1, ts: 32740845649224814746218506731570771, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.197026Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:19.197068Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:19.197301Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 50 }), ctx: EventContext { id: EventId(0x08109f19ace30a5d5ecc9d69a1f0e24d85748052a8fc53f17ab29c7a956894c5), causation_id: EventId(0x08109f19ace30a5d5ecc9d69a1f0e24d85748052a8fc53f17ab29c7a956894c5), origin_id: EventId(0x08109f19ace30a5d5ecc9d69a1f0e24d85748052a8fc53f17ab29c7a956894c5), seq: 2, ts: 32740845651105847686158743419405907, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.197761Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:19.197774Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:19.197935Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845651119240022356256553879123, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.198154Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:19.198219Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:19.198229Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:19.198236Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:19.198243Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:19.198281Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:19.198369Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845651128389607416816491480659, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:19.198646Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:19.198663Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:19.198687Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:19.198696Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:19.198704Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:19.198711Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:19.198732Z  INFO e3_sync::sync: Sync finished. -Building normal 0xb068885143c60b270300e9149a2c26467Af211E9 -2026-03-30T15:33:19.200496Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:19.200590Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:19.201026Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 51 }), ctx: EventContext { id: EventId(0x558e82e724e2046c97c9555ba8fbb23065b2d4d851a474b626b5044279f8bb2f), causation_id: EventId(0x558e82e724e2046c97c9555ba8fbb23065b2d4d851a474b626b5044279f8bb2f), origin_id: EventId(0x558e82e724e2046c97c9555ba8fbb23065b2d4d851a474b626b5044279f8bb2f), seq: 5, ts: 32740845651135214902724089025578579, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.201157Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 52 }), ctx: EventContext { id: EventId(0x6d3a2bebe5cbb466cf0789fba678b53920a5cd252d8104a89b55df1abdff3bcb), causation_id: EventId(0x6d3a2bebe5cbb466cf0789fba678b53920a5cd252d8104a89b55df1abdff3bcb), origin_id: EventId(0x6d3a2bebe5cbb466cf0789fba678b53920a5cd252d8104a89b55df1abdff3bcb), seq: 6, ts: 32740845651136081899695553374504531, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.201328Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:19.201372Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:19.201508Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:19.201701Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:19.201738Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:19.201743Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:19.233064Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:19.233092Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:19.233172Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:19.233179Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:19.233184Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:19.233586Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:19.233727Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:19.233737Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:19.233822Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:19.233829Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:19.233881Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:19.233884Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:19.233887Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:19.233889Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:19.233938Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:19.233944Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:19.234003Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x3d1856679e2ee8b9a2052a8a6ae22170f75d66c705c41f0678836ec9a11a34e9), causation_id: EventId(0x3d1856679e2ee8b9a2052a8a6ae22170f75d66c705c41f0678836ec9a11a34e9), origin_id: EventId(0x3d1856679e2ee8b9a2052a8a6ae22170f75d66c705c41f0678836ec9a11a34e9), seq: 1, ts: 32740845651785204376905318161934356, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.336837Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:19.336883Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:19.337100Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 55 }), ctx: EventContext { id: EventId(0xb1dcad26493d2e684a5b5ae1406434591ba7073504e5df38b3ef3522cafbe96b), causation_id: EventId(0xb1dcad26493d2e684a5b5ae1406434591ba7073504e5df38b3ef3522cafbe96b), origin_id: EventId(0xb1dcad26493d2e684a5b5ae1406434591ba7073504e5df38b3ef3522cafbe96b), seq: 2, ts: 32740845653685071442544812301969428, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.337681Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:19.337700Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:19.337873Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845653700492920590433487120404, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.338159Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:19.338229Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:19.338238Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:19.338244Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:19.338252Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:19.338288Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:19.338396Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845653710970671224300512438292, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:19.338677Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:19.338693Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:19.338719Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:19.338727Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:19.338734Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:19.338740Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:19.338759Z  INFO e3_sync::sync: Sync finished. -Building normal 0xd9774e3479FbfAA672863639016809e3308c063c -2026-03-30T15:33:19.340345Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:19.340433Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:19.341035Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 56 }), ctx: EventContext { id: EventId(0x1865b63abe40ed38312853809f68178199b32779fc70ad2f072f7245c296221d), causation_id: EventId(0x1865b63abe40ed38312853809f68178199b32779fc70ad2f072f7245c296221d), origin_id: EventId(0x1865b63abe40ed38312853809f68178199b32779fc70ad2f072f7245c296221d), seq: 5, ts: 32740845653718312475365636913981460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.341423Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 57 }), ctx: EventContext { id: EventId(0x3956eb269ee5fcbcc918b8c551053dd0cf3e6a73b009d8d0efd2d954d61b0e24), causation_id: EventId(0x3956eb269ee5fcbcc918b8c551053dd0cf3e6a73b009d8d0efd2d954d61b0e24), origin_id: EventId(0x3956eb269ee5fcbcc918b8c551053dd0cf3e6a73b009d8d0efd2d954d61b0e24), seq: 6, ts: 32740845653719161025593027553355796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.341836Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:19.341913Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:19.342178Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:19.342555Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:19.342620Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:19.342629Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:19.382910Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:19.382934Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:19.382997Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:19.383004Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:19.383008Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:19.383499Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:19.383657Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:19.383668Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:19.383767Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:19.383775Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:19.383830Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:19.383833Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:19.383837Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:19.383840Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:19.383895Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:19.383902Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:19.383957Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xaa718b54d778d6fae15097354d8e16e5a1920dcc439d60bbab7029793218044d), causation_id: EventId(0xaa718b54d778d6fae15097354d8e16e5a1920dcc439d60bbab7029793218044d), origin_id: EventId(0xaa718b54d778d6fae15097354d8e16e5a1920dcc439d60bbab7029793218044d), seq: 1, ts: 32740845654551348990990286326528967, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.486389Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:19.486444Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:19.486746Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 60 }), ctx: EventContext { id: EventId(0x80a6ea514e0ee44b89d9b69e5cd3a0995292a864b0508b80ce81014f72e4eb89), causation_id: EventId(0x80a6ea514e0ee44b89d9b69e5cd3a0995292a864b0508b80ce81014f72e4eb89), origin_id: EventId(0x80a6ea514e0ee44b89d9b69e5cd3a0995292a864b0508b80ce81014f72e4eb89), seq: 2, ts: 32740845656444040273185107450985415, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.487491Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:19.487520Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:19.487980Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845656464368585154335376866247, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.488417Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:19.488522Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:19.488543Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:19.488558Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:19.488572Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:19.488637Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:19.488825Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845656484660003635415883643847, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:19.489351Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:19.489381Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:19.489442Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:19.489459Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:19.489474Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:19.489487Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:19.489531Z  INFO e3_sync::sync: Sync finished. -Building normal 0xC24560e5a5DCfdc16079f46a07b6aE6e4E95be27 -2026-03-30T15:33:19.492429Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:19.492577Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:19.493389Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 61 }), ctx: EventContext { id: EventId(0x1b15f05fd6264d5ec5b86356af37cf055d4b386b251c25c17d88e8ec1d37dbb1), causation_id: EventId(0x1b15f05fd6264d5ec5b86356af37cf055d4b386b251c25c17d88e8ec1d37dbb1), origin_id: EventId(0x1b15f05fd6264d5ec5b86356af37cf055d4b386b251c25c17d88e8ec1d37dbb1), seq: 5, ts: 32740845656498126126809223856323527, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.493744Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 62 }), ctx: EventContext { id: EventId(0x1751b189b0edf9be800db277ed7b1860ca7e8a53ad2f86e6eff2af21adaaf0aa), causation_id: EventId(0x1751b189b0edf9be800db277ed7b1860ca7e8a53ad2f86e6eff2af21adaaf0aa), origin_id: EventId(0x1751b189b0edf9be800db277ed7b1860ca7e8a53ad2f86e6eff2af21adaaf0aa), seq: 6, ts: 32740845656500044588192889649691591, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.494213Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:19.494291Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:19.494585Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:19.495087Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:19.495189Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:19.495205Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:19.540687Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:19.540732Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:19.540855Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:19.540866Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:19.540872Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:19.541561Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:19.541805Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:19.541820Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:19.541971Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:19.541982Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:19.542062Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:19.542068Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:19.542072Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:19.542082Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:19.542167Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:19.542177Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:19.542253Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xa890e90b46ac8fde649e74a4cc5a157659acec6174689ee046cdaa1af89cf862), causation_id: EventId(0xa890e90b46ac8fde649e74a4cc5a157659acec6174689ee046cdaa1af89cf862), origin_id: EventId(0xa890e90b46ac8fde649e74a4cc5a157659acec6174689ee046cdaa1af89cf862), seq: 1, ts: 32740845657470601580887047964834022, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.644434Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:19.644507Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:19.644874Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 65 }), ctx: EventContext { id: EventId(0x0e34e6b36621b85528c38bb3042acf9be75f5cb9974e4e6ae27bfa3b99a19342), causation_id: EventId(0x0e34e6b36621b85528c38bb3042acf9be75f5cb9974e4e6ae27bfa3b99a19342), origin_id: EventId(0x0e34e6b36621b85528c38bb3042acf9be75f5cb9974e4e6ae27bfa3b99a19342), seq: 2, ts: 32740845659359769534963790564931814, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.645535Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:19.645558Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:19.645839Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845659379581338098954623367398, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.646169Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:19.646279Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:19.646294Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:19.646305Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:19.646317Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:19.646383Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:19.646552Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845659394523200798659360176358, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:19.646956Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:19.646980Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:19.647018Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:19.647031Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:19.647042Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:19.647051Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:19.647082Z  INFO e3_sync::sync: Sync finished. -Building normal 0x72B6FDC38a7251ff9a0017AE44AE4d43b52a3dE1 -2026-03-30T15:33:19.649684Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:19.649873Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:19.650488Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 66 }), ctx: EventContext { id: EventId(0x5f07b4fff97ec54f55b58a6917bf1d252a1493490ea155bc5511969b05abbd29), causation_id: EventId(0x5f07b4fff97ec54f55b58a6917bf1d252a1493490ea155bc5511969b05abbd29), origin_id: EventId(0x5f07b4fff97ec54f55b58a6917bf1d252a1493490ea155bc5511969b05abbd29), seq: 5, ts: 32740845659405259205849558319216870, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.650757Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 67 }), ctx: EventContext { id: EventId(0x2433dbe3611780389b0247baf3be8d48d7ce7c06ae6eabfd262edf5a23b25aa6), causation_id: EventId(0x2433dbe3611780389b0247baf3be8d48d7ce7c06ae6eabfd262edf5a23b25aa6), origin_id: EventId(0x2433dbe3611780389b0247baf3be8d48d7ce7c06ae6eabfd262edf5a23b25aa6), seq: 6, ts: 32740845659406532031190644278278374, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.651165Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:19.651242Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:19.651668Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:19.652164Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:19.652250Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:19.652260Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:19.701583Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:19.701626Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:19.701762Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:19.701771Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:19.701775Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:19.702232Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:19.702403Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:19.702413Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:19.702507Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:19.702515Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:19.702571Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:19.702575Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:19.702579Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:19.702582Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:19.702638Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:19.702645Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:19.702706Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xf4d43affe25ddf13e44b58b2d463877b96b964f28dca22554d67220d849cfab5), causation_id: EventId(0xf4d43affe25ddf13e44b58b2d463877b96b964f28dca22554d67220d849cfab5), origin_id: EventId(0xf4d43affe25ddf13e44b58b2d463877b96b964f28dca22554d67220d849cfab5), seq: 1, ts: 32740845660431119537276691919970956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.804551Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:19.804615Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:19.804924Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 70 }), ctx: EventContext { id: EventId(0xb88602bcf2f42d4ff505b97c92d75caf3d1cbdd48bcac64ca13bb09d063b7adb), causation_id: EventId(0xb88602bcf2f42d4ff505b97c92d75caf3d1cbdd48bcac64ca13bb09d063b7adb), origin_id: EventId(0xb88602bcf2f42d4ff505b97c92d75caf3d1cbdd48bcac64ca13bb09d063b7adb), seq: 2, ts: 32740845662313148601396908923593356, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.805472Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:19.805485Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:19.805666Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845662329639990598805262738060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.805880Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:19.805943Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:19.805952Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:19.805959Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:19.805968Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:19.806008Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:19.806114Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845662339010936588249714958988, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:19.806377Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:19.806394Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:19.806417Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:19.806424Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:19.806433Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:19.806439Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:19.806458Z  INFO e3_sync::sync: Sync finished. -Building normal 0x2908dE23B4980cA49E43A972c9433FeA57262D14 -2026-03-30T15:33:19.808138Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:19.808266Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:19.808849Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 71 }), ctx: EventContext { id: EventId(0xe6cf19f109f11cc813766136dac8b31debf8b93b2b4e9bae9ab94534160c3cd6), causation_id: EventId(0xe6cf19f109f11cc813766136dac8b31debf8b93b2b4e9bae9ab94534160c3cd6), origin_id: EventId(0xe6cf19f109f11cc813766136dac8b31debf8b93b2b4e9bae9ab94534160c3cd6), seq: 5, ts: 32740845662345873125383669668160140, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.809075Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 72 }), ctx: EventContext { id: EventId(0x6a5ed469f9e7b8376e2ee4cee8cd2de305bff2afabbf8909bf7d53d9fcb8986b), causation_id: EventId(0x6a5ed469f9e7b8376e2ee4cee8cd2de305bff2afabbf8909bf7d53d9fcb8986b), origin_id: EventId(0x6a5ed469f9e7b8376e2ee4cee8cd2de305bff2afabbf8909bf7d53d9fcb8986b), seq: 6, ts: 32740845662346684782122912888431244, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.809425Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:19.809496Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:19.809784Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:19.810388Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:19.810507Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:19.810521Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:19.856432Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:19.856477Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:19.856584Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:19.856593Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:19.856598Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:19.857194Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:19.857384Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:19.857397Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:19.857532Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:19.857543Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:19.857618Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:19.857623Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:19.857626Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:19.857630Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:19.857702Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:19.857712Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:19.857782Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xe734e05bd3aa6c07ffb6a683d2970eebbd878bf3ea13611863dd93e02b02d96d), causation_id: EventId(0xe734e05bd3aa6c07ffb6a683d2970eebbd878bf3ea13611863dd93e02b02d96d), origin_id: EventId(0xe734e05bd3aa6c07ffb6a683d2970eebbd878bf3ea13611863dd93e02b02d96d), seq: 1, ts: 32740845663291287205905359100893796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.959530Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:19.959569Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:19.959813Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 75 }), ctx: EventContext { id: EventId(0x83d8b63716e8cca0e22289b67048bc5402394afc965cb1d4fc4aa925201326cf), causation_id: EventId(0x83d8b63716e8cca0e22289b67048bc5402394afc965cb1d4fc4aa925201326cf), origin_id: EventId(0x83d8b63716e8cca0e22289b67048bc5402394afc965cb1d4fc4aa925201326cf), seq: 2, ts: 32740845665171526935850426278009444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.960236Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:19.960247Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:19.960413Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845665184531890422391511898724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.960724Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:19.960811Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:19.960822Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:19.960829Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:19.960838Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:19.960895Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:19.961011Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845665196134892444754819865188, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:19.961256Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:19.961270Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:19.961295Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:19.961302Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:19.961308Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:19.961314Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:19.961334Z  INFO e3_sync::sync: Sync finished. -Building normal 0xD7f1Ef0C6c26112d961fa7FF94ce7cb54990b7fc -2026-03-30T15:33:19.963055Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:19.963122Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:19.963503Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 76 }), ctx: EventContext { id: EventId(0xe27c70fb353d015020d20dc31ae96ff4906ac993b3bd97a8864c8941a4200bce), causation_id: EventId(0xe27c70fb353d015020d20dc31ae96ff4906ac993b3bd97a8864c8941a4200bce), origin_id: EventId(0xe27c70fb353d015020d20dc31ae96ff4906ac993b3bd97a8864c8941a4200bce), seq: 5, ts: 32740845665202831060543511387101796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.963667Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 77 }), ctx: EventContext { id: EventId(0xfe47a01fa2ac4fad07615f551248bf8262b4f7bbec9da6ccacf40acc2848b14e), causation_id: EventId(0xfe47a01fa2ac4fad07615f551248bf8262b4f7bbec9da6ccacf40acc2848b14e), origin_id: EventId(0xfe47a01fa2ac4fad07615f551248bf8262b4f7bbec9da6ccacf40acc2848b14e), seq: 6, ts: 32740845665203624270538680897821284, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:19.963952Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:19.964016Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:19.964245Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:19.964625Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:19.964696Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:19.964704Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:20.007932Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:20.007968Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:20.008095Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:20.008106Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:20.008111Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:20.008682Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:20.008872Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:20.008885Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:20.009022Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:20.009032Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:20.009111Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:20.009115Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:20.009119Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:20.009122Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:20.009200Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:20.009210Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:20.009280Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x4b867ff701c64b2f28e110d7315eb68575da68d2e145ef082c4c95083aaf3fac), causation_id: EventId(0x4b867ff701c64b2f28e110d7315eb68575da68d2e145ef082c4c95083aaf3fac), origin_id: EventId(0x4b867ff701c64b2f28e110d7315eb68575da68d2e145ef082c4c95083aaf3fac), seq: 1, ts: 32740845666085876699351988173378922, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.111023Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:20.111063Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:20.111294Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 80 }), ctx: EventContext { id: EventId(0xc5052a8ab041b2af5d0169818e30eb13509e1b57a8d901085c89471d6d06e69a), causation_id: EventId(0xc5052a8ab041b2af5d0169818e30eb13509e1b57a8d901085c89471d6d06e69a), origin_id: EventId(0xc5052a8ab041b2af5d0169818e30eb13509e1b57a8d901085c89471d6d06e69a), seq: 2, ts: 32740845667966061089064834221839722, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.111563Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:20.111570Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:20.111662Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845667975671842727236898231658, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.111769Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:20.111807Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:20.111812Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:20.111815Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:20.111820Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:20.111843Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:20.111893Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845667980486442930475091203434, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:20.112008Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:20.112018Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:20.112030Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:20.112034Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:20.112038Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:20.112041Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:20.112051Z  INFO e3_sync::sync: Sync finished. -Building normal 0x86Bdc078a1579B3792127316C48a4FAabf5F7238 -2026-03-30T15:33:20.113059Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:20.113106Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:20.113344Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 81 }), ctx: EventContext { id: EventId(0x6bdf15d9bac90e34b639af739360a9f8102c1a07555152dc1c41a2f4e3ef7ab4), causation_id: EventId(0x6bdf15d9bac90e34b639af739360a9f8102c1a07555152dc1c41a2f4e3ef7ab4), origin_id: EventId(0x6bdf15d9bac90e34b639af739360a9f8102c1a07555152dc1c41a2f4e3ef7ab4), seq: 5, ts: 32740845667983585495934858295874922, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.113427Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 82 }), ctx: EventContext { id: EventId(0x4d7f408e9c20440cb629fae4004c8b4739eac2c081cb388be9557258277466c8), causation_id: EventId(0x4d7f408e9c20440cb629fae4004c8b4739eac2c081cb388be9557258277466c8), origin_id: EventId(0x4d7f408e9c20440cb629fae4004c8b4739eac2c081cb388be9557258277466c8), seq: 6, ts: 32740845667984009771048553615562090, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.113576Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:20.113616Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:20.113741Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:20.113961Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:20.114000Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:20.114005Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:20.144991Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:20.145014Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:20.145085Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:20.145093Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:20.145097Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:20.145479Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:20.145591Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:20.145601Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:20.145685Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:20.145693Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:20.145741Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:20.145745Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:20.145748Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:20.145751Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:20.145794Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:20.145801Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:20.145843Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xf119562a9bb0118b9b055e32b18fcc51e04e64b8c444c5a2c930dd14df8c81a9), causation_id: EventId(0xf119562a9bb0118b9b055e32b18fcc51e04e64b8c444c5a2c930dd14df8c81a9), origin_id: EventId(0xf119562a9bb0118b9b055e32b18fcc51e04e64b8c444c5a2c930dd14df8c81a9), seq: 1, ts: 32740845668606052427958111416957676, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.246980Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:20.247019Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:20.247248Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 85 }), ctx: EventContext { id: EventId(0xe583d471b5b894ddcfb37abd32d2509221724b35795cee9cb728cf94d443ed00), causation_id: EventId(0xe583d471b5b894ddcfb37abd32d2509221724b35795cee9cb728cf94d443ed00), origin_id: EventId(0xe583d471b5b894ddcfb37abd32d2509221724b35795cee9cb728cf94d443ed00), seq: 2, ts: 32740845670474006626350088032697068, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.247626Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:20.247633Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:20.247757Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845670485757202325041017076460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.247887Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:20.247942Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:20.247948Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:20.247952Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:20.247958Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:20.247989Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:20.248052Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845670491992201821954845522668, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:20.248196Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:20.248211Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:20.248227Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:20.248232Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:20.248238Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:20.248242Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:20.248257Z  INFO e3_sync::sync: Sync finished. -Building normal 0xbbcF193cc026118756Dfa33Aa63FB66c046cA342 -2026-03-30T15:33:20.249434Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:20.249510Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:20.249885Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 86 }), ctx: EventContext { id: EventId(0x43db0657714e2bc977832ff201e2b2b7a6ba205178113182b09c5e24e556ae2e), causation_id: EventId(0x43db0657714e2bc977832ff201e2b2b7a6ba205178113182b09c5e24e556ae2e), origin_id: EventId(0x43db0657714e2bc977832ff201e2b2b7a6ba205178113182b09c5e24e556ae2e), seq: 5, ts: 32740845670495921358309654980016876, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.250001Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 87 }), ctx: EventContext { id: EventId(0x1299f1bf4d0b940283e559d816e8e682d7817b34afa178c00d9b16d2f7ffc979), causation_id: EventId(0x1299f1bf4d0b940283e559d816e8e682d7817b34afa178c00d9b16d2f7ffc979), origin_id: EventId(0x1299f1bf4d0b940283e559d816e8e682d7817b34afa178c00d9b16d2f7ffc979), seq: 6, ts: 32740845670496493207375939976116972, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.250234Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:20.250289Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:20.250485Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:20.250819Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:20.250876Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:20.250884Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:20.287836Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:20.287870Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:20.287958Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:20.287966Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:20.287970Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:20.288436Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:20.288587Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:20.288597Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:20.288693Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:20.288700Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:20.288752Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:20.288756Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:20.288759Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:20.288761Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:20.288812Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:20.288819Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:20.288873Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x8fd5227d5ad3d7347321af86f938606900da9e9cd10211d03fccc95233353d43), causation_id: EventId(0x8fd5227d5ad3d7347321af86f938606900da9e9cd10211d03fccc95233353d43), origin_id: EventId(0x8fd5227d5ad3d7347321af86f938606900da9e9cd10211d03fccc95233353d43), seq: 1, ts: 32740845671244158191427462667764128, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.389919Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:20.389949Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:20.390159Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 90 }), ctx: EventContext { id: EventId(0x431d1741277dd1602010ecccc0da1a96d5d77f7132b52d54cceb4dcc97d7b993), causation_id: EventId(0x431d1741277dd1602010ecccc0da1a96d5d77f7132b52d54cceb4dcc97d7b993), origin_id: EventId(0x431d1741277dd1602010ecccc0da1a96d5d77f7132b52d54cceb4dcc97d7b993), seq: 2, ts: 32740845673110618203549468809822624, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.390502Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:20.390513Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:20.390653Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845673121446442320736316621216, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.390823Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:20.390887Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:20.390895Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:20.390901Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:20.390908Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:20.390945Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:20.391026Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845673129138734599473199645088, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:20.391219Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:20.391237Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:20.391257Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:20.391264Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:20.391271Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:20.391277Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:20.391295Z  INFO e3_sync::sync: Sync finished. -Building normal 0x9298861BdD67aB115B2a718c309A59574FA516cC -2026-03-30T15:33:20.392830Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:20.392913Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:20.393319Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 91 }), ctx: EventContext { id: EventId(0x1c025c28cc78d6952c947b6b285f90a9b7e266b410e429d23220152ee71c67e6), causation_id: EventId(0x1c025c28cc78d6952c947b6b285f90a9b7e266b410e429d23220152ee71c67e6), origin_id: EventId(0x1c025c28cc78d6952c947b6b285f90a9b7e266b410e429d23220152ee71c67e6), seq: 5, ts: 32740845673134303822940111874097568, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.393616Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 92 }), ctx: EventContext { id: EventId(0x39fb5b82f8cefa51bf2e20cab720299230eff550899435d2ce2def5aa48af7c2), causation_id: EventId(0x39fb5b82f8cefa51bf2e20cab720299230eff550899435d2ce2def5aa48af7c2), origin_id: EventId(0x39fb5b82f8cefa51bf2e20cab720299230eff550899435d2ce2def5aa48af7c2), seq: 6, ts: 32740845673135060139447133965713824, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.393848Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:20.393894Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:20.394085Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:20.394369Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:20.394418Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:20.394426Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:20.432194Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:20.432245Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:20.432351Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:20.432360Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:20.432365Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:20.432931Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:20.433130Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:20.433146Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:20.433300Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:20.433310Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:20.433388Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:20.433392Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:20.433396Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:20.433400Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:20.433479Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:20.433489Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:20.433567Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x93961185092e63395097b64fdba06e043980e86dfe86746bd8182225168012cd), causation_id: EventId(0x93961185092e63395097b64fdba06e043980e86dfe86746bd8182225168012cd), origin_id: EventId(0x93961185092e63395097b64fdba06e043980e86dfe86746bd8182225168012cd), seq: 1, ts: 32740845673912387487969179654996099, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.535349Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:20.535379Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:20.535607Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 95 }), ctx: EventContext { id: EventId(0xae8c5773ba88f5a5321d88c41cbdafe54b6a0524dc14078db6d7909f024a3f84), causation_id: EventId(0xae8c5773ba88f5a5321d88c41cbdafe54b6a0524dc14078db6d7909f024a3f84), origin_id: EventId(0xae8c5773ba88f5a5321d88c41cbdafe54b6a0524dc14078db6d7909f024a3f84), seq: 2, ts: 32740845675793328194189047795073155, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.535983Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:20.535992Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:20.536140Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845675805097216908074489004163, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.536311Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:20.536381Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:20.536398Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:20.536403Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:20.536411Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:20.536445Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:20.536521Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845675813121550580138143957123, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:20.536783Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:20.536803Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:20.536828Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:20.536836Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:20.536842Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:20.536847Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:20.536864Z  INFO e3_sync::sync: Sync finished. -Building normal 0x1460DE8c7D568C93D31bB4D35c4c86F19c078877 -2026-03-30T15:33:20.538450Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up Event pipe -2026-03-30T15:33:20.538515Z  INFO e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -2026-03-30T15:33:20.538855Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 96 }), ctx: EventContext { id: EventId(0x12df52391ee37d02063a22747a7625c082e8c58e4e84603026da59cd73c7ae04), causation_id: EventId(0x12df52391ee37d02063a22747a7625c082e8c58e4e84603026da59cd73c7ae04), origin_id: EventId(0x12df52391ee37d02063a22747a7625c082e8c58e4e84603026da59cd73c7ae04), seq: 5, ts: 32740845675819541017517789067919491, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.538994Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 97 }), ctx: EventContext { id: EventId(0x62248f97755695a6eb31311f5d1942247e5e78579a1b6f46ce7fd42d369d5533), causation_id: EventId(0x62248f97755695a6eb31311f5d1942247e5e78579a1b6f46ce7fd42d369d5533), origin_id: EventId(0x62248f97755695a6eb31311f5d1942247e5e78579a1b6f46ce7fd42d369d5533), seq: 6, ts: 32740845675820334227512958578638979, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.539234Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:20.539288Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:20.539472Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector listening! -2026-03-30T15:33:20.539763Z  INFO sortition_attach: e3_sortition::sortition: Sortition actor started -2026-03-30T15:33:20.539816Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -2026-03-30T15:33:20.539824Z  INFO e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -2026-03-30T15:33:20.579303Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -2026-03-30T15:33:20.579325Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -2026-03-30T15:33:20.579403Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -2026-03-30T15:33:20.579411Z  INFO e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -2026-03-30T15:33:20.579415Z  INFO e3_ciphernode_builder::ciphernode_builder: E3Router building... -2026-03-30T15:33:20.579877Z  INFO e3_sync::sync: Loading snapshot metadata... -2026-03-30T15:33:20.580019Z  INFO e3_sync::sync: Snapshot metadata loaded for 1 aggregates. -2026-03-30T15:33:20.580033Z  INFO e3_sync::sync: Loading EventStore events... -2026-03-30T15:33:20.580130Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -2026-03-30T15:33:20.580138Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -2026-03-30T15:33:20.580191Z  INFO e3_sync::sync: 0 EventStore events loaded. -2026-03-30T15:33:20.580195Z  INFO e3_sync::sync: Replaying events to actors... -2026-03-30T15:33:20.580198Z  INFO e3_sync::sync: Events replayed. -2026-03-30T15:33:20.580200Z  INFO e3_sync::sync: Loading historical blockchain events... -2026-03-30T15:33:20.580250Z  INFO e3_sync::sync: 0 historical blockchain events loaded. -2026-03-30T15:33:20.580256Z  INFO e3_sync::sync: Waiting until NetReady... -2026-03-30T15:33:20.580307Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x8d23e52d369c706a6fb81d40685e216972a5c8dfbc41b9b626310e26f2ce1235), causation_id: EventId(0x8d23e52d369c706a6fb81d40685e216972a5c8dfbc41b9b626310e26f2ce1235), origin_id: EventId(0x8d23e52d369c706a6fb81d40685e216972a5c8dfbc41b9b626310e26f2ce1235), seq: 1, ts: 32740845676620258837525301332616556, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.682394Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=0, total=0) -2026-03-30T15:33:20.682433Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -2026-03-30T15:33:20.682641Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 100 }), ctx: EventContext { id: EventId(0x92b5e3308f326f80a12a9d5925569e29bcf28c1a4dda276fd38f651517398c75), causation_id: EventId(0x92b5e3308f326f80a12a9d5925569e29bcf28c1a4dda276fd38f651517398c75), origin_id: EventId(0x92b5e3308f326f80a12a9d5925569e29bcf28c1a4dda276fd38f651517398c75), seq: 2, ts: 32740845678505977250460260246562156, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.682973Z  INFO e3_sync::sync: NetReady! -2026-03-30T15:33:20.682983Z  INFO e3_sync::sync: Loading historical libp2p events... -2026-03-30T15:33:20.683126Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32740845678516602575046716948292972, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.683291Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -2026-03-30T15:33:20.683352Z  INFO e3_net::net_sync_manager: Sync request event received -2026-03-30T15:33:20.683360Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -2026-03-30T15:33:20.683365Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -2026-03-30T15:33:20.683372Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -2026-03-30T15:33:20.683411Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -2026-03-30T15:33:20.683491Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32740845678524165740116937864455532, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:20.683676Z  INFO e3_sync::sync: 0 historical libp2p events loaded. -2026-03-30T15:33:20.683692Z  INFO e3_sync::sync: Historical events sorted. -2026-03-30T15:33:20.683712Z  INFO e3_sync::sync: Effects enabled -2026-03-30T15:33:20.683719Z  INFO e3_sync::sync: Publishing historical events to actors... -2026-03-30T15:33:20.683724Z  INFO e3_sync::sync: Historical events published. -2026-03-30T15:33:20.683729Z  INFO e3_sync::sync: Publishing SyncEnded event... -2026-03-30T15:33:20.683748Z  INFO e3_sync::sync: Sync finished. - - - ##################### - ## SETUP COMPLETED ## - ##################### - -Test setup: 19 registered nodes, 3 threshold, collector (observer): 0xD464d9bc7A3a829b37F5acE83BE79aeB914ba1e9 -IN FLUSH LOOP... -2026-03-30T15:33:20.685390Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 101 }), ctx: EventContext { id: EventId(0xb0b31c643cd5c435721a3f4a523a2adb707586d2be9949d7acb31986286c9691), causation_id: EventId(0xb0b31c643cd5c435721a3f4a523a2adb707586d2be9949d7acb31986286c9691), origin_id: EventId(0xb0b31c643cd5c435721a3f4a523a2adb707586d2be9949d7acb31986286c9691), seq: 5, ts: 32740845678529146361016839443391852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.685560Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 102 }), ctx: EventContext { id: EventId(0x8ec1c4c6430ad85bf63e198588b441ee825f8c8814ff16d77dafd4c1e8ca23ff), causation_id: EventId(0x8ec1c4c6430ad85bf63e198588b441ee825f8c8814ff16d77dafd4c1e8ca23ff), origin_id: EventId(0x8ec1c4c6430ad85bf63e198588b441ee825f8c8814ff16d77dafd4c1e8ca23ff), seq: 6, ts: 32740845678529828890547566696801644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.685713Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.685845Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.685974Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.686105Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.686227Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.686347Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.686468Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.686587Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.686704Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.686824Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.686941Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.687059Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.687177Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.687302Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.687420Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.687541Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.687659Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.687771Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.687892Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.688006Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.688118Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.688231Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.688345Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.688460Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.688573Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.688686Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.688796Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.688910Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.689017Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.689133Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.689244Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.689359Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.689470Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.689581Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.689696Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.689806Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.689926Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.690035Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.690154Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.690273Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.690384Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.690491Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.690604Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.690718Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.690826Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.690946Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.691058Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.691171Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.691282Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.691396Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.691507Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.691621Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.691734Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.691849Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.691961Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.692070Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.692185Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.692301Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.692587Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.692708Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.692821Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.692943Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.693053Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.693158Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.693269Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.693380Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.693488Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.693604Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.693715Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.693829Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.693994Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.694116Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.694217Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.694323Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.694430Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.694533Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.694634Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.694731Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.694823Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.694921Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695021Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695116Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695211Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695305Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695398Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695496Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695590Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695680Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695773Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695863Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.695952Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696048Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696141Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696232Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696332Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696423Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696512Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696604Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696690Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696780Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696872Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.696962Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697050Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697143Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697232Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697319Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697410Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697500Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697593Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697686Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697777Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697865Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.697960Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.698046Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.698139Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.698228Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.698335Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.698433Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.698535Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.698632Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.698724Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.698818Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.698916Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699019Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699115Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699211Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699309Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699405Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699497Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699591Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699689Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699793Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699892Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.699985Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.700082Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.700185Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.700279Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.700377Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.700471Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.700561Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.700657Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.700750Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.700842Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.700936Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.701026Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.701128Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.701229Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.701329Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.701428Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.701522Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.701619Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.701713Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.701821Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.701919Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.702003Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.702090Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.702175Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.702263Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.702354Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.702467Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.702646Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.702746Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.702835Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.702923Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703002Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703083Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703162Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703244Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703326Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703409Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703491Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703576Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703657Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703739Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703848Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.703939Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704027Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704118Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704208Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704298Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704390Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704479Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704561Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704649Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704732Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704814Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.704918Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705071Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705157Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705241Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705327Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705411Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705498Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705585Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705667Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705752Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705832Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705915Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.705998Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706081Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706164Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706244Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706324Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706399Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706479Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706562Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706642Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706723Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706803Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706884Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.706968Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707047Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707131Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707215Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707292Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707372Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707457Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707537Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707616Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707699Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707794Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707896Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.707982Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708062Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708143Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708231Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708310Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708388Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708476Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708555Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708634Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708717Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708804Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708891Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.708975Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709061Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709143Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709228Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709311Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709392Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709474Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709558Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709639Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709724Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709809Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709888Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.709962Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710034Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710108Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710206Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710285Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710358Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710431Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710504Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710572Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710646Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710725Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710801Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710872Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.710947Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711022Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711118Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711205Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711284Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711375Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711450Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711522Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711597Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711668Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711740Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711811Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711885Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.711955Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712023Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712096Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712164Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712232Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712304Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712374Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712444Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712518Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712589Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712664Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712737Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712808Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712880Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.712955Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713026Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713145Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713218Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713300Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713382Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713457Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713532Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713609Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713683Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713758Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713827Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713897Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.713966Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714063Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714134Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714208Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714282Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714348Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714416Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714485Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714555Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714626Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714695Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714755Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714825Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714891Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.714961Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715031Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715100Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715167Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715237Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715301Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715369Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715455Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715522Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715589Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715657Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715724Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715792Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715865Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.715940Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716009Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716086Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716155Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716218Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716284Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716354Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716441Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716512Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716580Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716650Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716722Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716791Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716859Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716926Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.716992Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717066Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717138Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717204Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717275Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717341Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717431Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717516Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717593Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717676Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717747Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717821Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717893Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.717993Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718069Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718144Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718220Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718341Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718424Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718517Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718650Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718721Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718793Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718861Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.718932Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719001Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719068Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719141Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719210Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719275Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719344Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719413Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719480Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719548Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719615Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719682Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719749Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719820Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719886Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.719954Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720022Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720086Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720160Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720227Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720297Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720365Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720436Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720503Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720568Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720633Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720699Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720767Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720868Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720930Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.720998Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721068Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721131Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721203Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721269Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721334Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721401Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721467Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721531Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721597Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721677Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721750Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721816Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721882Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.721948Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722014Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722078Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722142Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722208Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722274Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722338Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722402Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722467Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722528Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722591Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722653Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722710Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722775Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722839Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722898Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.722960Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723037Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723112Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723175Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723242Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723304Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723369Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723435Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723495Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723560Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723628Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723693Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723754Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723818Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723880Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.723937Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724003Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724064Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724125Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724187Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724247Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724307Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724367Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724428Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724488Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724551Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724612Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724672Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724733Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724794Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724855Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724912Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.724971Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725032Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725092Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725151Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725211Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725285Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725352Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725431Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725497Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725564Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725628Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725691Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725752Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725813Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725869Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725931Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.725991Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726049Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726110Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726172Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726233Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726295Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726356Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726417Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726476Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726551Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726613Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726671Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726731Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726791Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726850Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726909Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.726966Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727025Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727098Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727156Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727227Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727288Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727347Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727405Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727464Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727519Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727581Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727642Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727736Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727796Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727853Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727911Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.727967Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728027Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728081Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728140Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728228Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728298Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728366Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728433Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728494Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728559Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728618Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728674Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728737Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728797Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728855Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.728918Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729004Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729072Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729139Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729202Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729263Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729325Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729387Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729448Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729508Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729574Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729635Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729692Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729759Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729818Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729877Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729935Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.729993Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730053Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730137Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730197Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730254Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730316Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730373Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730433Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730493Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730551Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730609Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730668Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730728Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730797Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730862Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730921Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.730979Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731040Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731097Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731154Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731213Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731270Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731327Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731389Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731448Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731503Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731557Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731613Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731668Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731730Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731789Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731844Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731904Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.731958Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732013Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732070Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732144Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732197Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732256Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732312Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732366Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732428Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732498Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732562Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732631Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732695Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732754Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732814Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732876Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.732937Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733015Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733077Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733136Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733200Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733262Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733320Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733380Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733442Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733503Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733561Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733619Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733679Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733734Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733789Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733844Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733900Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.733971Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734025Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734078Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734136Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734190Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734248Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734308Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734364Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734415Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734470Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734524Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734576Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734630Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734684Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734738Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734811Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734867Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734926Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.734980Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735037Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735090Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735145Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735201Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735260Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735314Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735369Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735424Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735485Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735543Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735602Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735661Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735710Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735764Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735819Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735885Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.735950Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736036Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736104Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736166Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736229Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736295Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736358Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736421Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736485Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736547Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736615Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736677Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736738Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736802Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736884Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.736940Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737003Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737065Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737127Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737184Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737259Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737329Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737385Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737443Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737502Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737559Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737618Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737671Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737728Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737781Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737837Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737892Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.737959Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738013Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738063Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738118Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738179Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738234Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738293Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738346Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738397Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738454Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738505Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738558Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738610Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738663Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738715Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738766Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738824Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738872Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738937Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.738989Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739041Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739091Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739139Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739190Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739242Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739307Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739369Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739425Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739484Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739537Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739590Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739643Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739696Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739749Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739803Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739855Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739920Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.739970Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740024Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740074Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740129Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740180Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740230Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740284Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740335Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740386Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740437Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740486Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740538Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740591Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740640Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740702Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740757Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740810Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740862Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740913Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.740967Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741016Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741070Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741120Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741170Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741218Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741265Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741316Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741370Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741420Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741469Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741519Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741572Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741625Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741694Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741747Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741792Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741838Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741888Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741935Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.741984Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742030Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742075Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742124Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742178Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742225Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742271Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742328Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742381Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742436Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742491Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742543Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742598Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742664Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742717Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742768Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742821Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742870Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742922Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.742972Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743025Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743108Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743182Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743238Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743299Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743357Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743412Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743467Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743524Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743582Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743641Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743697Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743750Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743806Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743858Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743910Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.743961Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744015Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744068Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744122Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744171Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744221Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744272Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744321Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744427Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744479Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744532Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744582Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744633Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744682Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744726Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744779Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744831Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744883Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744932Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.744982Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745031Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745080Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745130Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745177Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745225Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745275Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745326Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745377Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745426Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745487Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745541Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745596Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745662Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745716Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745769Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745825Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745883Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745947Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.745998Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746050Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746103Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746157Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746220Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746287Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746350Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746401Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746455Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746509Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746564Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746620Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746676Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746727Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746787Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746842Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746905Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.746962Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747022Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747079Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747131Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747184Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747235Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747292Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747343Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747404Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747471Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747522Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747573Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747628Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747681Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747734Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747786Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747840Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747897Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.747948Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748000Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748056Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748125Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748178Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748245Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748293Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748352Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748406Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748458Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748511Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748572Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748625Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748677Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748745Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748815Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748872Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748929Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.748986Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749045Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749108Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749175Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749235Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749298Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749366Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749426Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749489Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749552Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749606Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749672Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749729Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749785Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749837Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749893Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.749947Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750021Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750077Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750155Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750216Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750272Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750324Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750380Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750436Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750487Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750545Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750601Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750654Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750716Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750770Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750820Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750876Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750935Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.750990Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751044Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751093Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751150Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751203Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751257Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751309Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751364Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751456Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751515Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751582Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751643Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751711Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751771Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751825Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751882Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751948Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.751998Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752062Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752116Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752186Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752241Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752296Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752351Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752409Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752470Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752523Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752575Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752628Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752679Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752731Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752786Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752843Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752899Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.752987Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753041Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753100Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753152Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753212Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753268Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753326Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753387Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753441Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753493Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753545Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753594Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753645Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753711Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753759Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753811Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753863Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753922Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.753974Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754027Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754079Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754131Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754181Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754234Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754284Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754340Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754397Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754448Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754508Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754559Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754616Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754667Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754722Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754784Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754835Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754903Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.754959Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755014Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755062Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755114Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755166Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755219Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755270Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755321Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755382Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755438Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755494Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755551Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755618Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755672Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755727Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755782Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755835Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755887Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755937Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.755991Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756048Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756100Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756149Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756202Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756253Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756302Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756355Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756405Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756455Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756506Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756571Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756619Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756671Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756728Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756778Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756831Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756882Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756931Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.756985Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757036Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757088Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757137Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757185Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757236Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757299Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757353Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757406Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757462Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757517Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757576Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757630Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757681Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757740Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757789Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757838Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757889Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757936Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.757996Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758050Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758107Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758162Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758215Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758289Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758336Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758389Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758442Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758512Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758568Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758624Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758685Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758737Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758793Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758846Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758901Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.758953Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759010Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759061Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759115Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759169Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759236Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759298Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759354Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759406Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759460Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759511Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759566Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759615Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759668Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759722Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759772Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759823Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759876Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759926Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.759983Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760034Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760088Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760155Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760203Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760258Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760312Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760366Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760413Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760472Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760523Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760576Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760629Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760676Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760725Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760782Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760839Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760886Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760938Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.760987Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761041Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761102Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761150Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761199Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761250Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761303Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761355Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761415Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761476Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761527Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761584Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761643Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761699Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761753Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761807Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761859Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761915Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.761968Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762029Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762098Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762150Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762206Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762257Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762310Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762364Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762421Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762475Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762529Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762585Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762647Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762701Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762759Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762814Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762874Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762927Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.762979Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763036Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763086Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763142Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763195Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763251Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763303Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763352Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763403Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763461Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763508Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763561Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763612Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763666Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763713Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763765Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763836Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763903Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.763958Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764011Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764065Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764145Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764198Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764255Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764328Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764374Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764430Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764484Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764535Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764590Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764646Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764701Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764752Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764801Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764867Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), causation_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), origin_id: EventId(0xb0602fe0b345ca353ced45c2ebeb06f629ac58fa19ec61e9f7d4ce80f42337db), seq: 1, ts: 32740845678537945457939996421833292, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764925Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", index: 0, num_nodes: 1, chain_id: 1 }), ctx: EventContext { id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), causation_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), origin_id: EventId(0x825354e72e41441c4a91c74d2fe195e717638f338dfd11ad4d58256cd3bdb6ff), seq: 2, ts: 32740845678538369733053691741520460, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.764981Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), causation_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), origin_id: EventId(0xe695dfe8dd3c706ff1d69d1c4f7e48e2c471219964fe83432a05b3c1c249fb69), seq: 3, ts: 32740845678538646434214797384794700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765050Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x19592E0C6A4124aa36666202F09E2b264B3EB99C", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), causation_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), origin_id: EventId(0x5e516677cbb08687bbe22a5951585bae4d2661908fc10fc21b2a2395b06de6f9), seq: 4, ts: 32740845678538867795143681899414092, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765107Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x419A15a49DD9d7896EE4605558513703598F3FcB", index: 1, num_nodes: 2, chain_id: 1 }), ctx: EventContext { id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), causation_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), origin_id: EventId(0x4bd7a2b908e2d627ace2aaf08aff0ef2e9e7416b7caa7fd901d1462b2cfac2e3), seq: 5, ts: 32740845678539070709328492704481868, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765233Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), causation_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), origin_id: EventId(0xcddf0da0a38e5ae69ac10ae563ae2a7a073d6f05c1da52fcb025aed7d6b16599), seq: 6, ts: 32740845678539273623513303509549644, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765289Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x419A15a49DD9d7896EE4605558513703598F3FcB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), causation_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), origin_id: EventId(0xe403ebd28a23006bf7e0021b23e94602b8d34d297f026a24926faeb0f9eb638f), seq: 7, ts: 32740845678539458090954040605065804, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765341Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", index: 2, num_nodes: 3, chain_id: 1 }), ctx: EventContext { id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), causation_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), origin_id: EventId(0x620bb7f580e09506be7314992be815b082d042d6721f291824656596b1ca9578), seq: 8, ts: 32740845678539642558394777700581964, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765395Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), causation_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), origin_id: EventId(0x158b80d471222c44c67f6b8860e0cbbb051b5e848545d7df109464a114c3e710), seq: 9, ts: 32740845678539827025835514796098124, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765447Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), causation_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), origin_id: EventId(0xd7abb9cf1988699fbe9e5f8b0f3abc3d9f168a853eee30d234c83992c904b799), seq: 10, ts: 32740845678540029940020325601165900, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765499Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", index: 3, num_nodes: 4, chain_id: 1 }), ctx: EventContext { id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), causation_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), origin_id: EventId(0x1e138c9b97761ea017319d4ca226b01f8f0d5a89e048ad5a9666b2a1fb348394), seq: 11, ts: 32740845678540214407461062696682060, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765553Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), causation_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), origin_id: EventId(0xecc625c9e79aafbeaa8b86543476d3f7f827a88c4af16da761dcfe629beeddf2), seq: 12, ts: 32740845678540398874901799792198220, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765604Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), causation_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), origin_id: EventId(0xa2769729696d12efa3361db61ec93726faeadf7d9ef5f63569941244440c9b11), seq: 13, ts: 32740845678540601789086610597265996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765658Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", index: 4, num_nodes: 5, chain_id: 1 }), ctx: EventContext { id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), causation_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), origin_id: EventId(0x93e9fbfade31a52e4a99007da8c41ccb2ed12a871c705812a940ac26b773d15a), seq: 14, ts: 32740845678540767809783273983230540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765710Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), causation_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), origin_id: EventId(0x37e6414c214a219a7251783f83e0d5971a7694c2af9d4e196994de0c3be9bfd7), seq: 15, ts: 32740845678540952277224011078746700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765768Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xedda9D0f1df94097c173F7CE227F697ACE7Dd113", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), causation_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), origin_id: EventId(0x92b5a01ed123ce5674091e24efa00bcc9d02d793a40a7df520f5ea56f9fb659d), seq: 16, ts: 32740845678541155191408821883814476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765829Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", index: 5, num_nodes: 6, chain_id: 1 }), ctx: EventContext { id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), causation_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), origin_id: EventId(0x92cc30d134d719b1f3220dae6bcd8c6dbfb0eb40e782c6b62333dae892534902), seq: 17, ts: 32740845678541339658849558979330636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765884Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), causation_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), origin_id: EventId(0x1907c5e174d6111bb9d44c79ff4e40f68586370fc33ef2265ac0f9b480e51450), seq: 18, ts: 32740845678541524126290296074846796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765942Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), causation_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), origin_id: EventId(0x9411cbac597cf72fc105385c7074267ce95fe8099cd1856d315b0958a5acf869), seq: 19, ts: 32740845678541727040475106879914572, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.765998Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", index: 6, num_nodes: 7, chain_id: 1 }), ctx: EventContext { id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), causation_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), origin_id: EventId(0x41b036b33f21f18b513575a0c4f3adbf07c5f3c6d39777d7b146dce22ab6a98b), seq: 20, ts: 32740845678541911507915843975430732, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766059Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), causation_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), origin_id: EventId(0x52b37e56f652ad65b3aa532cc6dbddff119244a2c7f140e40e0dafe1563f3bd8), seq: 21, ts: 32740845678542095975356581070946892, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766124Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xdf2836306EFfca9092B33eE7Bf209C0b578C4473", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), causation_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), origin_id: EventId(0x46d66ea5acdca41bc88a1ea64e4e3907e8b914e46cbc16322383002ac935492d), seq: 22, ts: 32740845678542280442797318166463052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766173Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", index: 7, num_nodes: 8, chain_id: 1 }), ctx: EventContext { id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), causation_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), origin_id: EventId(0xa525486f55b58ad3717ab5b2fc7226d89225305766ebf9ddf3a28ce785a74d2d), seq: 23, ts: 32740845678542464910238055261979212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766229Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), causation_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), origin_id: EventId(0xfaf67d6568d476a5c095080155adaa3a0bf9a457a2f00c561cff5d633a1eb505), seq: 24, ts: 32740845678542649377678792357495372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766285Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x77bf25b868AC287B27e440866f1AE4Ad41F344EE", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), causation_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), origin_id: EventId(0x46fea01c7937899b8a413570e6ddde01e27dd16fb41439052eb18c033d2f1684), seq: 25, ts: 32740845678542852291863603162563148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766339Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", index: 8, num_nodes: 9, chain_id: 1 }), ctx: EventContext { id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), causation_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), origin_id: EventId(0x8991a2efc601f5d0476e7afe2ce4e123bf474c48891470eaf97e54ae91e0608a), seq: 26, ts: 32740845678543036759304340258079308, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766395Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), causation_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), origin_id: EventId(0x405a4da6d46caf6e7afc6adbadb9cb4d08b7ddecfa2f12cc79e2fd23b93f34b9), seq: 27, ts: 32740845678543202780001003644043852, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766445Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x210A5A2814Ce4F3241249B32edaa8fa8532b932A", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), causation_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), origin_id: EventId(0x6e04d24a0987a1a7d1627a220998a5747bf63620a7f8887d41063498e5b68ac2), seq: 28, ts: 32740845678543405694185814449111628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766496Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", index: 9, num_nodes: 10, chain_id: 1 }), ctx: EventContext { id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), causation_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), origin_id: EventId(0xff471e885347ba271fc903dd5c574f19590becc99e9171248cd8e01c801e7b03), seq: 29, ts: 32740845678543590161626551544627788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766552Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), causation_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), origin_id: EventId(0x172571212f73abaa010d7e6390c4acdbd03b6bf13536e59f6e109bb701d7e06d), seq: 30, ts: 32740845678543774629067288640143948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766608Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), causation_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), origin_id: EventId(0x3cc4ac38e3dc3c0f46fafab2640f2c88fcc44fbfccf489a81737980bd3aef99c), seq: 31, ts: 32740845678543977543252099445211724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766661Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", index: 10, num_nodes: 11, chain_id: 1 }), ctx: EventContext { id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), causation_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), origin_id: EventId(0xa2ab01de4610b45b083063df57e0f2a3b501ae8489a5168b0fe19436ac8334ea), seq: 32, ts: 32740845678544162010692836540727884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766716Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), causation_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), origin_id: EventId(0x375729249dbcc7ac61909f196563cf058ca05d26d516da43c541e639049ef136), seq: 33, ts: 32740845678544346478133573636244044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766786Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), causation_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), origin_id: EventId(0x79fdc6ca172bd64a0eac59b50c00f5291422165f6cd48e1a63d6ad5b696c75e8), seq: 34, ts: 32740845678544549392318384441311820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766834Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", index: 11, num_nodes: 12, chain_id: 1 }), ctx: EventContext { id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), causation_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), origin_id: EventId(0x83595f95abfc73316b1f49a4383aa7f2f807e73af7822ce1781af85507b4b575), seq: 35, ts: 32740845678544807646735416375034444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766891Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), causation_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), origin_id: EventId(0x6460b7e773a0838f8f11b1fffdf3291633791d8fd6eb4d05de5caed2e966db84), seq: 36, ts: 32740845678544992114176153470550604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.766957Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), causation_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), origin_id: EventId(0x08811b9cd8e57a6f282784d67589166ce0a8b8cb406fe2548acbc2a791d54469), seq: 37, ts: 32740845678545195028360964275618380, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767008Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", index: 12, num_nodes: 13, chain_id: 1 }), ctx: EventContext { id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), causation_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), origin_id: EventId(0xff895e80ad560adc24be9e426e464363231d59e9c814123cadeb78a5aadacf30), seq: 38, ts: 32740845678545379495801701371134540, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767060Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), causation_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), origin_id: EventId(0x787380aed17b523795672879da6adc3aa88610c0bf334660216e6b4ab6a7e103), seq: 39, ts: 32740845678545563963242438466650700, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767120Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x077e873eCcD8B05459D31326A860Eea2Ad7D6128", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), causation_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), origin_id: EventId(0xe6ff6f8088543848b27f7abb3c58bf352f10a0e06734a35e39729e1f7099859f), seq: 40, ts: 32740845678545766877427249271718476, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767172Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", index: 13, num_nodes: 14, chain_id: 1 }), ctx: EventContext { id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), causation_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), origin_id: EventId(0xd3c068fbcc75caa163dac10edcdd7525d71cf662ba38ca391fe9895d3b0ff27a), seq: 41, ts: 32740845678545951344867986367234636, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767225Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), causation_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), origin_id: EventId(0xf0ff361ac4e312dca1b82356b53936083b2869778a59e6d8be0ad4cc67841723), seq: 42, ts: 32740845678546135812308723462750796, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767279Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), causation_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), origin_id: EventId(0x5aa2bf28d10acbc38f70e02b391b43991e58d273619d21a1a116606863fa8bee), seq: 43, ts: 32740845678546320279749460558266956, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767331Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", index: 14, num_nodes: 15, chain_id: 1 }), ctx: EventContext { id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), causation_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), origin_id: EventId(0x87f67d6ae23ecb1ef08558bcbc1c7ed137aea0d876d381c05debd60754bf704a), seq: 44, ts: 32740845678546504747190197653783116, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767383Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), causation_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), origin_id: EventId(0xe2079285c3b98ad9d5f04c7c67d6cbb2719bc0791acc755b499a16601a26b224), seq: 45, ts: 32740845678546689214630934749299276, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767437Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), causation_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), origin_id: EventId(0x828bbcee0f6fe413221f63a89ff2fca108b00fae2dedcb640d7c4840c52e63bb), seq: 46, ts: 32740845678546892128815745554367052, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767487Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", index: 15, num_nodes: 16, chain_id: 1 }), ctx: EventContext { id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), causation_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), origin_id: EventId(0x7b50a4ed05e6efb745e050c2f80054ee3a6c20078bb41db12f49a990e3a7712a), seq: 47, ts: 32740845678547076596256482649883212, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767541Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), causation_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), origin_id: EventId(0x2a4f3525feb1204f8b9f9e75c2bcfdd1306123672bebbf26b67230f7f1d3d526), seq: 48, ts: 32740845678547261063697219745399372, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767591Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), causation_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), origin_id: EventId(0xa91c0917f91cef4c9bf91f83f609d48543cd21116b66d8a5fb64bb86ef94f539), seq: 49, ts: 32740845678547463977882030550467148, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767642Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", index: 16, num_nodes: 17, chain_id: 1 }), ctx: EventContext { id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), causation_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), origin_id: EventId(0xe2b8907e4e0466732a70d2ac582ee1d71191422e40e8ac36286a3cef4d988e37), seq: 50, ts: 32740845678547629998578693936431692, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767691Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), causation_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), origin_id: EventId(0x2857f45e1f4f5d119bd229064e3507959837fcc68f3ed0f7c1ac0bb18b90ebc1), seq: 51, ts: 32740845678547832912763504741499468, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767742Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), causation_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), origin_id: EventId(0x792cf4fc699d2e4d9c72c6c21a71fbebdad65186bec0f9db49b0670c455ad2cb), seq: 52, ts: 32740845678548017380204241837015628, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767799Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3453797c0F390D341CD317A37d90d839c19f0F36", index: 17, num_nodes: 18, chain_id: 1 }), ctx: EventContext { id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), causation_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), origin_id: EventId(0x890ae0d07ba03bd5de01ab0bafb66efbc0fa3d1b8ce63814529b6817af0238a6), seq: 53, ts: 32740845678548201847644978932531788, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767849Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), causation_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), origin_id: EventId(0x8b9b48c60564a429947bc2d0f913fc3def9dbc0719ce7bf5a3c2b1590898c489), seq: 54, ts: 32740845678548386315085716028047948, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767900Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3453797c0F390D341CD317A37d90d839c19f0F36", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), causation_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), origin_id: EventId(0x8f9ca45c122b7806bdd9d993749b8f3d968f253e7d75e9f11a05e6d1d92d77c1), seq: 55, ts: 32740845678548589229270526833115724, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.767952Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", index: 18, num_nodes: 19, chain_id: 1 }), ctx: EventContext { id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), causation_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), origin_id: EventId(0x837fcb1d28bdddf9491f57733e62a8c41466d9cbdf2112204f65c4b10d4da22c), seq: 56, ts: 32740845678548773696711263928631884, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.768004Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", delta: 1000000000, new_balance: 1000000000, reason: 0x0000000000000000000000000000000000000000000000000000000000000000, chain_id: 1 }), ctx: EventContext { id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), causation_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), origin_id: EventId(0xfca33e1e49686771964f03292c82c22e03160b0f69e74919832ef36ea04c4a5f), seq: 57, ts: 32740845678548958164152001024148044, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.768059Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a", active: true, chain_id: 1 }), ctx: EventContext { id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), causation_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), origin_id: EventId(0x2079516f9124b639cffdead2e3a5aad690de6d0cf7d1cc0f06a66b4e1d02c11c), seq: 58, ts: 32740845678549161078336811829215820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:20.768270Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -2026-03-30T15:33:20.768347Z  INFO e3_net::net_event_translator: NetEventTranslator is running -2026-03-30T15:33:20.769043Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.769116Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.769129Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769145Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.769169Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.769179Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769192Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.769212Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.769220Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769231Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.769258Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.769266Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769279Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.769302Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.769309Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769323Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.769349Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.769357Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769370Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.769397Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.769406Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769419Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.769447Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.769454Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769470Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.769498Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.769506Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769521Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.769549Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.769556Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769573Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.769606Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.769613Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769631Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.769667Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.769675Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769694Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.769731Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.769738Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769757Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.769795Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.769803Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769823Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.769869Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.769878Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769898Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.769937Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.769945Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.769966Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.770011Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.770020Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770043Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.770093Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.770102Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770124Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.770167Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.770175Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770198Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.770334Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.770353Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.770361Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770373Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.770389Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.770396Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770407Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.770426Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.770434Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770446Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.770467Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.770474Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770486Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.770510Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.770518Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770531Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.770556Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.770564Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770580Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.770607Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.770615Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770629Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.770661Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.770669Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770681Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.770711Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.770719Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770734Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.770764Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.770773Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770792Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.770827Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.770835Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770849Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.770877Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.770884Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770902Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.770932Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.770939Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.770958Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.770994Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.771002Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771023Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.771059Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.771066Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771083Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.771120Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.771128Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771145Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.771182Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.771189Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771208Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.771246Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.771252Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771271Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.771312Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.771320Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771338Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -IN FLUSH LOOP... -2026-03-30T15:33:20.771605Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.771624Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.771631Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771640Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.771659Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.771665Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771674Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.771691Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.771697Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771707Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.771728Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.771734Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771744Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.771763Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.771770Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771780Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.771802Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.771808Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771820Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.771841Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.771850Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771865Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.771893Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.771901Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771916Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.771946Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.771953Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.771970Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.771998Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.772006Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772023Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.772052Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.772060Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772080Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.772112Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.772120Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772138Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.772169Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.772178Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772197Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.772229Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.772236Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772255Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.772303Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.772311Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772328Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.772373Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.772382Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772403Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.772448Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.772457Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772480Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.772525Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.772533Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772554Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.772601Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.772610Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772632Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.772780Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.772799Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.772807Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772817Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.772836Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.772844Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772854Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.772870Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.772877Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772888Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.772910Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.772916Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772928Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.772949Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.772956Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.772969Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.772992Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.772999Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773012Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.773037Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.773044Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773060Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.773091Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.773099Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773114Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.773141Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.773148Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773163Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.773190Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.773197Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773212Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.773242Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.773249Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773266Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.773300Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.773307Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773329Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.773366Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.773373Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773392Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.773426Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.773433Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773452Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.773499Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.773508Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773527Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.773569Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.773577Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773598Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.773640Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.773648Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773671Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.773713Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.773721Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773743Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.773784Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.773792Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773813Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.773945Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.773963Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.773970Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.773980Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.773999Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.774007Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774017Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.774037Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.774044Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774055Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.774078Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.774084Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774097Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.774118Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.774126Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774138Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.774160Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.774167Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774181Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.774206Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.774213Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774227Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.774259Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.774267Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774282Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.774314Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.774322Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774336Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.774364Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.774371Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774387Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.774418Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.774425Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774442Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.774476Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.774483Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774501Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.774537Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.774545Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774563Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.774598Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.774605Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774624Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.774669Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.774679Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774698Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.774741Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.774749Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774769Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.774812Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.774821Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774843Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.774890Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.774898Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774919Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.774965Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.774974Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.774995Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.775126Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.775144Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.775152Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775162Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.775177Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.775184Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775195Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.775213Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.775220Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775232Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.775253Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.775260Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775272Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.775293Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.775300Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775312Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.775334Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.775341Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775354Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.775378Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.775385Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775398Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.775424Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.775431Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775447Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.775477Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.775484Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775500Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.775529Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.775536Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775555Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.775588Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.775595Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775612Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.775649Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.775657Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775674Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.775714Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.775722Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775740Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.775779Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.775786Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775805Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.775850Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.775858Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775878Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.775919Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.775927Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.775947Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.775990Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.775998Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776021Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.776069Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.776077Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776098Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.776146Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.776154Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776175Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.776306Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.776325Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.776333Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776343Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.776359Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.776366Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776378Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.776396Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.776403Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776415Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.776437Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.776444Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776456Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.776477Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.776484Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776496Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.776518Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.776525Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776538Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.776562Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.776569Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776582Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.776609Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.776617Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776631Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.776656Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.776664Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776678Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.776706Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.776713Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776729Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.776758Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.776765Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776783Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.776820Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.776828Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776846Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.776882Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.776891Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776909Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.776944Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.776951Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.776972Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.777016Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.777025Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777045Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.777086Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.777095Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777115Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.777158Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.777167Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777190Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.777235Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.777243Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777264Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.777302Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.777310Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777333Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.777465Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.777483Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.777490Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777500Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.777519Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.777527Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777537Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.777553Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.777559Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777569Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.777593Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.777599Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777611Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.777635Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.777642Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777655Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.777678Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.777685Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777699Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.777722Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.777729Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777744Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.777770Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.777778Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777793Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.777823Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.777831Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777845Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.777872Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.777879Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777895Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.777928Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.777936Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.777953Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.777982Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.777989Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778009Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.778040Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.778047Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778066Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.778096Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.778103Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778122Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.778158Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.778167Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778186Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.778223Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.778231Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778251Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.778290Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.778298Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778321Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.778392Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.778408Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778437Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.778489Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.778499Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778524Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.778672Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.778694Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.778702Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778714Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.778734Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.778744Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778759Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.778778Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.778785Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778794Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.778816Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.778823Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778837Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.778859Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.778866Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778877Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.778898Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.778905Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778920Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.778946Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.778955Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.778968Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.779000Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.779010Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779025Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.779056Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.779065Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779081Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.779117Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.779125Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779142Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.779177Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.779185Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779203Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.779237Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.779244Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779262Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.779299Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.779307Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779326Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.779364Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.779371Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779390Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.779431Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.779439Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779458Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.779493Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.779500Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779521Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.779565Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.779575Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779597Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.779644Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.779654Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779677Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.779719Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.779727Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779749Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.779887Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.779907Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.779914Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779922Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.779938Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.779944Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779954Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.779970Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.779977Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.779989Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.780012Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.780019Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780029Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.780068Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.780078Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780091Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.780116Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.780123Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780134Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.780159Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.780167Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780181Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.780212Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.780220Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780236Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.780271Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.780279Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780295Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.780326Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.780334Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780356Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.780389Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.780396Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780414Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.780449Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.780457Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780475Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.780509Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.780517Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780535Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.780573Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.780581Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780600Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.780640Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.780648Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780669Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.780708Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.780716Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780736Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.780778Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.780787Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780810Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.780855Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.780863Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780884Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.780933Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.780941Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.780962Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.781093Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.781112Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.781120Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781130Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.781149Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.781157Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781168Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.781183Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.781190Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781201Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.781222Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.781229Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781241Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.781262Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.781269Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781282Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.781304Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.781311Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781324Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.781348Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.781355Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781370Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.781399Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.781406Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781421Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.781453Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.781460Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781476Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.781504Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.781511Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781527Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.781558Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.781565Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781585Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.781618Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.781625Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781643Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.781679Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.781687Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781705Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.781740Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.781748Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781767Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.781808Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.781820Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781841Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.781883Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.781890Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781910Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.781953Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.781961Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.781984Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.782029Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.782037Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782058Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.782104Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.782112Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782135Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.782267Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.782286Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.782293Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782304Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.782322Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.782330Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782339Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.782355Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.782361Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782371Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.782390Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.782397Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782407Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.782426Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.782433Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782444Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.782464Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.782472Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782486Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.782512Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.782519Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782533Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.782561Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.782568Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782584Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.782609Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.782620Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782636Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.782669Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.782678Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782692Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.782726Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.782741Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782756Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.782788Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.782797Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782817Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.782854Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.782862Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782880Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.782915Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.782922Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.782944Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.782989Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.782998Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783019Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.783053Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.783062Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783081Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.783117Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.783125Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783148Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.783194Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.783202Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783223Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.783271Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.783279Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783301Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.783447Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.783466Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.783474Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783485Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.783514Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.783521Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783533Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.783553Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.783560Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783569Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.783588Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.783594Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783606Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.783629Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.783637Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783648Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.783670Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.783676Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783687Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.783710Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.783717Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783731Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.783763Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.783771Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783785Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.783809Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.783816Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783833Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.783862Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.783869Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783886Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.783914Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.783921Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783938Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.783968Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.783975Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.783993Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.784023Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.784031Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784050Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.784082Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.784090Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784109Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.784146Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.784154Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784173Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.784208Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.784216Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784240Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.784277Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.784286Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784332Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.784389Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.784412Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784436Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.784478Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.784487Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784510Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.784673Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.784695Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.784704Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784716Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.784733Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.784741Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784750Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.784769Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.784775Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784786Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.784809Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.784816Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784828Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.784856Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.784864Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784877Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.784903Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.784912Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784926Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.784950Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.784959Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.784971Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.785000Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.785007Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785021Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.785048Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.785055Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785071Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.785101Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.785108Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785128Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.785161Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.785168Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785185Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.785221Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.785229Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785247Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.785282Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.785290Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785308Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.785350Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.785358Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785378Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.785423Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.785434Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785455Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.785496Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.785504Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785524Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.785568Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.785578Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785602Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.785644Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.785652Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785673Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.785721Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.785729Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785750Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.785921Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.785941Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.785949Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785960Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.785976Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.785983Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.785994Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.786013Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.786020Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786032Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.786056Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.786063Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786075Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.786096Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.786103Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786116Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.786138Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.786145Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786159Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.786183Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.786190Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786204Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.786231Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.786238Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786253Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.786281Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.786288Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786304Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.786333Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.786340Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786357Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.786388Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.786395Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786415Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.786448Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.786455Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786473Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.786510Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.786518Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786537Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.786572Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.786580Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786599Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.786649Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.786659Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786679Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.786716Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.786724Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786745Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.786788Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.786797Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786820Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.786864Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.786873Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786895Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.786941Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.786951Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.786976Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.787102Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.787121Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.787129Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787139Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.787158Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.787167Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787178Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.787201Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.787209Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787221Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.787242Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.787249Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787262Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.787283Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.787289Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787302Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.787325Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.787332Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787347Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.787370Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.787377Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787392Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.787420Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.787427Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787441Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.787468Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.787476Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787490Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.787518Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.787526Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787541Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.787570Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.787578Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787595Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.787628Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.787636Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787657Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.787694Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.787701Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787719Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.787757Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.787765Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787784Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.787825Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.787833Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787853Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.787895Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.787903Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787924Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.787968Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.787976Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.787999Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.788043Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.788052Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788073Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.788122Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.788130Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788151Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.788286Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.788303Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.788311Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788322Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.788343Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.788351Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788362Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.788382Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.788389Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788400Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.788426Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.788433Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788444Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.788465Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.788472Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788487Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.788509Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.788516Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788529Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.788552Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.788559Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788572Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.788599Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.788606Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788620Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.788648Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.788655Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788670Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.788699Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.788706Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788723Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.788753Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.788760Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788777Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.788813Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.788820Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788837Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.788871Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.788879Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788897Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.788932Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.788939Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.788960Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.789001Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.789010Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789029Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.789070Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.789079Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789103Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.789145Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.789153Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789176Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.789223Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.789231Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789252Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.789298Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.789306Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789327Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.789465Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.789485Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.789492Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789503Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.789520Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.789527Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789537Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.789555Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.789562Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789574Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.789596Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.789603Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789614Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.789636Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.789642Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789655Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.789677Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.789684Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789697Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.789720Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.789727Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789744Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.789771Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.789778Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789793Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.789821Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.789828Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789843Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.789876Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.789883Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789901Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.789934Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.789941Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.789958Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.789990Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.789997Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790015Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.790052Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.790059Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790078Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.790113Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.790120Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790139Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.790184Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.790192Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790212Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.790253Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.790261Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790281Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.790323Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.790331Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790354Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.790394Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.790401Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790423Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.790474Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.790482Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790502Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.790635Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.790653Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.790661Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790671Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.790689Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.790698Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790707Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.790730Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.790743Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790755Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.790781Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.790789Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790801Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.790823Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.790831Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790844Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.790867Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.790875Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790887Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.790911Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.790918Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790933Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.790961Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.790969Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.790984Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.791012Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.791019Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791033Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.791065Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.791073Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791090Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.791123Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.791131Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791149Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.791182Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.791189Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791207Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.791243Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.791252Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791271Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.791311Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.791320Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791339Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.791381Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.791387Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791406Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.791449Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.791457Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791478Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.791514Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.791523Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791545Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.791592Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.791602Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791622Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.791667Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.791675Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791700Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -2026-03-30T15:33:20.791806Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=1 old_ticket_price=0 new_ticket_price=10000000 -2026-03-30T15:33:20.791823Z  INFO e3_sortition::sortition: Node added to sortition state address=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 -2026-03-30T15:33:20.791831Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791841Z  INFO e3_sortition::sortition: Updated operator active status operator=0x19592E0C6A4124aa36666202F09E2b264B3EB99C active=true -2026-03-30T15:33:20.791856Z  INFO e3_sortition::sortition: Node added to sortition state address=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 -2026-03-30T15:33:20.791863Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x419A15a49DD9d7896EE4605558513703598F3FcB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791874Z  INFO e3_sortition::sortition: Updated operator active status operator=0x419A15a49DD9d7896EE4605558513703598F3FcB active=true -2026-03-30T15:33:20.791894Z  INFO e3_sortition::sortition: Node added to sortition state address=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 -2026-03-30T15:33:20.791901Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791915Z  INFO e3_sortition::sortition: Updated operator active status operator=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 active=true -2026-03-30T15:33:20.791937Z  INFO e3_sortition::sortition: Node added to sortition state address=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 -2026-03-30T15:33:20.791944Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.791956Z  INFO e3_sortition::sortition: Updated operator active status operator=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 active=true -2026-03-30T15:33:20.791983Z  INFO e3_sortition::sortition: Node added to sortition state address=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 -2026-03-30T15:33:20.791991Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792002Z  INFO e3_sortition::sortition: Updated operator active status operator=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 active=true -2026-03-30T15:33:20.792022Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 -2026-03-30T15:33:20.792028Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792039Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E active=true -2026-03-30T15:33:20.792060Z  INFO e3_sortition::sortition: Node added to sortition state address=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 -2026-03-30T15:33:20.792066Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792077Z  INFO e3_sortition::sortition: Updated operator active status operator=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 active=true -2026-03-30T15:33:20.792102Z  INFO e3_sortition::sortition: Node added to sortition state address=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 -2026-03-30T15:33:20.792108Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792120Z  INFO e3_sortition::sortition: Updated operator active status operator=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE active=true -2026-03-30T15:33:20.792145Z  INFO e3_sortition::sortition: Node added to sortition state address=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 -2026-03-30T15:33:20.792151Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792164Z  INFO e3_sortition::sortition: Updated operator active status operator=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A active=true -2026-03-30T15:33:20.792189Z  INFO e3_sortition::sortition: Node added to sortition state address=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 -2026-03-30T15:33:20.792195Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792208Z  INFO e3_sortition::sortition: Updated operator active status operator=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 active=true -2026-03-30T15:33:20.792235Z  INFO e3_sortition::sortition: Node added to sortition state address=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 -2026-03-30T15:33:20.792241Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792254Z  INFO e3_sortition::sortition: Updated operator active status operator=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 active=true -2026-03-30T15:33:20.792286Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 -2026-03-30T15:33:20.792293Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792312Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 active=true -2026-03-30T15:33:20.792348Z  INFO e3_sortition::sortition: Node added to sortition state address=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 -2026-03-30T15:33:20.792356Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792375Z  INFO e3_sortition::sortition: Updated operator active status operator=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 active=true -2026-03-30T15:33:20.792412Z  INFO e3_sortition::sortition: Node added to sortition state address=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 -2026-03-30T15:33:20.792421Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792438Z  INFO e3_sortition::sortition: Updated operator active status operator=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f active=true -2026-03-30T15:33:20.792486Z  INFO e3_sortition::sortition: Node added to sortition state address=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 -2026-03-30T15:33:20.792493Z  INFO e3_sortition::sortition: Updated ticket balance operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792513Z  INFO e3_sortition::sortition: Updated operator active status operator=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB active=true -2026-03-30T15:33:20.792551Z  INFO e3_sortition::sortition: Node added to sortition state address=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 -2026-03-30T15:33:20.792558Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792578Z  INFO e3_sortition::sortition: Updated operator active status operator=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 active=true -2026-03-30T15:33:20.792625Z  INFO e3_sortition::sortition: Node added to sortition state address=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 -2026-03-30T15:33:20.792633Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792656Z  INFO e3_sortition::sortition: Updated operator active status operator=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 active=true -2026-03-30T15:33:20.792705Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 -2026-03-30T15:33:20.792711Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792733Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3453797c0F390D341CD317A37d90d839c19f0F36 active=true -2026-03-30T15:33:20.792782Z  INFO e3_sortition::sortition: Node added to sortition state address=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 -2026-03-30T15:33:20.792789Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a chain_id=1 new_balance=1000000000 -2026-03-30T15:33:20.792811Z  INFO e3_sortition::sortition: Updated operator active status operator=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a active=true -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -IN FLUSH LOOP... -PER-EVENT TIMEOUT, BREAKING LOOP... - - - ############################### - ## COMMITTEE SETUP COMPLETED ## - ############################### - -2026-03-30T15:33:21.805655Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.806712Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.807466Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.808287Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.809184Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.809972Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.810813Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.811319Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.811558Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.811787Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.812228Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.812872Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.813418Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.813987Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.814512Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.815069Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.815599Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.816289Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.816732Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.817120Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.817497Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 59, ts: 32740845699214089233421789607936588, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:21.959750Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:21.959791Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:21.989951Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:21.989983Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0xD464d9bc7A3a829b37F5acE83BE79aeB914ba1e9 -2026-03-30T15:33:21.990168Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:21.990185Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.020076Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.020108Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x19592E0C6A4124aa36666202F09E2b264B3EB99C -2026-03-30T15:33:22.020277Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.020293Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.049960Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.049988Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x419A15a49DD9d7896EE4605558513703598F3FcB -2026-03-30T15:33:22.050149Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.050165Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.080013Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.080058Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0x69c53066500733e8A004A5b66E7FbcE58Ea4da54 index=4 ticket_id=Some(68) -2026-03-30T15:33:22.080279Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.080299Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.109949Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.109977Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 index=1 ticket_id=Some(65) -2026-03-30T15:33:22.110172Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.110188Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.140046Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.140082Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0xedda9D0f1df94097c173F7CE227F697ACE7Dd113 -2026-03-30T15:33:22.140266Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.140281Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.169975Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.169999Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E -2026-03-30T15:33:22.170152Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.170168Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.199780Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.199809Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0xdf2836306EFfca9092B33eE7Bf209C0b578C4473 -2026-03-30T15:33:22.199972Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.199988Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.229768Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.229792Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x77bf25b868AC287B27e440866f1AE4Ad41F344EE -2026-03-30T15:33:22.229931Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.229944Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.259776Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.259805Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x210A5A2814Ce4F3241249B32edaa8fa8532b932A -2026-03-30T15:33:22.259959Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.259973Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.289823Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.289852Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5 -2026-03-30T15:33:22.290022Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.290037Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.320258Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.320283Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3 -2026-03-30T15:33:22.320423Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.320437Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.350805Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.350842Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823 index=5 ticket_id=Some(15) -2026-03-30T15:33:22.351033Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.351050Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.381903Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.381933Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x077e873eCcD8B05459D31326A860Eea2Ad7D6128 -2026-03-30T15:33:22.382090Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.382106Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.413774Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.413807Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f - - - ################################################# - ## COMMITTEE SELECTED: 3 NODES, 3 BUFFER NODES ## - ################################################# - -2026-03-30T15:33:22.445549Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.445581Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.476870Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.476907Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB index=0 ticket_id=Some(31) -2026-03-30T15:33:22.477109Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.477135Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.507826Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.507868Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 index=2 ticket_id=Some(42) -2026-03-30T15:33:22.508080Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.508098Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.539070Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.539105Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30 -2026-03-30T15:33:22.539279Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.539296Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.570746Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.570790Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=1:0 node=0x3453797c0F390D341CD317A37d90d839c19f0F36 -2026-03-30T15:33:22.571160Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=1:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -2026-03-30T15:33:22.571182Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=1 registered_count=19 node_state_count=19 -2026-03-30T15:33:22.602658Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=1:0 chain_id=1 committee_size=6 selected_count=6 nodes=["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB(ticket:31)", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08(ticket:65)", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26(ticket:42)", "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a(ticket:43)", "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54(ticket:68)", "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823(ticket:15)"] -2026-03-30T15:33:22.602700Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=1:0 node=0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a index=3 ticket_id=Some(43) -2026-03-30T15:33:22.602992Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603029Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xD464d9bc7A3a829b37F5acE83BE79aeB914ba1e9" -2026-03-30T15:33:22.603053Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603070Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x19592E0C6A4124aa36666202F09E2b264B3EB99C" -2026-03-30T15:33:22.603093Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603112Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x419A15a49DD9d7896EE4605558513703598F3FcB" -2026-03-30T15:33:22.603131Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603150Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x69c53066500733e8A004A5b66E7FbcE58Ea4da54" ticket_id=68 -2026-03-30T15:33:22.603187Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603203Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08" ticket_id=65 -2026-03-30T15:33:22.603264Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603284Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xedda9D0f1df94097c173F7CE227F697ACE7Dd113" -2026-03-30T15:33:22.603305Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603321Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E" -2026-03-30T15:33:22.603336Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603352Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xdf2836306EFfca9092B33eE7Bf209C0b578C4473" -2026-03-30T15:33:22.603404Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603433Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x77bf25b868AC287B27e440866f1AE4Ad41F344EE" -2026-03-30T15:33:22.603467Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603492Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x210A5A2814Ce4F3241249B32edaa8fa8532b932A" -2026-03-30T15:33:22.603521Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603552Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5" -2026-03-30T15:33:22.603588Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603608Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3" -2026-03-30T15:33:22.603633Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603654Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823" ticket_id=15 -2026-03-30T15:33:22.603687Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603707Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x077e873eCcD8B05459D31326A860Eea2Ad7D6128" -2026-03-30T15:33:22.603727Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603745Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f" -2026-03-30T15:33:22.603802Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603821Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB" ticket_id=31 -2026-03-30T15:33:22.603852Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603869Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26" ticket_id=42 -2026-03-30T15:33:22.603897Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603915Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30" -2026-03-30T15:33:22.603934Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603954Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0x3453797c0F390D341CD317A37d90d839c19f0F36" -2026-03-30T15:33:22.603973Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 1 } -2026-03-30T15:33:22.603992Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a" ticket_id=43 -2026-03-30T15:33:22.604492Z  INFO e3_test_helpers::ciphernode_system: take took 159.071708ms for count=1, total_timeout=Some(1000s), per_evt_timeout=Some(1000s) ->> ["E3Requested"] == ["E3Requested"] -2026-03-30T15:33:22.604645Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(68), node: "0x69c53066500733e8A004A5b66E7FbcE58Ea4da54" }), ctx: EventContext { id: EventId(0xbdf42f38a6a9ca206bef1fa175a6ee01c7c11ce17a5a738bb9fa7f2c0ccfbec2), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713936915293995298697825862, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.604737Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(65), node: "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08" }), ctx: EventContext { id: EventId(0x385a6d8e3cfed5f2eab5db99b8de1b7f3bdbe153f7afcded105adae4b72b74ac), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713937874524687133831309018, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.604817Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(15), node: "0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823" }), ctx: EventContext { id: EventId(0x434ce84f4a0068a75c2dcbc3152329ef2a24323fef84f39ee9bf93a16373774c), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713946212453008452005247206, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.604895Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(31), node: "0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB" }), ctx: EventContext { id: EventId(0x972cc92118e74fe1c3ebb5deb4c1ad3d0ec53adea9a5a9de61084b3848d3609f), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713949274612524687560381802, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.604953Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(42), node: "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26" }), ctx: EventContext { id: EventId(0x2f0747ad6485c7b02f1fc5b7d566b722fb2eb18ed7a757c5f7ddd6a0be6b7391), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713950160056240223630211820, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605030Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 1 }, ticket_id: Score(43), node: "0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a" }), ctx: EventContext { id: EventId(0xd66f290abe5adc5ce4281c4471cd43f2bb97bc2f9bf0c6f7f4086160b215ea8c), causation_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), origin_id: EventId(0x0b7750a669d5c0337cd028d623dce050aee306f770c17173b11a46f3a9263286), seq: 7, ts: 32740845713952429005761291411596652, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605385Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605466Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605531Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605598Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605665Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605733Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605800Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605861Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605932Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.605997Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606063Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606129Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606198Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606270Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606338Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606409Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606536Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606604Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606681Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606751Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606820Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 1 }, committee: ["0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB", "0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08", "0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26"], scores: ["35042303259478120743216928009338521691288047450508312473528720851789784580", "38293653393537974781337731427957533997142295601448362270207392605673675065", "123357964381064303810193465920955512190701447664095643159832027193216150723"], chain_id: 1 }), ctx: EventContext { id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740845713962371800817018382238284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.606954Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.607005Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.607073Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.607077Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.607080Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.607125Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xD464d9bc7A3a829b37F5acE83BE79aeB914ba1e9" -2026-03-30T15:33:22.607140Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.607173Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.607191Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.607221Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.607225Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.607228Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.607232Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x19592E0C6A4124aa36666202F09E2b264B3EB99C" -2026-03-30T15:33:22.607240Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.607262Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.607277Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.607306Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.607311Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.607314Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.607317Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x419A15a49DD9d7896EE4605558513703598F3FcB" -2026-03-30T15:33:22.607325Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.607347Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.607362Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.607393Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.607397Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.607400Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.607403Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x69c53066500733e8A004A5b66E7FbcE58Ea4da54" -2026-03-30T15:33:22.607411Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.607432Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.607444Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.607475Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.607479Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.607482Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.607486Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08" party_id=1 -2026-03-30T15:33:22.607516Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.607537Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.607549Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.607578Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.607582Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.607584Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.607587Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xedda9D0f1df94097c173F7CE227F697ACE7Dd113" -2026-03-30T15:33:22.607593Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.607613Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.607627Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.607652Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.607655Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.607657Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.607660Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x3136Bb42B166b12B76D2F1898e33CF8e3A5a853E" -2026-03-30T15:33:22.607696Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.607727Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.607783Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.607829Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.607834Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.607837Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.607840Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xdf2836306EFfca9092B33eE7Bf209C0b578C4473" -2026-03-30T15:33:22.607847Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.607920Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.607945Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.607993Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.607998Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608001Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608004Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x77bf25b868AC287B27e440866f1AE4Ad41F344EE" -2026-03-30T15:33:22.608013Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608055Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608076Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.608111Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.608114Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608117Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608121Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x210A5A2814Ce4F3241249B32edaa8fa8532b932A" -2026-03-30T15:33:22.608129Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608153Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608167Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.608196Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.608199Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608202Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608204Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xDd16265dF5434Ee8fCb19fBd0A19189ad156c0E5" -2026-03-30T15:33:22.608211Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608233Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608246Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.608293Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.608297Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608299Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608302Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x2d4495A48cD32ec4b700e8b64977ca5b046d37a3" -2026-03-30T15:33:22.608308Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608335Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608349Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.608391Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.608395Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608398Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608401Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x1f3434E704428fB2f2ffEc667f7c05e1bbf90823" -2026-03-30T15:33:22.608409Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608432Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608444Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.608479Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.608483Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608486Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608489Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x077e873eCcD8B05459D31326A860Eea2Ad7D6128" -2026-03-30T15:33:22.608497Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608521Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608533Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.608566Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.608570Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608573Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608579Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xc9cF1cb0376891FbB82c508D2cFEe1576abdd24f" -2026-03-30T15:33:22.608585Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608605Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608617Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.608648Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.608652Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608655Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608658Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB" party_id=0 -2026-03-30T15:33:22.608684Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608707Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608722Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.608751Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.608754Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608757Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608761Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26" party_id=2 -2026-03-30T15:33:22.608779Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608800Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608813Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.608837Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.608840Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608843Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608847Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x39EE4a6D7EbC0c882D816B49E7A5245Fc2Ca6d30" -2026-03-30T15:33:22.608854Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608876Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608892Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.608922Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.608925Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.608928Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.608931Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x3453797c0F390D341CD317A37d90d839c19f0F36" -2026-03-30T15:33:22.608936Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.608956Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 1:0 with 3 committee members, threshold=1 -2026-03-30T15:33:22.608968Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 1:0 -2026-03-30T15:33:22.609005Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -2026-03-30T15:33:22.609008Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -2026-03-30T15:33:22.609012Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -2026-03-30T15:33:22.609015Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x1C7920b91d09Db3DaaaB4ee3360211068F4d523a" -2026-03-30T15:33:22.609022Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=1:0 committee_size=3 -2026-03-30T15:33:22.609137Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609281Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609309Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609338Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609368Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609405Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609433Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609459Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609482Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609507Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609536Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609562Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609588Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609610Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609636Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609659Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609686Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609712Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609732Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609758Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 1:0 with 5 link(s) -2026-03-30T15:33:22.609831Z  INFO e3_test_helpers::ciphernode_system: take took 5.285583ms for count=1, total_timeout=Some(1000s), per_evt_timeout=Some(1000s) ->> ["CommitteeFinalized"] == ["CommitteeFinalized"] - - - ##################################### - ## COMMITTEE FINALIZATION COMPLETE ## - ##################################### - -2026-03-30T15:33:22.610147Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , party_id: 1 }), ctx: EventContext { id: EventId(0x56fc78630cdb426d9ee49ae657999d4ea73152156bb98931a79a549f2b0f07f6), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 8, ts: 32740845714017084843739642645948122, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.610265Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , party_id: 0 }), ctx: EventContext { id: EventId(0xfeaa51ff66ffd030de341e41f74180f6bb25589894c672348141b5020a529b18), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 8, ts: 32740845714038483066865146951996778, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.610352Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 1 }, threshold_m: 1, threshold_n: 3, seed: Seed(0xec14b586afad26d26ffc81130cef4174d62a80bb7d54152a2b2828ee9ef0ad1d), error_size: 0x0140c0, esi_per_ct: 1, params: , party_id: 2 }), ctx: EventContext { id: EventId(0xbb3c6448cbf54e6fb26a2fe4413218caaa6511662957d0202f6146da8b244e32), causation_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 8, ts: 32740845714040383081504737047165676, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.611130Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. -2026-03-30T15:33:22.611150Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes -2026-03-30T15:33:22.611177Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes -2026-03-30T15:33:22.658168Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. -2026-03-30T15:33:22.658182Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes -2026-03-30T15:33:22.658200Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes -2026-03-30T15:33:22.705060Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. -2026-03-30T15:33:22.705083Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes -2026-03-30T15:33:22.705107Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes -2026-03-30T15:33:22.752233Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=1:0 -2026-03-30T15:33:22.752303Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=1:0 -2026-03-30T15:33:22.752357Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=1:0 -2026-03-30T15:33:22.752367Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=1:0 -2026-03-30T15:33:22.752389Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=1:0 -2026-03-30T15:33:22.752398Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=1:0 -2026-03-30T15:33:22.752559Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x9f109465551565318c3a4f7a8a6cd3881f4aeba56273dba1051e2d4bc1fc1020), causation_id: EventId(0x56fc78630cdb426d9ee49ae657999d4ea73152156bb98931a79a549f2b0f07f6), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 9, ts: 32740845714948165804116058554214106, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.752910Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x708c402fca38abaee615adb1f3adbe31de0bdfeac3339ec8882cb914ffb2effe), causation_id: EventId(0xfeaa51ff66ffd030de341e41f74180f6bb25589894c672348141b5020a529b18), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 9, ts: 32740845715814019077447838714140010, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.753175Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x0f416735491585b026aeb43cb4496fef514d3f8d4142fa014433eae8b71d5725), causation_id: EventId(0xbb3c6448cbf54e6fb26a2fe4413218caaa6511662957d0202f6146da8b244e32), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 9, ts: 32740845716683598593082504988670700, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:22.753586Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation -2026-03-30T15:33:22.753725Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation -2026-03-30T15:33:22.753792Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation -2026-03-30T15:33:22.753939Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 103, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xdd03fec3bb9e553b7424d9cbce45208630b78648cf94562842250e9a849a50c5), causation_id: EventId(0x9f109465551565318c3a4f7a8a6cd3881f4aeba56273dba1051e2d4bc1fc1020), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 10, ts: 32740845716712320173605271523010266, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:22.754215Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 104, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8f7edc74c37b9cf7ed2934e14febca28af30065396611b14208e2549da7f005f), causation_id: EventId(0x708c402fca38abaee615adb1f3adbe31de0bdfeac3339ec8882cb914ffb2effe), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 10, ts: 32740845716714496889405970476275050, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:22.754496Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 105, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc0bd36c4f08beb7b8d3563744846aacbae65528897c1a32f942ad42cc7a69b1b), causation_id: EventId(0x0f416735491585b026aeb43cb4496fef514d3f8d4142fa014433eae8b71d5725), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 10, ts: 32740845716715732821258907027585772, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:26.718177Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 103, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2a93a8587a7e7e6b02f7a77621896dcb855ab160895f7c7cd6a4143dc54abd9d), causation_id: EventId(0xdd03fec3bb9e553b7424d9cbce45208630b78648cf94562842250e9a849a50c5), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 11, ts: 32740845789841596255239437633693402, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:26.723782Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 1 (signer: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) -2026-03-30T15:33:26.724094Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x0d69125ae1d47687a6c867ae778c087d62ace7217537ac041219375a1586562b), causation_id: EventId(0x2a93a8587a7e7e6b02f7a77621896dcb855ab160895f7c7cd6a4143dc54abd9d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 12, ts: 32740845789949694175511375606163162, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:26.727415Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 -2026-03-30T15:33:26.727527Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -2026-03-30T15:33:26.727531Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes -2026-03-30T15:33:26.727556Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -2026-03-30T15:33:26.727560Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 -2026-03-30T15:33:26.727565Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 -2026-03-30T15:33:26.727572Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 17.083µs -2026-03-30T15:33:26.727608Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:26.726413Z }, value: }), ctx: EventContext { id: EventId(0xc7b89e5ce2898469540ada408a31c5d11db45eff0be0729bd0b74cfc70191be1), causation_id: EventId(0x0d69125ae1d47687a6c867ae778c087d62ace7217537ac041219375a1586562b), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 13, ts: 32740845790016157794408951120635610, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:26.735023Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:26.726413Z }, value: }), ctx: EventContext { id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), causation_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 11, ts: 32740845790152811274506992705181034, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:26.737284Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:26.726413Z }, value: }), ctx: EventContext { id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), causation_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 11, ts: 32740845790154360801009182318869228, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:26.743440Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 } }, signature: }) } }), ctx: EventContext { id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), causation_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 12, ts: 32740845790273471427493126882301290, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:26.745867Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 } }, signature: }) } }), ctx: EventContext { id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), causation_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 12, ts: 32740845790307210522403939663559404, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:26.752251Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for key from party 1 -2026-03-30T15:33:26.756278Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for key from party 1 -2026-03-30T15:33:26.822128Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key -2026-03-30T15:33:26.824055Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key -2026-03-30T15:33:26.826025Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xa6ffcbc4d969e5ec24db9089fbddca6b6330df873becdad832c5e6244766d932), causation_id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 13, ts: 32740845791763525626791089623635306, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:26.828485Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C0PkBfv, data_hash: [223, 235, 30, 242, 244, 225, 69, 117, 244, 80, 212, 155, 236, 155, 77, 102, 168, 212, 14, 204, 208, 158, 178, 222, 218, 244, 83, 208, 26, 228, 253, 222], public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), ctx: EventContext { id: EventId(0xaffce7f85e75b35c8d2ae45496cb3907dcdfaa794ede6479edbd64ff7beae779), causation_id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 14, ts: 32740845791797818124024115680089450, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:26.828569Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0xa6ffcbc4d969e5ec24db9089fbddca6b6330df873becdad832c5e6244766d932), causation_id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 13, ts: 32740845791798924928668536264538860, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:26.830787Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C0PkBfv, data_hash: [223, 235, 30, 242, 244, 225, 69, 117, 244, 80, 212, 155, 236, 155, 77, 102, 168, 212, 14, 204, 208, 158, 178, 222, 218, 244, 83, 208, 26, 228, 253, 222], public_signals: 0x244eb8badffd813248f98aaed94ce0c2fe2d9ad489861721ef879154673894d4 }), ctx: EventContext { id: EventId(0xaffce7f85e75b35c8d2ae45496cb3907dcdfaa794ede6479edbd64ff7beae779), causation_id: EventId(0xad7de4ea6cb27a1cf0165e7d0fd7f7bb902e2e5ca17d06d4b9e67626b439fe8c), origin_id: EventId(0x4ded5d9f06672024ce38e49b4d9a0ff4beb1ea1a798cf13a3aec06288c6d7feb), seq: 14, ts: 32740845791832682470323424743996140, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:26.831095Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -2026-03-30T15:33:26.831100Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes -2026-03-30T15:33:26.831130Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -2026-03-30T15:33:26.831134Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes -2026-03-30T15:33:26.831155Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -2026-03-30T15:33:26.831159Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 -2026-03-30T15:33:26.831164Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 -2026-03-30T15:33:26.831171Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 17.167µs -2026-03-30T15:33:26.831191Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -2026-03-30T15:33:26.831195Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 -2026-03-30T15:33:26.831197Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 -2026-03-30T15:33:26.831199Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 8.417µs -2026-03-30T15:33:30.689221Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 104, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc8cbba75b8db1c676c44144d0da2de96d81cf511ec05799dd8f8a8c2b7f5c60e), causation_id: EventId(0x8f7edc74c37b9cf7ed2934e14febca28af30065396611b14208e2549da7f005f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 15, ts: 32740845863094686883096343480997226, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:30.693650Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 0 (signer: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) -2026-03-30T15:33:30.693917Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x8ad5137a13be056e394257544f9a1008adc1c2eef5b61f926678ecb5a32f3aee), causation_id: EventId(0xc8cbba75b8db1c676c44144d0da2de96d81cf511ec05799dd8f8a8c2b7f5c60e), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 16, ts: 32740845863180814731176493377492330, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:30.697285Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 -2026-03-30T15:33:30.697406Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -2026-03-30T15:33:30.697411Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes -2026-03-30T15:33:30.697434Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -2026-03-30T15:33:30.697438Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 -2026-03-30T15:33:30.697442Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 -2026-03-30T15:33:30.697447Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 13.458µs -2026-03-30T15:33:30.697492Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:30.696278Z }, value: }), ctx: EventContext { id: EventId(0x4ba669da794333d520fcec8aafadcceac0e875390ab5fb168174d8701efc787c), causation_id: EventId(0x8ad5137a13be056e394257544f9a1008adc1c2eef5b61f926678ecb5a32f3aee), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 17, ts: 32740845863247352137050363730171242, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:30.705867Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:30.696278Z }, value: }), ctx: EventContext { id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), causation_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 14, ts: 32740845863400847494487699682993882, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:30.708257Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:30.696278Z }, value: }), ctx: EventContext { id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), causation_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 15, ts: 32740845863402655275406922456578796, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:30.714913Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd } }, signature: }) } }), ctx: EventContext { id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), causation_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 15, ts: 32740845863533221329960639425390298, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:30.717349Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd } }, signature: }) } }), ctx: EventContext { id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), causation_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 16, ts: 32740845863567901208819212619954924, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:30.724016Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for key from party 0 -2026-03-30T15:33:30.728260Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for key from party 0 -2026-03-30T15:33:30.794452Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key -2026-03-30T15:33:30.796339Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key -2026-03-30T15:33:30.798190Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x6ccd88bf4b3e0be0157995b74cf0ac52c96d760ba1d234b394ee0b6ca6298b37), causation_id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 16, ts: 32740845865040006726133456730040026, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:30.800472Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C0PkBfv, data_hash: [122, 94, 152, 161, 10, 149, 26, 1, 128, 90, 39, 67, 103, 124, 18, 231, 247, 3, 249, 112, 45, 12, 100, 13, 172, 248, 118, 108, 21, 32, 223, 66], public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), ctx: EventContext { id: EventId(0xb8e642448e5e7bf4974c67ff84342dd6dabf7a70c3c3b8bcfe87da2448ca1e89), causation_id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 17, ts: 32740845865073745821044271499945690, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:30.800547Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x6ccd88bf4b3e0be0157995b74cf0ac52c96d760ba1d234b394ee0b6ca6298b37), causation_id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 17, ts: 32740845865074612818015735086398188, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:30.802868Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C0PkBfv, data_hash: [122, 94, 152, 161, 10, 149, 26, 1, 128, 90, 39, 67, 103, 124, 18, 231, 247, 3, 249, 112, 45, 12, 100, 13, 172, 248, 118, 108, 21, 32, 223, 66], public_signals: 0x0e9a66e04462308a705d9b8ea9e8e6b62564b9cf2355e27f096ef6d8ee5150cd }), ctx: EventContext { id: EventId(0xb8e642448e5e7bf4974c67ff84342dd6dabf7a70c3c3b8bcfe87da2448ca1e89), causation_id: EventId(0x276aa59b6359f8924ff70b29b78f83baa01d8de3bbcce02197734ae5a3c3a2d1), origin_id: EventId(0xd51b238e64af94cb3b03c6a60f399ca36fdb63941872f01cf31abe5ec7035aaf), seq: 18, ts: 32740845865106728599448063415761644, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:30.803164Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -2026-03-30T15:33:30.803169Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes -2026-03-30T15:33:30.803198Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -2026-03-30T15:33:30.803202Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes -2026-03-30T15:33:30.803222Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -2026-03-30T15:33:30.803226Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 -2026-03-30T15:33:30.803231Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 -2026-03-30T15:33:30.803236Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 14.875µs -2026-03-30T15:33:30.803257Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -2026-03-30T15:33:30.803261Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 -2026-03-30T15:33:30.803263Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 -2026-03-30T15:33:30.803265Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 8.5µs -2026-03-30T15:33:34.795519Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 105, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xff1de33c046648fa032c65b325f121a4090d3c5a2ce345073223cc8d6ec25e67), causation_id: EventId(0xc0bd36c4f08beb7b8d3563744846aacbae65528897c1a32f942ad42cc7a69b1b), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 19, ts: 32740845938842607413202094421785324, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:34.800022Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 2 (signer: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) -2026-03-30T15:33:34.800389Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x5cfcadd141d770f00e1cc8f3598db4dbf12f7216e436035b9817d220245cd19d), causation_id: EventId(0xff1de33c046648fa032c65b325f121a4090d3c5a2ce345073223cc8d6ec25e67), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 20, ts: 32740845938930211000808141082409708, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:34.803738Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 -2026-03-30T15:33:34.803869Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -2026-03-30T15:33:34.803874Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes -2026-03-30T15:33:34.803901Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -2026-03-30T15:33:34.803906Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 -2026-03-30T15:33:34.803910Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 -2026-03-30T15:33:34.803920Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! -2026-03-30T15:33:34.803952Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 50.542µs -2026-03-30T15:33:34.803983Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received -2026-03-30T15:33:34.807132Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare -2026-03-30T15:33:34.920121Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:34.802719Z }, value: }), ctx: EventContext { id: EventId(0xdf4eab6d575c5d9303df52dff001d7d6c53e8ea943466784e62e790963cc22c1), causation_id: EventId(0x5cfcadd141d770f00e1cc8f3598db4dbf12f7216e436035b9817d220245cd19d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 21, ts: 32740845938998058125511244813253356, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:34.927120Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 114, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x7c319441b2b60c00cd79208051c46a362f23dd3c9b9b13380ef6fa3fd611c3b8), causation_id: EventId(0x5cfcadd141d770f00e1cc8f3598db4dbf12f7216e436035b9817d220245cd19d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 22, ts: 32740845941138433840383764087257836, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:34.928269Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:34.802719Z }, value: }), ctx: EventContext { id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), causation_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 18, ts: 32740845941291006860617417777321322, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:34.930546Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [], expires_at: 2026-04-29T15:33:34.802719Z }, value: }), ctx: EventContext { id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), causation_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 18, ts: 32740845941292703961072197829895898, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:33:34.936741Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 } }, signature: }) } }), ctx: EventContext { id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), causation_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 19, ts: 32740845941413308773826112104535402, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:34.939087Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 } }, signature: }) } }), ctx: EventContext { id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), causation_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 19, ts: 32740845941447306123153957581989594, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:34.945573Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for key from party 2 -2026-03-30T15:33:34.949900Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for key from party 2 -2026-03-30T15:33:35.018569Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key -2026-03-30T15:33:35.020792Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key -2026-03-30T15:33:35.022786Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x2fd787597f54644a610588b746f9dce9defd2ef73e9fa0714135024c689c53be), causation_id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 20, ts: 32740845942961267302771449128392042, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:35.025104Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C0PkBfv, data_hash: [196, 37, 166, 190, 91, 225, 153, 240, 55, 176, 156, 47, 202, 93, 215, 98, 3, 238, 165, 129, 41, 42, 235, 126, 112, 61, 175, 72, 157, 223, 6, 152], public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), ctx: EventContext { id: EventId(0x9374a1b974e3f73c2f9e288948bb3b31099125fdce0f66c204706b64251cd95d), causation_id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 21, ts: 32740845943000060805558460315440490, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:35.025198Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 1 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x2fd787597f54644a610588b746f9dce9defd2ef73e9fa0714135024c689c53be), causation_id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 20, ts: 32740845943002200627871009397253850, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:35.027798Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C0PkBfv, data_hash: [196, 37, 166, 190, 91, 225, 153, 240, 55, 176, 156, 47, 202, 93, 215, 98, 3, 238, 165, 129, 41, 42, 235, 126, 112, 61, 175, 72, 157, 223, 6, 152], public_signals: 0x20fb3a33186edf07d76c6ba96f304c6b4088a63ddf7db0ea61fa51910a11dfc7 }), ctx: EventContext { id: EventId(0x9374a1b974e3f73c2f9e288948bb3b31099125fdce0f66c204706b64251cd95d), causation_id: EventId(0x9cd767ec511a4e86fe74a1e82ceb9548a5c98ddce8e8052d9ece218c6c4ecab4), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 21, ts: 32740845943035441660691834009265882, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:35.028146Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -2026-03-30T15:33:35.028153Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes -2026-03-30T15:33:35.028186Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -2026-03-30T15:33:35.028191Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes -2026-03-30T15:33:35.028212Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -2026-03-30T15:33:35.028217Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 -2026-03-30T15:33:35.028223Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 -2026-03-30T15:33:35.028227Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! -2026-03-30T15:33:35.028239Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 26.959µs -2026-03-30T15:33:35.028274Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -2026-03-30T15:33:35.028277Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 -2026-03-30T15:33:35.028280Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 -2026-03-30T15:33:35.028282Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! -2026-03-30T15:33:35.028287Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 13.125µs -2026-03-30T15:33:35.028334Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received -2026-03-30T15:33:35.031772Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare -2026-03-30T15:33:35.147419Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received -2026-03-30T15:33:35.151094Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare -2026-03-30T15:33:35.269615Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x51c4c19c10f2d5d258a152fd3877a043afc5cc6ff370a71caff58d60a3c3c1bc), causation_id: EventId(0x2fd787597f54644a610588b746f9dce9defd2ef73e9fa0714135024c689c53be), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 22, ts: 32740845945336119581564890512987498, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:35.270042Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 120, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x39798d1e5ffe8a5ebed7a0ae899063b4b9a8092d505e65d601bf985a2fb7221e), causation_id: EventId(0x2fd787597f54644a610588b746f9dce9defd2ef73e9fa0714135024c689c53be), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 22, ts: 32740845947588485479708899248678618, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:35.270758Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 114, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x08116c3ffdf90e6f042b3a9ba2df1e2ae331634724d764320b271a9065513bd6), causation_id: EventId(0x7c319441b2b60c00cd79208051c46a362f23dd3c9b9b13380ef6fa3fd611c3b8), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 23, ts: 32740845947608979812374789798050540, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:35.273908Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss -2026-03-30T15:33:35.278464Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare -2026-03-30T15:33:35.278704Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 121, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x433a34ec57ce29b13bd6d52bbd9e61bd4a414438e8cdc1a04353006a902df684), causation_id: EventId(0x08116c3ffdf90e6f042b3a9ba2df1e2ae331634724d764320b271a9065513bd6), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 24, ts: 32740845947755649874504854442949356, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:35.530026Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8ce6b1c6cf0806e9258999cf3efdda4b2b142b40d76e504dc380f3e5c9eed9df), causation_id: EventId(0x51c4c19c10f2d5d258a152fd3877a043afc5cc6ff370a71caff58d60a3c3c1bc), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 23, ts: 32740845952390744811161781756597610, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:35.533744Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss -2026-03-30T15:33:35.538487Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare -2026-03-30T15:33:35.538717Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 122, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x46e47466bd4f780b8fc2ee80b0034826848814a298441d2b25418e05c3353c65), causation_id: EventId(0x8ce6b1c6cf0806e9258999cf3efdda4b2b142b40d76e504dc380f3e5c9eed9df), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 24, ts: 32740845952552080034830445495031146, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:35.791417Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 120, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x9cd609b6151289c5bdbd854e2e6bf6ef56b0baedab6063863c5dc6ebebe60b31), causation_id: EventId(0x39798d1e5ffe8a5ebed7a0ae899063b4b9a8092d505e65d601bf985a2fb7221e), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 23, ts: 32740845957212926626214268127913690, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:35.794585Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss -2026-03-30T15:33:35.799387Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare -2026-03-30T15:33:35.799611Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 123, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x84134bda51b5947be459b7d03232e6eb698ede6cdd14657c5b02379d319182c8), causation_id: EventId(0x9cd609b6151289c5bdbd854e2e6bf6ef56b0baedab6063863c5dc6ebebe60b31), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 24, ts: 32740845957364854010405339995023066, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:35.937999Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 121, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x7984bc88b63c5e058f90367036901085e6611ed1c176e45b07de0f803ca4f0ab), causation_id: EventId(0x433a34ec57ce29b13bd6d52bbd9e61bd4a414438e8cdc1a04353006a902df684), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 25, ts: 32740845959917496008581193275620076, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:35.940270Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss -2026-03-30T15:33:35.945617Z  INFO e3_keyshare::threshold_keyshare: esi stored -2026-03-30T15:33:36.201584Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 1:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) -2026-03-30T15:33:36.203216Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 1 }, full_share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), causation_id: EventId(0x7984bc88b63c5e058f90367036901085e6611ed1c176e45b07de0f803ca4f0ab), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 26, ts: 32740845964784355837780205407124204, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:36.225660Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof -2026-03-30T15:33:36.225719Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof -2026-03-30T15:33:36.225790Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof -2026-03-30T15:33:36.225860Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 1:0 -2026-03-30T15:33:36.226206Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 1:0 -2026-03-30T15:33:36.226566Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: initializing state for E3 1:0 party 2 (total_expected=18, ~17 fold steps) -2026-03-30T15:33:36.226702Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 122, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb93d28e301c4105813c31a2fd8f6c3ba40ccfdfeecf61579493bc631861aa9e6), causation_id: EventId(0x46e47466bd4f780b8fc2ee80b0034826848814a298441d2b25418e05c3353c65), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 25, ts: 32740845964810218172971548187137386, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:36.228506Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss -2026-03-30T15:33:36.233889Z  INFO e3_keyshare::threshold_keyshare: esi stored -2026-03-30T15:33:36.489442Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 1:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) -2026-03-30T15:33:36.490935Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: }, seq: 0 }), ctx: EventContext { id: EventId(0x076fc5629687e2dd2c68e903e94345b0c46a5b0a3dd42f6743933d0fa8e5ce19), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 27, ts: 32740845965226450506250728521153260, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:36.491938Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 124, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x4898887f7e5c58afc42b77b55bf2d6a372b1f1f76c293be9f3bf07e312d42619), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 28, ts: 32740845965227963139264772704385772, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.493101Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 125, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x59645d60362206c74d1290574e14adc79e1719b9d0b1e9c06e503d13e9173dac), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 29, ts: 32740845965228903923212531891518188, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.494884Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xab2cb862d87aa37ad3c9f7d971b8e2c492f5b563106bfc60616fb92f7d5f7bae), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 30, ts: 32740845965230213642041765269682924, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.496673Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0091753e6f65d9d755515b5da2eef7bdf90299d6a5a2158a214fb6495f29acee), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 31, ts: 32740845965231578701103219776502508, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.498155Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 128, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xac3d5dfb16c14f0b4ccb7119ee21f77c14902a4e06e1d3685867fd9a58f3c499), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 32, ts: 32740845965232611718771347511393004, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.499627Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 129, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x36d68cd2a53f8b9b44fa6b4863ae4d12eaad5733e7445cfc6892d8c6ff23786d), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 33, ts: 32740845965233644736439475246283500, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.501103Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 130, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x73cfd4e7d9af36aece4731d41457667500e8f2e0b92d8dbef70dcfbe9b88591b), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 34, ts: 32740845965234677754107602981173996, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.502553Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 131, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xeec6861184326228519dab7932a9dcb93ced49ba5cba8da0af61f37213d07a5d), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 35, ts: 32740845965235729218519804425616108, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.504006Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 132, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x12b8bedd5c8ca747474ca42a5d663174494cbe3a35bed01f858610111a8e62c0), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 36, ts: 32740845965236762236187932160506604, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.505637Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 133, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xcebcba08ede66af6594a519e8bf36fa81034816a33d31b458644827bc69af48b), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 37, ts: 32740845965237924381064575862258412, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.507131Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 134, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xdc3cdb9ab6c9938fb42778c62c4e62f8142cac89efcdb4bac819eaa4a4f2e962), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 38, ts: 32740845965238957398732703597148908, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.508643Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 135, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xd1e425410f52d88d1404b58b211fed179ced0a4fdd56fb55847e5c213199df96), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 39, ts: 32740845965239990416400831332039404, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.510081Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 136, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2337d892be245f5dd54fa4614f9a74f4de512880d9450c4dc4967d97d63af691), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 40, ts: 32740845965241004987324885357378284, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.511533Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 137, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xe669439c0900f2fa63a6251940a5209e8aaf1ebbac2d51a9dbb50bc069d88283), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 41, ts: 32740845965242019558248939382717164, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.513325Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 138, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xd27a7edbb5d71778d64f444a2539c4210f2af24289f9d0d1b6dd1c08a0e8e05d), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 42, ts: 32740845965243107916149288246262508, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.515323Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=0 for E3 1:0 (buffered=1, folded=0, remaining=18) -2026-03-30T15:33:36.515360Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: storing first proof (seq=0) for E3 1:0 -2026-03-30T15:33:36.515780Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 1 }, full_share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), causation_id: EventId(0xb93d28e301c4105813c31a2fd8f6c3ba40ccfdfeecf61579493bc631861aa9e6), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 26, ts: 32740845970094417140094165214401898, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:36.539213Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof -2026-03-30T15:33:36.539278Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof -2026-03-30T15:33:36.539353Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof -2026-03-30T15:33:36.539425Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 1:0 -2026-03-30T15:33:36.539773Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 1:0 -2026-03-30T15:33:36.540128Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: initializing state for E3 1:0 party 0 (total_expected=18, ~17 fold steps) -2026-03-30T15:33:36.540255Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 123, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x98031a0e83d0be5b4628ee6333d6cfc57b141ab52808bb0a38b53b60f9061902), causation_id: EventId(0x84134bda51b5947be459b7d03232e6eb698ede6cdd14657c5b02379d319182c8), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 25, ts: 32740845970566395533964096575874778, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:36.542064Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss -2026-03-30T15:33:36.547685Z  INFO e3_keyshare::threshold_keyshare: esi stored -2026-03-30T15:33:36.804839Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 1:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) -2026-03-30T15:33:36.806386Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: }, seq: 0 }), ctx: EventContext { id: EventId(0x2a1f2a325246d1aa9d806e7eea922591c361d697f5f08fcff7e21cc985ca80d6), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 27, ts: 32740845971010574684514950095410538, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:36.807392Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 139, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0f5fe8e38428ebdc2d5ce17fb3f3b531ea6b10b1f3f396e805c19eb757241b04), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 28, ts: 32740845971012050424040846859539818, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.808658Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 140, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x98e43130ea47bde0f6d1fa2e3b4d127dc46d2f98e8e6eb699d284541f8dc019c), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 29, ts: 32740845971013064994964900884878698, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.810492Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 141, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb9ceb655a8fafba60c0e97c3ca18b3aa32bfb576b4f3d6e58b24ef4081f2f22b), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 30, ts: 32740845971014430054026355391698282, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.812545Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 142, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x36b447bda284c77fc6051c3c6b8d574031bce6dcd48df89cd7a64d2104a40ab0), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 31, ts: 32740845971015850453320031027172714, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.814195Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 143, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1f21292f581d08a1b24721704c2048ea60c9c8b803b27a57dee69a4e54768b06), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 32, ts: 32740845971016920364476306181166442, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.815797Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 144, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8c278e6214a939138ca3bbe52703dca3e84b8b52e54d8a946a7639cb8f8d99de), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 33, ts: 32740845971017953382144433916056938, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.817497Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 145, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x562f40b02060843e0796b0b044fb9479d8209dce7c1b98b59ead4459816e407c), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 34, ts: 32740845971018967953068487941395818, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.819008Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 146, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8444754cb787e663b3b0dc6615e96c37be0efd2c9d330acf3c8f130e5f074cdc), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 35, ts: 32740845971020074757712910514492778, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.820955Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 147, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2ba01a7bfe58beeef41465e29d58a6e04790c608230d01d596a643b00ebcaa02), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 36, ts: 32740845971021089328636964539831658, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.822502Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 148, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x6f855de355606e5ff0941d835c3a698c321998ecae80f9b18d54af63fef16daf), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 37, ts: 32740845971022214580025460822480234, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.824232Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 149, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc2832e15181c199c3dc12b23fc9e84528322d1563e5db416599202a432ad5d0a), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 38, ts: 32740845971023302937925809686025578, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.825723Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 150, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc12947dcfd86e4b987755e9dff0d1765399c9ca4530449ba147ad926032a1a2e), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 39, ts: 32740845971024317508849863711364458, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.827195Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 151, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xa110a1687cec42cdf360e494c47051e22371e4cbd62688855b1e3c8215b3ada9), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 40, ts: 32740845971025332079773917736703338, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.829134Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 152, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb4ee6e91c1e7c1120e46d716899b3ccee258f529c7c01de75e1354978a9b96d2), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 41, ts: 32740845971026346650697971762042218, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.830699Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 153, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x59dfe6f727a53c16b95bcb4f3e13dde842a79ef08a433ef28a52542fdc9fce53), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 42, ts: 32740845971027416561854246916035946, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.832511Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=0 for E3 1:0 (buffered=1, folded=0, remaining=18) -2026-03-30T15:33:36.832524Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: storing first proof (seq=0) for E3 1:0 -2026-03-30T15:33:36.832854Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 1 }, full_share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: true }), ctx: EventContext { id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), causation_id: EventId(0x98031a0e83d0be5b4628ee6333d6cfc57b141ab52808bb0a38b53b60f9061902), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 26, ts: 32740845975912409540477714310604506, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:36.859905Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof -2026-03-30T15:33:36.859964Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof -2026-03-30T15:33:36.860034Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof -2026-03-30T15:33:36.860103Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 1:0 -2026-03-30T15:33:36.860663Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 1:0 -2026-03-30T15:33:36.861878Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: initializing state for E3 1:0 party 1 (total_expected=18, ~17 fold steps) -2026-03-30T15:33:36.862405Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: }, seq: 0 }), ctx: EventContext { id: EventId(0x0cf8457792f52073078ebddda1941d434691f894f61cf183b8ec116c5731a5fc), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 27, ts: 32740845976926353275233233524729562, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:36.863420Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 154, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc04e660658e63fb21a8d2401f22ccbeaf3b3b4f3f0f2971cb998988fc9dee986), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 28, ts: 32740845976927718334294688031549146, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.864657Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 155, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8ea55dbb2013e92143a805b4a2da031ede27e828392396e933ed07531535b51a), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 29, ts: 32740845976928659118242447218681562, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.866530Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 156, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2c83dd037ed43d186e517164a2b6ee9e1764fae613e5e16c79bc06c936df3f30), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 30, ts: 32740845976929950390327606887294682, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.868402Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 157, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0b8120805a792d6268a1e5b66cbb6c0b5ad48d11a08cd010a25b2645b782669f), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 31, ts: 32740845976931297002644987684562650, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.870530Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 158, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x23ef5e865b4b3d12d945a4ca1c3570f68d55c71da3fb2496237787b850756998), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 32, ts: 32740845976932330020313115419453146, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.872159Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 159, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb2e93cd915a447f517998da886addcc35326ca45758b66f5324383cc4b6fa833), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 33, ts: 32740845976934100907744191536408282, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.873759Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 160, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x95978d36f6fec018536fe4763bdc8906df400b013189def3aee0ff66147ef2e2), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 34, ts: 32740845976935189265644540399953626, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.875358Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 161, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc63b86a973bfffc976be92e2a37c6d6a10ab3a496c8829ba3ed818cae7b2907c), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 35, ts: 32740845976936259176800815553947354, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.877027Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 162, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x3c32fb09e96e199a1360bd7325a496278b291507fb65efd39d0adefff1ea4101), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 36, ts: 32740845976937292194468943288837850, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.878726Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 163, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1c449d35a4957f13ad26838a81db00abd744cf01a4025e0d921bdce132f00d2b), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 37, ts: 32740845976941977667463665514948314, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.880282Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 164, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x7fbce5e5ff2697b8a66f612cff40425e68e24cdf2adb260eb451c1c333dfe0a1), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 38, ts: 32740845976946183525112471292716762, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.881826Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 165, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb8041e2364ce58a4236d017cd8437985b937b26dcde329176bc092caa0216c04), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 39, ts: 32740845976949854427183139493488346, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.883319Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 166, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1156aba2485ace05d445dd5d0b60ca2e345b2fddb840cc53c91960ea58d3d2f2), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 40, ts: 32740845976953599116230102532466394, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.884942Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 167, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xac84be7e8b5a91d26f4f7dc19ec5951d53f5fb901cf1074379fb5b8c6287f6dc), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 41, ts: 32740845976957528272717802666960602, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.886546Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 168, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x9e21166e05d0d08796ceacb6f973336a63cdeef821a819fc4ce7bb11ad027df9), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 42, ts: 32740845976961789470598829573383898, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:36.888524Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=0 for E3 1:0 (buffered=1, folded=0, remaining=18) -2026-03-30T15:33:36.888536Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: storing first proof (seq=0) for E3 1:0 -2026-03-30T15:33:42.001535Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 124, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x5f3ca583fb0d86a80455317777faefb713c8ff760899a7ca642a973e286697e6), causation_id: EventId(0x4898887f7e5c58afc42b77b55bf2d6a372b1f1f76c293be9f3bf07e312d42619), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 43, ts: 32740846071770048122537934171749100, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:42.003631Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 1:0 (1/15) -2026-03-30T15:33:42.003812Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: }, seq: 1 }), ctx: EventContext { id: EventId(0xc5eccc37bfc3a89d813e78d5851b001a404ba5c6002e3bb85af8da00c7cb1554), causation_id: EventId(0x5f3ca583fb0d86a80455317777faefb713c8ff760899a7ca642a973e286697e6), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 44, ts: 32740846071812678548092276945533676, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:42.004874Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=1 for E3 1:0 (buffered=1, folded=0, remaining=17) -2026-03-30T15:33:42.004890Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: dispatching fold step 1/17 (seq=1) for E3 1:0 -2026-03-30T15:33:42.005084Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(FoldProofs { proof1: Proof { circuit: PkBfv, data: , public_signals: }, proof2: Proof { circuit: PkGeneration, data: , public_signals: }, target_evm: false }), correlation_id: 169, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x3910844fe41d4714580c4fc8914dbff776ba48162b99406a83dbf337092df096), causation_id: EventId(0xc5eccc37bfc3a89d813e78d5851b001a404ba5c6002e3bb85af8da00c7cb1554), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 45, ts: 32740846071835829211904782432811756, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:33:48.196937Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 138, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0d535f3e058110629601f3c9abb2d379faf03cb7bf25b2f4cfc89010c755afa8), causation_id: EventId(0xd27a7edbb5d71778d64f444a2539c4210f2af24289f9d0d1b6dd1c08a0e8e05d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 46, ts: 32740846186054010232618109937728236, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:48.200795Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (2/15) -2026-03-30T15:33:48.200958Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 15 }), ctx: EventContext { id: EventId(0xc1bb532d14f3945e5feb5a76d11a9d72034e694cbc21670f9e350e6c19061fd6), causation_id: EventId(0x0d535f3e058110629601f3c9abb2d379faf03cb7bf25b2f4cfc89010c755afa8), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 47, ts: 32740846186130139945410309257247468, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:48.201930Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=15 for E3 1:0 (buffered=1, folded=0, remaining=17) -2026-03-30T15:33:55.275614Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 137, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1fda315474594f3c93d26f43f08a5e3342c78cff5e54e1b34f0b8e5038c0444c), causation_id: EventId(0xe669439c0900f2fa63a6251940a5209e8aaf1ebbac2d51a9dbb50bc069d88283), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 48, ts: 32740846316629140584418581375171308, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:55.282201Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (3/15) -2026-03-30T15:33:55.282663Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 14 }), ctx: EventContext { id: EventId(0x12e8b2f28f5eff8dc35e30d420b9dfa0412c041c85c3a5ef289e141f317068f4), causation_id: EventId(0x1fda315474594f3c93d26f43f08a5e3342c78cff5e54e1b34f0b8e5038c0444c), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 49, ts: 32740846316759356150834897100028652, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:33:55.284208Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=14 for E3 1:0 (buffered=2, folded=0, remaining=17) -2026-03-30T15:34:03.079804Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 136, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x16f0084352c5c01a9e3bc539184902059f6111e871c6f7e9bfccf851cb7dc816), causation_id: EventId(0x2337d892be245f5dd54fa4614f9a74f4de512880d9450c4dc4967d97d63af691), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 50, ts: 32740846460594061483050015367707372, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:03.084227Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (4/15) -2026-03-30T15:34:03.084430Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 13 }), ctx: EventContext { id: EventId(0xc4d6cf4154fa19cb89f20e4d30dad7a9033c3eb7e2b0b709754153153d55c64c), causation_id: EventId(0x16f0084352c5c01a9e3bc539184902059f6111e871c6f7e9bfccf851cb7dc816), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 51, ts: 32740846460681130115077924451334892, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:03.085489Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=13 for E3 1:0 (buffered=3, folded=0, remaining=17) -2026-03-30T15:34:10.104621Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 135, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x4f92d3c96b082057887312ade0fc273b667b006e73b0157d172e72125669b356), causation_id: EventId(0xd1e425410f52d88d1404b58b211fed179ced0a4fdd56fb55847e5c213199df96), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 52, ts: 32740846590179173527158568879471340, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:10.108813Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (5/15) -2026-03-30T15:34:10.109000Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 12 }), ctx: EventContext { id: EventId(0x600e1946c430d1c1b2a4fb33590da94ea27b288c78c0f30bba367493c9dea772), causation_id: EventId(0x4f92d3c96b082057887312ade0fc273b667b006e73b0157d172e72125669b356), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 53, ts: 32740846590261851834096935089814252, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:10.110115Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=12 for E3 1:0 (buffered=4, folded=0, remaining=17) -test test_trbfv_actor has been running for over 60 seconds -2026-03-30T15:34:16.500000Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 134, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb0e5abb4aad47324d510418415742b60fb3b99b2913bb4d5b754ade3a59da895), causation_id: EventId(0xdc3cdb9ab6c9938fb42778c62c4e62f8142cac89efcdb4bac819eaa4a4f2e962), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 54, ts: 32740846708153296108719898188921580, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:16.504371Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (6/15) -2026-03-30T15:34:16.504571Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 11 }), ctx: EventContext { id: EventId(0x2bad2c9649916e585b061fffc73522caba6191d2bdea8ab277c71f93227180d3), causation_id: EventId(0xb0e5abb4aad47324d510418415742b60fb3b99b2913bb4d5b754ade3a59da895), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 55, ts: 32740846708239110362150795023039212, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:16.505624Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=11 for E3 1:0 (buffered=5, folded=0, remaining=17) -2026-03-30T15:34:22.834429Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 133, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2d416d3ed654a7be345cc49cd3a081bc2f0f751d8c87bf838aeca14d88cab838), causation_id: EventId(0xcebcba08ede66af6594a519e8bf36fa81034816a33d31b458644827bc69af48b), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 56, ts: 32740846825002665363874935007689452, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:22.838331Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (7/15) -2026-03-30T15:34:22.838512Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 10 }), ctx: EventContext { id: EventId(0x671b24a6703ccda0017e2e5ef6fbf25a8d085ceedb952233a8adc01b2a728577), causation_id: EventId(0x2d416d3ed654a7be345cc49cd3a081bc2f0f751d8c87bf838aeca14d88cab838), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 57, ts: 32740846825079920328055630609857260, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:22.839527Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=10 for E3 1:0 (buffered=6, folded=0, remaining=17) -2026-03-30T15:34:29.154115Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 132, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xe266585d631bf305e20f6b1230c1fe5f8babaa27e357efb5012428770f62338c), causation_id: EventId(0x12b8bedd5c8ca747474ca42a5d663174494cbe3a35bed01f858610111a8e62c0), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 58, ts: 32740846941580295632080156421602028, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:29.158330Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (8/15) -2026-03-30T15:34:29.158545Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 9 }), ctx: EventContext { id: EventId(0x55c0d776156428db46e22e17038ce5d0a4b290af1bb6dccbfc6093ea4878a44e), causation_id: EventId(0xe266585d631bf305e20f6b1230c1fe5f8babaa27e357efb5012428770f62338c), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 59, ts: 32740846941663453554364439080286956, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:29.159891Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=9 for E3 1:0 (buffered=7, folded=0, remaining=17) -2026-03-30T15:34:35.448185Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 131, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc65b188d3d159367f548911c8e52d4a467c996606c72bd6a33e699a845a7014a), causation_id: EventId(0xeec6861184326228519dab7932a9dcb93ced49ba5cba8da0af61f37213d07a5d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 60, ts: 32740847057685357210605086542215916, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:35.452161Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (9/15) -2026-03-30T15:34:35.452344Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 8 }), ctx: EventContext { id: EventId(0xd707ebd4d2d5aaddfe3d3b04032eeee4e245d86943845a5fdedb3ff72b02a52d), causation_id: EventId(0xc65b188d3d159367f548911c8e52d4a467c996606c72bd6a33e699a845a7014a), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 61, ts: 32740847057764087914311678908513004, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:35.453360Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=8 for E3 1:0 (buffered=8, folded=0, remaining=17) -2026-03-30T15:34:41.736560Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 130, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xac511fd20b77d8dbb2bc647d970c1b89f2057488bdf7efb7c19be7ea5401cf3c), causation_id: EventId(0x73cfd4e7d9af36aece4731d41457667500e8f2e0b92d8dbef70dcfbe9b88591b), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 62, ts: 32740847173685641282791346409650924, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:41.740442Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (10/15) -2026-03-30T15:34:41.740609Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 7 }), ctx: EventContext { id: EventId(0x758daa82db4af910218a0c96e253e0b48f628de88501158ab50ab6579291cf71), causation_id: EventId(0xac511fd20b77d8dbb2bc647d970c1b89f2057488bdf7efb7c19be7ea5401cf3c), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 63, ts: 32740847173762324397905757015718636, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:41.741615Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=7 for E3 1:0 (buffered=9, folded=0, remaining=17) -2026-03-30T15:34:48.136874Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 129, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x678194192bf4f07c7f14a0db0a6e2ea9ce9fe90bd9ab78b7ba68d6a863c1689d), causation_id: EventId(0x36d68cd2a53f8b9b44fa6b4863ae4d12eaad5733e7445cfc6892d8c6ff23786d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 64, ts: 32740847291750374271242737036638956, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:48.141176Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (11/15) -2026-03-30T15:34:48.141379Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 6 }), ctx: EventContext { id: EventId(0x0aec31fdc35fb5540c69776d4e7139275c88a1291bd158490cc770730b062b91), causation_id: EventId(0x678194192bf4f07c7f14a0db0a6e2ea9ce9fe90bd9ab78b7ba68d6a863c1689d), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 65, ts: 32740847291835118613517358716762860, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:48.142785Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=6 for E3 1:0 (buffered=10, folded=0, remaining=17) -2026-03-30T15:34:54.458770Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 128, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x931d362263073b5d1d8ec17e25052860c6a882a6d10bfb6528646148eaa07ea1), causation_id: EventId(0xac3d5dfb16c14f0b4ccb7119ee21f77c14902a4e06e1d3685867fd9a58f3c499), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 66, ts: 32740847408368993204779741074242284, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:54.462769Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (12/15) -2026-03-30T15:34:54.462951Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 5 }), ctx: EventContext { id: EventId(0x02fb4bc4b63bce48e49e7016aa72e543af606b3363b7ce3c39ac464022daf3c3), causation_id: EventId(0x931d362263073b5d1d8ec17e25052860c6a882a6d10bfb6528646148eaa07ea1), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 67, ts: 32740847408447816142206701988297452, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:34:54.463968Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=5 for E3 1:0 (buffered=11, folded=0, remaining=17) -2026-03-30T15:35:00.832656Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xa9d608812a900c3591161bf35dc770db5f0fe68de99a0c8b0ce8b270bba596da), causation_id: EventId(0x0091753e6f65d9d755515b5da2eef7bdf90299d6a5a2158a214fb6495f29acee), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 68, ts: 32740847525946418555035946476190444, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:00.836753Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (13/15) -2026-03-30T15:35:00.836925Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 4 }), ctx: EventContext { id: EventId(0x3323ad5a5dd4208d20dd299fb0e7d6e1531d1b82be651137002d68339e53370f), causation_id: EventId(0xa9d608812a900c3591161bf35dc770db5f0fe68de99a0c8b0ce8b270bba596da), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 69, ts: 32740847526027141507102499474062060, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:00.837950Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=4 for E3 1:0 (buffered=12, folded=0, remaining=17) -2026-03-30T15:35:22.834555Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x077ab0120eda14611ae39e524aba8f4d7a124c0d3f586b2d501d7bc4ee87496a), causation_id: EventId(0xab2cb862d87aa37ad3c9f7d971b8e2c492f5b563106bfc60616fb92f7d5f7bae), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 70, ts: 32740847931810980688518700168461036, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:22.836537Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 1:0 (14/15) -2026-03-30T15:35:22.836699Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 3 }), ctx: EventContext { id: EventId(0x70794e49becef57ea1f1da38573c950890900f92dd5f91fc0a7cd577e1721bb6), causation_id: EventId(0x077ab0120eda14611ae39e524aba8f4d7a124c0d3f586b2d501d7bc4ee87496a), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 71, ts: 32740847931851471291760492634258156, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:22.837675Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=3 for E3 1:0 (buffered=13, folded=0, remaining=17) -2026-03-30T15:35:45.002034Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 125, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xbd3a671ead7f0e40f7cfd25bdde6b672022008f49b05f4bfa1fd7edb4aab97d2), causation_id: EventId(0x59645d60362206c74d1290574e14adc79e1719b9d0b1e9c06e503d13e9173dac), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 72, ts: 32740848340728866347825932553763564, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.004049Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 1:0 (15/15) -2026-03-30T15:35:45.004106Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 1:0 -2026-03-30T15:35:45.078125Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 1:0 party 2 (signer: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) -2026-03-30T15:35:45.079645Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 1:0 to 3 parties -2026-03-30T15:35:45.081532Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 2 }), ctx: EventContext { id: EventId(0xe3750e6c6896dae809d435354ad5b4a0fbb121391137cd23424893ede54c8e44), causation_id: EventId(0xbd3a671ead7f0e40f7cfd25bdde6b672022008f49b05f4bfa1fd7edb4aab97d2), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 73, ts: 32740848340769891906645862596557548, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.082600Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd687c509417ee8be4539409a83822818149e65d4b3bd598aa0437f061a9e608e), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 74, ts: 32740848342136961663204403757267692, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.083705Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xee8d8f765b4f322a75951de8e791877617853ffbc8ed6e193f540bdb1f9029e3), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 75, ts: 32740848342138031574360678911261420, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.084836Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xc3c13aa3ea46a38439b96f3e5a2b5cd44ca489200d6bfcf96f082a894f05b5f3), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 76, ts: 32740848342139064592028806646151916, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.085896Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x3eb859c56fbf72c9cdea2b19e4e3dd8ccc0178a07bcd838e535a7a2e49b42f65), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 77, ts: 32740848342139857802023976156871404, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.088925Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xac761ecd9a40fe5407b77d1f7a06572c7a313a1983bd41198690e6c8337459ff), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 78, ts: 32740848342141794710151715659791084, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.091994Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x06bc2924ad8030ab7257b1300670d87faa2a7d9bb54600dc98263bcb7f3fd3dc), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 79, ts: 32740848342144100553160929353743084, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.094962Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x490fc91aeba428f2f88b37ec6a59a7cdefba3e09c3fa259157f1863a5eea7dc3), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 80, ts: 32740848342146148141753111113972460, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.098004Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x482ab3feb05d027522240f1410bc61b0b5f290f0d1e566d803af2869eabf6741), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 81, ts: 32740848342148232623833440293305068, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.100998Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x262f4aee509499d7800b385d500c0b8a122e8be53fea88dbb9e4fb6b4550c4d7), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 82, ts: 32740848342150298659169695763086060, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.103961Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xc6777e6e28dd917df46cc09b41fb4d8156ceba098c407e8a189a3e63d0a718fb), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 83, ts: 32740848342152235567297435266005740, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.107082Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x3268206267d1347e19e6c73a499829ea30b0e57cd2e15b14885f410c6cb35b08), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 84, ts: 32740848342154172475425174768925420, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.110097Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa909308b00c320ed696d0106f1b51178ed385486afbba6076df5382ac4368119), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 85, ts: 32740848342156109383552914271845100, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.113097Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xbddc32bf3c47d7316a6828295c7af7d8c61df19bb2033675409a391d4b4651ce), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 86, ts: 32740848342158027844936580065213164, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.116186Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x1bc6bd6606590cb283b382ac4848cce2eb1913746f4b047c439cf603a52f9be4), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 87, ts: 32740848342159964753064319568132844, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.119231Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x64cbe6f5866e0a2723156e8229f948c6de5bc7f80a6f56611cbe493ff79f6e5e), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 88, ts: 32740848342161901661192059071052524, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.122352Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xd0f7c5249e3ecbf7e7bbe4fddc1e32b691a4b225a62702eae32197dd6431f145), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 89, ts: 32740848342164668672803115503794924, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.136538Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x3856bf4451a9c36ac2125074ed6227a1ec3550bab367d384bd67d584da4b40d4), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 90, ts: 32740848342174906615764024304941804, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.150912Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x6a3c61dc8cab4ae9da8c447cd96f5f5408af564198a89b2eac522413332cbb9c), causation_id: EventId(0xf8824e317ac8bef1b866c4199448df019d78f0fcf46da6ee047e029d0609d56f), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 91, ts: 32740848342184830964075680043711212, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.165530Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=2 for E3 1:0 (buffered=14, folded=0, remaining=17) -2026-03-30T15:35:45.165555Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 0 (E3 1:0) -2026-03-30T15:35:45.172572Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -2026-03-30T15:35:45.173133Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 1 (E3 1:0) -2026-03-30T15:35:45.180135Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -2026-03-30T15:35:45.180697Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 2 (E3 1:0) -2026-03-30T15:35:45.187863Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -2026-03-30T15:35:45.188571Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 2 E3 1:0 -2026-03-30T15:35:45.189275Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 2 E3 1:0 -2026-03-30T15:35:45.190433Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 2 E3 1:0 -2026-03-30T15:35:45.192028Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.194896Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.199225Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.204764Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.211629Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.219950Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.229413Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.240175Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.252408Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.265796Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.281062Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.297406Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 1:0 -2026-03-30T15:35:45.315096Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 2), forwarding to collector! -2026-03-30T15:35:45.315103Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes -2026-03-30T15:35:45.315108Z  INFO e3_keyshare::threshold_keyshare: got collector address! -2026-03-30T15:35:45.315216Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -2026-03-30T15:35:45.315220Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 -2026-03-30T15:35:45.315226Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 -2026-03-30T15:35:45.315235Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 20.458µs -2026-03-30T15:35:45.315484Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-29T15:35:45.172568Z }, value: }), ctx: EventContext { id: EventId(0x7ca4c9db747009efe944bf8bec4eb6c1266f4e873d31bac66762f5bb7f0cd6f2), causation_id: EventId(0xd0f7c5249e3ecbf7e7bbe4fddc1e32b691a4b225a62702eae32197dd6431f145), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 92, ts: 32740848343878611004923691073092332, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:35:45.330981Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-29T15:35:45.180133Z }, value: }), ctx: EventContext { id: EventId(0xebecf3c4524bb90dacd23a7d3fb4778438e02eb603eaf4acbbb0f01041885cef), causation_id: EventId(0x3856bf4451a9c36ac2125074ed6227a1ec3550bab367d384bd67d584da4b40d4), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 93, ts: 32740848344018013049888714154654444, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:35:45.346990Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-29T15:35:45.187855Z }, value: }), ctx: EventContext { id: EventId(0xe204aba1cdc4f2db129c91475f3014f7b937024cdd995562a30f09f0cacbde43), causation_id: EventId(0x6a3c61dc8cab4ae9da8c447cd96f5f5408af564198a89b2eac522413332cbb9c), origin_id: EventId(0x8e64f03cadd6c5c9f9815e50558dcafb63202643a0d2acf3aa44be0ea43a1c69), seq: 94, ts: 32740848344160717062042931245955820, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:35:45.468833Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-29T15:35:45.172568Z }, value: }), ctx: EventContext { id: EventId(0x34aea1069c0c87b5236edf1d6ea37076077aa9b2576f6779a9230d1a4be6167d), causation_id: EventId(0x34aea1069c0c87b5236edf1d6ea37076077aa9b2576f6779a9230d1a4be6167d), origin_id: EventId(0x34aea1069c0c87b5236edf1d6ea37076077aa9b2576f6779a9230d1a4be6167d), seq: 43, ts: 32740848349322632562700929644205418, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:35:45.484939Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-29T15:35:45.180133Z }, value: }), ctx: EventContext { id: EventId(0xe72a12ef3f4f1e558ac611f7d68cd7c2dfe30e49cfff0aa4b44827562cc141a8), causation_id: EventId(0xe72a12ef3f4f1e558ac611f7d68cd7c2dfe30e49cfff0aa4b44827562cc141a8), origin_id: EventId(0xe72a12ef3f4f1e558ac611f7d68cd7c2dfe30e49cfff0aa4b44827562cc141a8), seq: 43, ts: 32740848349332520017524436737697498, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:35:45.527860Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xac41c99a5e07643f7c7fe6afade919ad7bc2cccb4d37460207330f1f29751e23), causation_id: EventId(0x34aea1069c0c87b5236edf1d6ea37076077aa9b2576f6779a9230d1a4be6167d), origin_id: EventId(0x34aea1069c0c87b5236edf1d6ea37076077aa9b2576f6779a9230d1a4be6167d), seq: 44, ts: 32740848350181494520028772657894762, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.543974Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x774baa2fab25f313f5173812aea555b061ac30ad9a44b10f9d2a6180cd0e323d), causation_id: EventId(0xe72a12ef3f4f1e558ac611f7d68cd7c2dfe30e49cfff0aa4b44827562cc141a8), origin_id: EventId(0xe72a12ef3f4f1e558ac611f7d68cd7c2dfe30e49cfff0aa4b44827562cc141a8), seq: 44, ts: 32740848350419457518579624647567066, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:45.559608Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 0), forwarding to collector! -2026-03-30T15:35:45.559621Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes -2026-03-30T15:35:45.559627Z  INFO e3_keyshare::threshold_keyshare: got collector address! -2026-03-30T15:35:45.559664Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 1), forwarding to collector! -2026-03-30T15:35:45.559668Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes -2026-03-30T15:35:45.559672Z  INFO e3_keyshare::threshold_keyshare: got collector address! -2026-03-30T15:35:45.559694Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -2026-03-30T15:35:45.559698Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 -2026-03-30T15:35:45.559703Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 -2026-03-30T15:35:45.559710Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 16.667µs -2026-03-30T15:35:45.559732Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -2026-03-30T15:35:45.559735Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 -2026-03-30T15:35:45.559738Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 -2026-03-30T15:35:45.559741Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 9.208µs -2026-03-30T15:35:50.412266Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 139, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x08c4d58896d0e7ebac607634fde4830df235f9e7b69b4eaeecab87b0d9c5120c), causation_id: EventId(0x0f5fe8e38428ebdc2d5ce17fb3f3b531ea6b10b1f3f396e805c19eb757241b04), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 45, ts: 32740848440530012984475635691394410, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:50.414351Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 1:0 (1/15) -2026-03-30T15:35:50.414526Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: }, seq: 1 }), ctx: EventContext { id: EventId(0xda0d6e5e9cdb35706ebf9b938fa8efc6543ec2297f2bebeff320693f451882fe), causation_id: EventId(0x08c4d58896d0e7ebac607634fde4830df235f9e7b69b4eaeecab87b0d9c5120c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 46, ts: 32740848440572403602357020241007978, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:50.415678Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=1 for E3 1:0 (buffered=1, folded=0, remaining=17) -2026-03-30T15:35:50.415689Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: dispatching fold step 1/17 (seq=1) for E3 1:0 -2026-03-30T15:35:50.415859Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(FoldProofs { proof1: Proof { circuit: PkBfv, data: , public_signals: }, proof2: Proof { circuit: PkGeneration, data: , public_signals: }, target_evm: false }), correlation_id: 178, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xcdc12faddb2adcc8eb5e3c6a4de0a5e79d48432e1bcf0ee640eb8c6504d31298), causation_id: EventId(0xda0d6e5e9cdb35706ebf9b938fa8efc6543ec2297f2bebeff320693f451882fe), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 47, ts: 32740848440596937771975053944657258, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:35:57.160618Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 153, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xf16af779951e1447913372c80f6b61861cab598c794ee3b6074a7cc3da7ddb0b), causation_id: EventId(0x59dfe6f727a53c16b95bcb4f3e13dde842a79ef08a433ef28a52542fdc9fce53), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 48, ts: 32740848565013880869184623508821354, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:57.165401Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (2/15) -2026-03-30T15:35:57.165639Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 15 }), ctx: EventContext { id: EventId(0x2d2a0be84d41773651f7fe116d5d1c5f0a5f8aaddfc49e2f113d895430d0774b), causation_id: EventId(0xf16af779951e1447913372c80f6b61861cab598c794ee3b6074a7cc3da7ddb0b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 49, ts: 32740848565107424308382404645066090, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:35:57.166865Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=15 for E3 1:0 (buffered=1, folded=0, remaining=17) -2026-03-30T15:36:03.550643Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 152, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x16414cfed43ee3874b88a2ed40c03a70217447e506780057a391b9cbb9563614), causation_id: EventId(0xb4ee6e91c1e7c1120e46d716899b3ccee258f529c7c01de75e1354978a9b96d2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 50, ts: 32740848682889128902510869621609834, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:03.554516Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (3/15) -2026-03-30T15:36:03.554679Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 14 }), ctx: EventContext { id: EventId(0x6fdd7f481e557477516d6520f0421c4baac8a3e8a1446a3b091acf5de3d9e4a3), causation_id: EventId(0x16414cfed43ee3874b88a2ed40c03a70217447e506780057a391b9cbb9563614), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 51, ts: 32740848682965590656696395713058154, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:03.555683Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=14 for E3 1:0 (buffered=2, folded=0, remaining=17) -2026-03-30T15:36:10.180058Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 151, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x8971abc85c183c17440feff7bf6f747b042a7a946d042b04244ad1e81a0e77ef), causation_id: EventId(0xa110a1687cec42cdf360e494c47051e22371e4cbd62688855b1e3c8215b3ada9), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 52, ts: 32740848805180066298481339652478314, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:10.184112Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (4/15) -2026-03-30T15:36:10.184296Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 13 }), ctx: EventContext { id: EventId(0xef62d6ac2b2fc26e01df95df851858213158081e429ad6b3d0a9b6c17accb066), causation_id: EventId(0x8971abc85c183c17440feff7bf6f747b042a7a946d042b04244ad1e81a0e77ef), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 53, ts: 32740848805260143614505312816043370, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:10.185318Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=13 for E3 1:0 (buffered=3, folded=0, remaining=17) -2026-03-30T15:36:16.767635Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 150, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0b8a06feac57ff440607d5658a15843600cbf25c0d7a0d0bcbc8f4d1891a6c44), causation_id: EventId(0xc12947dcfd86e4b987755e9dff0d1765399c9ca4530449ba147ad926032a1a2e), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 54, ts: 32740848926699265709384096881939818, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:16.771641Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (5/15) -2026-03-30T15:36:16.771801Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 12 }), ctx: EventContext { id: EventId(0xa46e3379c168cda6ebbb5bea2da7a6519fa118690200e0e811908d68f8169f82), causation_id: EventId(0x0b8a06feac57ff440607d5658a15843600cbf25c0d7a0d0bcbc8f4d1891a6c44), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 55, ts: 32740848926778531368668826825233770, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:16.772807Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=12 for E3 1:0 (buffered=4, folded=0, remaining=17) -2026-03-30T15:36:23.263893Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 149, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x48ca7f68436cd470c8d3a1e19ac46a29a219f0194e916259115893eef4baf1d1), causation_id: EventId(0xc2832e15181c199c3dc12b23fc9e84528322d1563e5db416599202a432ad5d0a), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 56, ts: 32740849046534277386357172048860522, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:23.267745Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (6/15) -2026-03-30T15:36:23.267911Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 11 }), ctx: EventContext { id: EventId(0x708d9998293d84ee89e94f848a4e39ed3dc86d00db423998e20ab42614b59226), causation_id: EventId(0x48ca7f68436cd470c8d3a1e19ac46a29a219f0194e916259115893eef4baf1d1), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 57, ts: 32740849046610499332869739916137834, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:23.268908Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=11 for E3 1:0 (buffered=5, folded=0, remaining=17) -2026-03-30T15:36:29.821489Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 148, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x12736d844cbe8ac53cdfeb0ecb965175d592577df48087eb3dfb272dcf94cab2), causation_id: EventId(0x6f855de355606e5ff0941d835c3a698c321998ecae80f9b18d54af63fef16daf), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 58, ts: 32740849167500332729465674663564650, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:29.825659Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (7/15) -2026-03-30T15:36:29.825878Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 10 }), ctx: EventContext { id: EventId(0xa58784457f84774031c453a5e67249ce4d6109da0cc6d3303597ee76dfd77a9c), causation_id: EventId(0x12736d844cbe8ac53cdfeb0ecb965175d592577df48087eb3dfb272dcf94cab2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 59, ts: 32740849167582808122219230068839786, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:29.826921Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=10 for E3 1:0 (buffered=6, folded=0, remaining=17) -2026-03-30T15:36:36.198490Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 147, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2a745ce75a45524480cf1df8f8729af8d7be280d03bfa45bb65c93b48e819d14), causation_id: EventId(0x2ba01a7bfe58beeef41465e29d58a6e04790c608230d01d596a643b00ebcaa02), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 60, ts: 32740849285135662409369254348035434, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:36.202411Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (8/15) -2026-03-30T15:36:36.202626Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 9 }), ctx: EventContext { id: EventId(0x70c28782bc117f315d6d40004025670a4ad03481211deebd0b04569dbec872f3), causation_id: EventId(0x2a745ce75a45524480cf1df8f8729af8d7be280d03bfa45bb65c93b48e819d14), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 61, ts: 32740849285212954267038097369306474, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:36.203632Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=9 for E3 1:0 (buffered=7, folded=0, remaining=17) -2026-03-30T15:36:42.611559Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 146, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0a652d9b73f23edd299c4d127f2091738efd8d21cd1d49a075cfea5de0360e58), causation_id: EventId(0x8444754cb787e663b3b0dc6615e96c37be0efd2c9d330acf3c8f130e5f074cdc), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 62, ts: 32740849403435683618480810305885546, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:42.615615Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (9/15) -2026-03-30T15:36:42.615830Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 8 }), ctx: EventContext { id: EventId(0x62ccb6fb0b25f4404d397e4f8fc2d6a6f401217ddddd4ebc5eca5f6ffda3919d), causation_id: EventId(0x0a652d9b73f23edd299c4d127f2091738efd8d21cd1d49a075cfea5de0360e58), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 63, ts: 32740849403515724041016636050347370, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:42.616878Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=8 for E3 1:0 (buffered=8, folded=0, remaining=17) -2026-03-30T15:36:49.048621Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 145, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x47f555cea23b8cd2b52e629057611a3773ff8f9f2ef4bb8cffb0bfb5f61c9700), causation_id: EventId(0x562f40b02060843e0796b0b044fb9479d8209dce7c1b98b59ead4459816e407c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 64, ts: 32740849522178574259313985178932586, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:49.052456Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (10/15) -2026-03-30T15:36:49.052621Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 7 }), ctx: EventContext { id: EventId(0x3d4235d66733e121bba4b491d702e4fe0a6f4db7595833e9b7807984cef5edef), causation_id: EventId(0x47f555cea23b8cd2b52e629057611a3773ff8f9f2ef4bb8cffb0bfb5f61c9700), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 65, ts: 32740849522254445717689152564729194, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:49.053618Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=7 for E3 1:0 (buffered=9, folded=0, remaining=17) -2026-03-30T15:36:55.554903Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 144, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x40c870715c6e63bd7010f4bf35e6ab99e0e8f34b05feabc6d37408faf55ff469), causation_id: EventId(0x8c278e6214a939138ca3bbe52703dca3e84b8b52e54d8a946a7639cb8f8d99de), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 66, ts: 32740849642198385418417482633942378, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:55.558772Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (11/15) -2026-03-30T15:36:55.558934Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 6 }), ctx: EventContext { id: EventId(0x2d695d71842f00491709295093ea5f81ca554dd930b8ec12e1475151ff4b0b64), causation_id: EventId(0x40c870715c6e63bd7010f4bf35e6ab99e0e8f34b05feabc6d37408faf55ff469), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 67, ts: 32740849642274791832370787596735850, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:36:55.559914Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=6 for E3 1:0 (buffered=10, folded=0, remaining=17) -2026-03-30T15:37:01.879584Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 143, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xf50ee1ef8e52d22eb3cbf2f2ef41d8f116de490c1ef532713c50ce659439a638), causation_id: EventId(0x1f21292f581d08a1b24721704c2048ea60c9c8b803b27a57dee69a4e54768b06), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 68, ts: 32740849758868212513503104386831722, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:01.883462Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (12/15) -2026-03-30T15:37:01.883622Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 5 }), ctx: EventContext { id: EventId(0xa8efc5360ffa9a2fc9b34d1d5b214c9f5ba561d809fdea5c6100f2571b36bdf1), causation_id: EventId(0xf50ee1ef8e52d22eb3cbf2f2ef41d8f116de490c1ef532713c50ce659439a638), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 69, ts: 32740849758944729607920851606934890, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:01.884625Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=5 for E3 1:0 (buffered=11, folded=0, remaining=17) -2026-03-30T15:37:08.049624Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 142, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc2c242f15d18995e4266771b86a38f5b12c746083591bd0e2c0b14999fd7d2a2), causation_id: EventId(0x36b447bda284c77fc6051c3c6b8d574031bce6dcd48df89cd7a64d2104a40ab0), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 70, ts: 32740849872685398211542133658719594, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:08.053565Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (13/15) -2026-03-30T15:37:08.053724Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 4 }), ctx: EventContext { id: EventId(0xf78c1cf6ca092a74c18ebcfa3e2cf80e65997bddb85b18a4548d5bc354d621cc), causation_id: EventId(0xc2c242f15d18995e4266771b86a38f5b12c746083591bd0e2c0b14999fd7d2a2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 71, ts: 32740849872763059004092450871022954, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:08.054714Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=4 for E3 1:0 (buffered=12, folded=0, remaining=17) -2026-03-30T15:37:29.958835Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 141, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xc60412372e2cd0b71dcdaf92556ca7082c7024da5d5b432f4a3b8773ba84a6b7), causation_id: EventId(0xb9ceb655a8fafba60c0e97c3ca18b3aa32bfb576b4f3d6e58b24ef4081f2f22b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 72, ts: 32740850276840131636832749011703146, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:29.960836Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 1:0 (14/15) -2026-03-30T15:37:29.960997Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 3 }), ctx: EventContext { id: EventId(0x024fe7a3e905a457a6645001ec28bbb0af2922f8788d4e769dbb7fbbb5ead4a3), causation_id: EventId(0xc60412372e2cd0b71dcdaf92556ca7082c7024da5d5b432f4a3b8773ba84a6b7), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 73, ts: 32740850276880880494491573411222890, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:29.962004Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=3 for E3 1:0 (buffered=13, folded=0, remaining=17) -2026-03-30T15:37:51.990800Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 140, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x0549b01d31919873e3aea326701b75b6d820ff2903b83749b46216f21463018a), causation_id: EventId(0x98e43130ea47bde0f6d1fa2e3b4d127dc46d2f98e8e6eb699d284541f8dc019c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 74, ts: 32740850683258059199038641833350506, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:51.992895Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 1:0 (15/15) -2026-03-30T15:37:51.992946Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 1:0 -2026-03-30T15:37:52.068420Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 1:0 party 0 (signer: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) -2026-03-30T15:37:52.069913Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 1:0 to 3 parties -2026-03-30T15:37:52.071795Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 2 }), ctx: EventContext { id: EventId(0x736d66cf4aae4bf09e6a440eab16b37da1ea424d4f214f1d5b2d3602564541e2), causation_id: EventId(0x0549b01d31919873e3aea326701b75b6d820ff2903b83749b46216f21463018a), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 75, ts: 32740850683300615837616689768928618, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.072771Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x95dc2698d49b3182b05456cfca3e50e101b1773f1ddce120b0786410f9ade306), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 76, ts: 32740850684694396479593962360378730, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.073878Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb54a397708f526da399c2d60b16194eddee4261afc892671b58abcab05a250ca), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 77, ts: 32740850684695503284238384933475690, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.074934Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6c9ca70fae049152cae937b26d4b829e3742d3dda7674d41cb4b52452c307b1f), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 78, ts: 32740850684696278047489480734643562, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.075999Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xc730af9a091f84c2769aa47522e71e597383ac28c8b37f480bad89ce32025cc3), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 79, ts: 32740850684697126597716871374017898, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.079163Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x996d3cec73f1587c89f4ee4d770ef014edf52bde078c0f7212b44e64117bbd9a), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 80, ts: 32740850684699063505844610876937578, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.082278Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x5287dd9e81d1ae8fad388f1112a7c9e3e9bcb474b3be7f684b4b6577d7e0d3d4), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 81, ts: 32740850684701055754204571508512106, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.085335Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb0fd65620745bfdbf4355830abdf8e913402a6663b91289248393974cb29ad43), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 82, ts: 32740850684703066449308605849638250, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.088400Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xfb3e1a5d7dabd1215212451274170f266eba6c51799eddbefe4941bb980bd7d6), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 83, ts: 32740850684705003357436345352557930, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.091484Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb57f3f814e5785767c317cbb3e3b712782b483a5c0e8b0acf2b50bcb212b98cb), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 84, ts: 32740850684706921818820011145925994, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.094680Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x3f26e0c42c8e24b957c116fb0929d02434acb4d4363c34a3c1b4e92389045d97), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 85, ts: 32740850684708858726947750648845674, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.097728Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd0ee3ad30db2a31c31000ed47afa33287cce6f5d38b3f6ad920f13f7b9f368cf), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 86, ts: 32740850684710795635075490151765354, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.100707Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xead53afb4b7054a89b691cf3d6886610cc5324a0ef6ac2481e13019ec9a3fdfa), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 87, ts: 32740850684713212158549146103027050, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.103678Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x544dd4c99615216a5766b2aa06c3eadaed3ef01e6aa38050218bc07279197543), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 88, ts: 32740850684715167513420959315498346, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.106704Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x1121831de30b37ec8b9418d692fe25357e385eeefe1fbe9f00a27832759bb7ad), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 89, ts: 32740850684717104421548698818418026, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.109798Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x2402246280f37414e5c3b795a376f10b6dbf655374499059a26f1be1edc57aa3), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 90, ts: 32740850684719041329676438321337706, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.113035Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x5a0fb959a7bac85f55ee7445bfab39e86d3b576bd5909ccad23aee0397126fc4), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 91, ts: 32740850684721605427102683949012330, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.128589Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xd541c61000bc9010528d1bfce92a1e56010e718caabc1c44ded4d79619ce6734), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 92, ts: 32740850684731769583087297911952746, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.143433Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xc78c62cf7d7a8e8851e328bf6e99064d60b4431a7103a3f9b7a93ffaa8de4d36), causation_id: EventId(0xa3ba03807c04d7acb2133f4ae95e369816b42443117fd51ed7d370bed41f656c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 93, ts: 32740850684741564804190437683860842, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.158151Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=2 for E3 1:0 (buffered=14, folded=0, remaining=17) -2026-03-30T15:37:52.158175Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 0 (E3 1:0) -2026-03-30T15:37:52.165181Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -2026-03-30T15:37:52.165781Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 1 (E3 1:0) -2026-03-30T15:37:52.172995Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -2026-03-30T15:37:52.173560Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 2 (E3 1:0) -2026-03-30T15:37:52.180759Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -2026-03-30T15:37:52.181481Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 0 E3 1:0 -2026-03-30T15:37:52.182220Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 0 E3 1:0 -2026-03-30T15:37:52.183437Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 0 E3 1:0 -2026-03-30T15:37:52.185073Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.188126Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.192426Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.197988Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.205033Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.213353Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.223353Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.234431Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.246516Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.259914Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.276212Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.292604Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 1:0 -2026-03-30T15:37:52.310389Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 0), forwarding to collector! -2026-03-30T15:37:52.310398Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes -2026-03-30T15:37:52.310404Z  INFO e3_keyshare::threshold_keyshare: got collector address! -2026-03-30T15:37:52.310500Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -2026-03-30T15:37:52.310504Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 -2026-03-30T15:37:52.310509Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 -2026-03-30T15:37:52.310515Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 15.75µs -2026-03-30T15:37:52.310720Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-29T15:37:52.165176Z }, value: }), ctx: EventContext { id: EventId(0xa86b951ce6878b949e2d0ad738f731069e5e296942ad8d43bff20e4d368ba0f2), causation_id: EventId(0x5a0fb959a7bac85f55ee7445bfab39e86d3b576bd5909ccad23aee0397126fc4), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 94, ts: 32740850686478731587099813578642794, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:37:52.326406Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-29T15:37:52.172985Z }, value: }), ctx: EventContext { id: EventId(0xd09e4c1a7ff01e10ea4b834e425f58d42b44ce2e990a888dc774031810a03e13), causation_id: EventId(0xd541c61000bc9010528d1bfce92a1e56010e718caabc1c44ded4d79619ce6734), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 95, ts: 32740850686623003572500295981831530, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:37:52.342054Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-29T15:37:52.180757Z }, value: }), ctx: EventContext { id: EventId(0xfa885bd5eaeb2d52b4e74bebc05aef5c7c957b82d7e3e2ec8a7bafb3bba9fbd7), causation_id: EventId(0xc78c62cf7d7a8e8851e328bf6e99064d60b4431a7103a3f9b7a93ffaa8de4d36), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 96, ts: 32740850686766039626047839845061994, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:37:52.451896Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-29T15:37:52.172985Z }, value: }), ctx: EventContext { id: EventId(0xa510c132359c99e88daac5d3c94a00ec59d368c959d5a7d5462563488a6df4cf), causation_id: EventId(0xa510c132359c99e88daac5d3c94a00ec59d368c959d5a7d5462563488a6df4cf), origin_id: EventId(0xa510c132359c99e88daac5d3c94a00ec59d368c959d5a7d5462563488a6df4cf), seq: 45, ts: 32740850691746974120598670617585370, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:37:52.467245Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-29T15:37:52.180757Z }, value: }), ctx: EventContext { id: EventId(0x8616a6c04199881a5424bf18d50b6feb499793fc93b95cd0a1e0751cf159183e), causation_id: EventId(0x8616a6c04199881a5424bf18d50b6feb499793fc93b95cd0a1e0751cf159183e), origin_id: EventId(0x8616a6c04199881a5424bf18d50b6feb499793fc93b95cd0a1e0751cf159183e), seq: 95, ts: 32740850691756769341701809627020012, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:37:52.507315Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x376398639497cba55b25915895cd8d70de5037c09a84bcf9a1ac4844a5153ed4), causation_id: EventId(0xa510c132359c99e88daac5d3c94a00ec59d368c959d5a7d5462563488a6df4cf), origin_id: EventId(0xa510c132359c99e88daac5d3c94a00ec59d368c959d5a7d5462563488a6df4cf), seq: 46, ts: 32740850692553779366150505276614362, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.521804Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x845c923985514fe0fa049412ce1aa3fed85a31a9225d08d8b7e77197a6bfb9dd), causation_id: EventId(0x8616a6c04199881a5424bf18d50b6feb499793fc93b95cd0a1e0751cf159183e), origin_id: EventId(0x8616a6c04199881a5424bf18d50b6feb499793fc93b95cd0a1e0751cf159183e), seq: 96, ts: 32740850692777446138044232827484908, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:52.536572Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 1), forwarding to collector! -2026-03-30T15:37:52.536579Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes -2026-03-30T15:37:52.536585Z  INFO e3_keyshare::threshold_keyshare: got collector address! -2026-03-30T15:37:52.536643Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 2), forwarding to collector! -2026-03-30T15:37:52.536648Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes -2026-03-30T15:37:52.536652Z  INFO e3_keyshare::threshold_keyshare: got collector address! -2026-03-30T15:37:52.536669Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -2026-03-30T15:37:52.536674Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 -2026-03-30T15:37:52.536679Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 -2026-03-30T15:37:52.536684Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 15.625µs -2026-03-30T15:37:52.536707Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -2026-03-30T15:37:52.536710Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 -2026-03-30T15:37:52.536713Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 -2026-03-30T15:37:52.536716Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 9.833µs -2026-03-30T15:37:56.729652Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 154, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1843da948c8a81f015fa7d358ccdace7cff1bcf9e9d229c0e9b912fc77f0d1a7), causation_id: EventId(0xc04e660658e63fb21a8d2401f22ccbeaf3b3b4f3f0f2971cb998988fc9dee986), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 47, ts: 32740850770674467692969370411312858, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:56.731646Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 1:0 (1/15) -2026-03-30T15:37:56.731816Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: }, seq: 1 }), ctx: EventContext { id: EventId(0x860c249260d7ba10a065ab0fddb70f456b0dbceca5171aabfe0836d0ec72b8af), causation_id: EventId(0x1843da948c8a81f015fa7d358ccdace7cff1bcf9e9d229c0e9b912fc77f0d1a7), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 48, ts: 32740850770715142763651899972626138, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:37:56.732810Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=1 for E3 1:0 (buffered=1, folded=0, remaining=17) -2026-03-30T15:37:56.732817Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: dispatching fold step 1/17 (seq=1) for E3 1:0 -2026-03-30T15:37:56.732954Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(FoldProofs { proof1: Proof { circuit: PkBfv, data: , public_signals: }, proof2: Proof { circuit: PkGeneration, data: , public_signals: }, target_evm: false }), correlation_id: 187, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb9b0b9c0cb74f6442e0464ab8b9a8a13b63ee5bb6cc1eaa74c8b9bd9146b2e1d), causation_id: EventId(0x860c249260d7ba10a065ab0fddb70f456b0dbceca5171aabfe0836d0ec72b8af), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 49, ts: 32740850770736670113985919019362010, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:38:03.134935Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 168, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2b30937b812cdb26c90762523a9f39b459ab4298c4e75b69b445709908c7c5aa), causation_id: EventId(0x9e21166e05d0d08796ceacb6f973336a63cdeef821a819fc4ce7bb11ad027df9), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 50, ts: 32740850888829921768775264613148378, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:03.139064Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (2/15) -2026-03-30T15:38:03.139256Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 15 }), ctx: EventContext { id: EventId(0xbd1ce1d0a20dfb5c9b868581996732d5527839aaca63d49713d142f132d95520), causation_id: EventId(0x2b30937b812cdb26c90762523a9f39b459ab4298c4e75b69b445709908c7c5aa), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 51, ts: 32740850888911235016652176316671706, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:03.140248Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=15 for E3 1:0 (buffered=1, folded=0, remaining=17) -2026-03-30T15:38:09.453617Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 167, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xe2b2f5b5f7c8478afbdc624489a45a8ed7967a70bbf2884bf6755b4a54fc0577), causation_id: EventId(0xac84be7e8b5a91d26f4f7dc19ec5951d53f5fb901cf1074379fb5b8c6287f6dc), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 52, ts: 32740851005388791698257523413067482, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:09.457582Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (3/15) -2026-03-30T15:38:09.457748Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 14 }), ctx: EventContext { id: EventId(0xe54464a38df5180f6f5f709fda2862b01bfd7446cb3828fb1dc0395ef812b5e0), causation_id: EventId(0xe2b2f5b5f7c8478afbdc624489a45a8ed7967a70bbf2884bf6755b4a54fc0577), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 53, ts: 32740851005467282594291157555193562, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:09.458779Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=14 for E3 1:0 (buffered=2, folded=0, remaining=17) -2026-03-30T15:38:15.903717Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 166, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x685252c5260a269ada3a24a81572a4c2b1bbb239d470bb4cab04a57ae173c5c3), causation_id: EventId(0x1156aba2485ace05d445dd5d0b60ca2e345b2fddb840cc53c91960ea58d3d2f2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 54, ts: 32740851124372264775300018258290394, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:15.907678Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (4/15) -2026-03-30T15:38:15.907837Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 13 }), ctx: EventContext { id: EventId(0xc921d6cd080fca8c0e6c21b1d45c20dca1a82aab58e43673604d16cc90b1cdc8), causation_id: EventId(0x685252c5260a269ada3a24a81572a4c2b1bbb239d470bb4cab04a57ae173c5c3), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 55, ts: 32740851124450497416916620466693850, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:15.908848Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=13 for E3 1:0 (buffered=3, folded=0, remaining=17) -2026-03-30T15:38:22.324819Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 165, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x3a7d422a0bb2cfcd7697473672582bad17b9198b1a1043f942eea01cdcd9f9a0), causation_id: EventId(0xb8041e2364ce58a4236d017cd8437985b937b26dcde329176bc092caa0216c04), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 56, ts: 32740851242820819167693083525752538, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:22.328866Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (5/15) -2026-03-30T15:38:22.329032Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 12 }), ctx: EventContext { id: EventId(0xe8007e08dc8de2e6c9aa8de477bc48ff3b4180fc466d872effd901646aa68385), causation_id: EventId(0x3a7d422a0bb2cfcd7697473672582bad17b9198b1a1043f942eea01cdcd9f9a0), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 57, ts: 32740851242900527548835582498285274, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:22.330048Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=12 for E3 1:0 (buffered=4, folded=0, remaining=17) -2026-03-30T15:38:28.624998Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 164, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x1508e9a3f2d178bfd6c98b0b6a4dc4a60a0e67af3a9c5ce1be8e27e31bdcb900), causation_id: EventId(0x7fbce5e5ff2697b8a66f612cff40425e68e24cdf2adb260eb451c1c333dfe0a1), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 58, ts: 32740851359038627245996526425843418, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:28.628913Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (6/15) -2026-03-30T15:38:28.629069Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 11 }), ctx: EventContext { id: EventId(0x261f8035aacb293836e1afb1976964002b04531b6cfeb279dbdeaf0e0f07057b), causation_id: EventId(0x1508e9a3f2d178bfd6c98b0b6a4dc4a60a0e67af3a9c5ce1be8e27e31bdcb900), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 59, ts: 32740851359115863763433148318459610, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:28.630091Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=11 for E3 1:0 (buffered=5, folded=0, remaining=17) -2026-03-30T15:38:34.925484Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 163, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb9217f0922ef0d79dad7044c7cb6254f9002655a14412dc9d2cbde1213e65c3e), causation_id: EventId(0x1c449d35a4957f13ad26838a81db00abd744cf01a4025e0d921bdce132f00d2b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 60, ts: 32740851475262135368218745577383642, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:34.929390Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (7/15) -2026-03-30T15:38:34.929560Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 10 }), ctx: EventContext { id: EventId(0x260713c0f3cba2864d2665184379cdb413b7ac586c2c86a72d0a3b06c9fceed6), causation_id: EventId(0xb9217f0922ef0d79dad7044c7cb6254f9002655a14412dc9d2cbde1213e65c3e), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 61, ts: 32740851475339150524726482955380442, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:34.930556Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=10 for E3 1:0 (buffered=6, folded=0, remaining=17) -2026-03-30T15:38:41.484325Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 162, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb89b913c75c0ad7bab10722b577e08da3d70fc731c2425058531b229a4c14768), causation_id: EventId(0x3c32fb09e96e199a1360bd7325a496278b291507fb65efd39d0adefff1ea4101), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 62, ts: 32740851596250677292353100135507674, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:41.488517Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 1:0 (8/15) -2026-03-30T15:38:41.488719Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 9 }), ctx: EventContext { id: EventId(0x4002ea579eea4f8519aa9c2b68aa5713718e9ed483dd45d2355aef659e915d4b), causation_id: EventId(0xb89b913c75c0ad7bab10722b577e08da3d70fc731c2425058531b229a4c14768), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 63, ts: 32740851596333798321149235375089370, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:41.489738Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=9 for E3 1:0 (buffered=7, folded=0, remaining=17) -2026-03-30T15:38:47.743883Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 161, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x9f272f112c55b4742124c64c75fe4ff085d9644fe62d358e6df4dc870a9f1f82), causation_id: EventId(0xc63b86a973bfffc976be92e2a37c6d6a10ab3a496c8829ba3ed818cae7b2907c), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 64, ts: 32740851711719695135216524916401882, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:47.747808Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 1:0 (9/15) -2026-03-30T15:38:47.747969Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 8 }), ctx: EventContext { id: EventId(0xeec182503c605c5ccbdf2ce5c415ee7b27a6fbf959c257df197c713f443bb88d), causation_id: EventId(0x9f272f112c55b4742124c64c75fe4ff085d9644fe62d358e6df4dc870a9f1f82), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 65, ts: 32740851711797226800558326161843930, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:47.748964Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=8 for E3 1:0 (buffered=8, folded=0, remaining=17) -2026-03-30T15:38:54.235260Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 160, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xb2e289e03cdaa745eb60b9470e91a288bfaea77f347ad3e11ed9b4a7dcabb8c6), causation_id: EventId(0x95978d36f6fec018536fe4763bdc8906df400b013189def3aee0ff66147ef2e2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 66, ts: 32740851831463524556233253769684698, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:54.239944Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 1:0 (10/15) -2026-03-30T15:38:54.240148Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 7 }), ctx: EventContext { id: EventId(0x46bc366a7a377bc43bf5190fe365036b8971004659f7b5d8ba4b7306bf08c6fd), causation_id: EventId(0xb2e289e03cdaa745eb60b9470e91a288bfaea77f347ad3e11ed9b4a7dcabb8c6), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 67, ts: 32740851831556145658227349428348634, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:38:54.241423Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=7 for E3 1:0 (buffered=9, folded=0, remaining=17) -2026-03-30T15:39:00.979270Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 159, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x2877860730e5154fae06bcb7b72e1f273d2f7c72ca55d0752d0e58bbb9316c61), causation_id: EventId(0xb2e93cd915a447f517998da886addcc35326ca45758b66f5324383cc4b6fa833), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 68, ts: 32740851955869584074439334698395354, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:00.983274Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 1:0 (11/15) -2026-03-30T15:39:00.983486Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 6 }), ctx: EventContext { id: EventId(0xae892857af03243be3bc85caf3df1c1cadc47f31d50c316b14e4907038f42ca4), causation_id: EventId(0x2877860730e5154fae06bcb7b72e1f273d2f7c72ca55d0752d0e58bbb9316c61), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 69, ts: 32740851955948868180468138351240922, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:00.985283Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=6 for E3 1:0 (buffered=10, folded=0, remaining=17) -2026-03-30T15:39:08.271921Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 158, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x9d030d1bd14841dbdb511db65542bcc963576647a228559ae4f5739c91695ca2), causation_id: EventId(0x23ef5e865b4b3d12d945a4ca1c3570f68d55c71da3fb2496237787b850756998), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 70, ts: 32740852090395158456601001452611290, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:08.276048Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 1:0 (12/15) -2026-03-30T15:39:08.276231Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 5 }), ctx: EventContext { id: EventId(0x0026a10e6329eed2d5cfb462ac14262cca7636a3e01d2f6d06b872bae5f32c0b), causation_id: EventId(0x9d030d1bd14841dbdb511db65542bcc963576647a228559ae4f5739c91695ca2), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 71, ts: 32740852090476471704477913156134618, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:08.277218Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=5 for E3 1:0 (buffered=11, folded=0, remaining=17) -2026-03-30T15:39:14.608889Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 157, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xd6c0a7324ad73462f4206229af978510fb1d7ae82cf698315378b4bec41e5b84), causation_id: EventId(0x0b8120805a792d6268a1e5b66cbb6c0b5ad48d11a08cd010a25b2645b782669f), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 72, ts: 32740852207291474675423629080241882, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:14.612828Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 1:0 (13/15) -2026-03-30T15:39:14.613003Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, seq: 4 }), ctx: EventContext { id: EventId(0xfeb8f79a874306ecb6a945d681a26556006a392da9ce9c5ea8f7cc90da76db94), causation_id: EventId(0xd6c0a7324ad73462f4206229af978510fb1d7ae82cf698315378b4bec41e5b84), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 73, ts: 32740852207369449062623199354922714, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:14.613995Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=4 for E3 1:0 (buffered=12, folded=0, remaining=17) -2026-03-30T15:39:37.179400Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 156, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0x38bdcb61583dbed7b72de6594011fefee097aaee1969b332866452716b09f17f), causation_id: EventId(0x2c83dd037ed43d186e517164a2b6ee9e1764fae613e5e16c79bc06c936df3f30), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 74, ts: 32740852623645335104563550269712090, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:37.181461Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 1:0 (14/15) -2026-03-30T15:39:37.181606Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 3 }), ctx: EventContext { id: EventId(0x23a68da99da91dea2b51cbb33c934d0bab27bbc016f1d95b1ad8aa27c7c29404), causation_id: EventId(0x38bdcb61583dbed7b72de6594011fefee097aaee1969b332866452716b09f17f), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 75, ts: 32740852623687153873378649823225562, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:37.182636Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=3 for E3 1:0 (buffered=13, folded=0, remaining=17) -2026-03-30T15:39:58.397883Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 155, e3_id: E3id { id: "0", chain_id: 1 } }), ctx: EventContext { id: EventId(0xcf690c5b03ea7ce4859779a719cd86091ac068e256a4da5ce0fbacea7c57c029), causation_id: EventId(0x8ea55dbb2013e92143a805b4a2da031ede27e828392396e933ed07531535b51a), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 76, ts: 32740853015057186850944123333224154, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.399897Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 1:0 (15/15) -2026-03-30T15:39:58.399949Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 1:0 -2026-03-30T15:39:58.476410Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 1:0 party 1 (signer: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) -2026-03-30T15:39:58.477856Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 1:0 to 3 parties -2026-03-30T15:39:58.479741Z  INFO e3_events::eventbus: >>> DKGInnerProofReady EnclaveEvent { payload: DKGInnerProofReady(DKGInnerProofReady { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, seq: 2 }), ctx: EventContext { id: EventId(0x18626c348d8a155180e0ad4fc072e34f2a07185e0130533b70def7728467f3d8), causation_id: EventId(0xcf690c5b03ea7ce4859779a719cd86091ac068e256a4da5ce0fbacea7c57c029), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 77, ts: 32740853015098230856508127085569754, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.480726Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xca503d46e540628729f9502949cd2848b859d23a8c8b9186dfb8bf7c399264d1), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 78, ts: 32740853016510163094653929875810010, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.481798Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xf9596876804572951c4ccc48a7544d75e8f72f67220f1cd974a2fd7f0a0fbb40), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 79, ts: 32740853016511159218833910191597274, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.482865Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9ba6c2b8ea425dfd1aeb99aa92d57e54a3a5a3a196e35ca2f5898ab6103fef4a), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 80, ts: 32740853016511878641852784864110298, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.483922Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x8377b06efbb38a09df304365af398a2ded3e7e528de9b11c57083a75f07b5afe), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 81, ts: 32740853016512764085568322922587866, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.487001Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9a41253172a02205ab98b8de08ab71095e600b375ee86ccd4e3702da408f58e0), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 82, ts: 32740853016514700993696062425507546, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.490186Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x93775cb2f23fe473c2bbc652d53321c39974fb164082f636a7c3530ed520679a), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 83, ts: 32740853016516637901823801928427226, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.493182Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x60bb1fbb478f993b695609488987006295b3352aca87e06e71a9c29b404218cc), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 84, ts: 32740853016518574809951541431346906, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.496246Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9b85f7a226b439b92d727ff0e5aade7c8ee0ffd8996b2abc751adddfd9cff288), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 85, ts: 32740853016520659292031870610679514, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.499229Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xaa389a978822a3ed4f32ebb85db73d07ab27b9512e8be26e96ff450d86c9a3c8), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 86, ts: 32740853016522577753415536404047578, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.502210Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe825f3613b6118817ebf7d08c376c0106af30e3b8146224a1f72751946696f80), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 87, ts: 32740853016524514661543275906967258, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.505246Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x65a5beb8e1ed866e50c24ba47099e765c304e33f568cc93f70a5e2b26dfab059), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 88, ts: 32740853016526451569671015409886938, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.508233Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x7f1af7e54bbc152626aa3e759d6cdac51787dcbc56b6ec1365235046fb1edffa), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 89, ts: 32740853016528388477798754912806618, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.511197Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb308ab87e1898e16acd36b7cbff21709788c49d15684f72702dc5bd3f498ef27), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 90, ts: 32740853016530306939182420706174682, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.514429Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x451ff98c3f224329c2e51b38f56b39419c98d86537842618c32b4dbdbd1ec329), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 91, ts: 32740853016532243847310160209094362, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.517562Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 1 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x071e7525408f927e37e897daae09fee76bbfbdbc830018fb86f75e55885805dd), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 92, ts: 32740853016534180755437899712014042, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.520656Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xb774cb22b32b2a7294627ac1836d8151fb35b46ff7aed4092c5de71f3bd0020d), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 93, ts: 32740853016536560385423408244172506, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.535172Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xdeb112d5d774fb8ad04838e0d590eb5d5e61b2aa05475ce3a5619e545281fd51), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 94, ts: 32740853016546890562104685593077466, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.549309Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x9586d56a53377015dcd5b5b6dfa155aedca2292f69ab6d442358684e1ae25584), causation_id: EventId(0xc5fceb31bb14f6e492e78bfdf793992c4565bd43fbb456867b369f36c5f21769), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 95, ts: 32740853016556722676695972784088794, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.564140Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: buffered seq=2 for E3 1:0 (buffered=14, folded=0, remaining=17) -2026-03-30T15:39:58.564174Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 0 (E3 1:0) -2026-03-30T15:39:58.571468Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -2026-03-30T15:39:58.572141Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 1 (E3 1:0) -2026-03-30T15:39:58.579587Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -2026-03-30T15:39:58.580165Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 2 (E3 1:0) -2026-03-30T15:39:58.587472Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -2026-03-30T15:39:58.588170Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 1 E3 1:0 -2026-03-30T15:39:58.588896Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 1 E3 1:0 -2026-03-30T15:39:58.590119Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 1 E3 1:0 -2026-03-30T15:39:58.591698Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.594567Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.598873Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.604591Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.611475Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.619850Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.629432Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.640347Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.652606Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.666263Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.681160Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.697300Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 1:0 -2026-03-30T15:39:58.714800Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 1), forwarding to collector! -2026-03-30T15:39:58.714815Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 and 3 nodes -2026-03-30T15:39:58.714821Z  INFO e3_keyshare::threshold_keyshare: got collector address! -2026-03-30T15:39:58.714941Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -2026-03-30T15:39:58.714945Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 -2026-03-30T15:39:58.714952Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 -2026-03-30T15:39:58.714963Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares -2026-03-30T15:39:58.714987Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 46.791µs -2026-03-30T15:39:58.715130Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected -2026-03-30T15:39:58.715159Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 1:0 (2 parties, 0 pre-dishonest) -2026-03-30T15:39:58.716248Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-29T15:39:58.571456Z }, value: }), ctx: EventContext { id: EventId(0xbbb3e3bab5bb43c44936d87e38d444c0248a2067bf27da76cae37980e95b65bc), causation_id: EventId(0xb774cb22b32b2a7294627ac1836d8151fb35b46ff7aed4092c5de71f3bd0020d), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 96, ts: 32740853018263415438395580499601114, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:39:58.732344Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-04-29T15:39:58.579582Z }, value: }), ctx: EventContext { id: EventId(0xbc95b5acf3d62f66cdf6ad1ac6734e6f6e5e8059a13c616e66d4a5b15eb87726), causation_id: EventId(0xdeb112d5d774fb8ad04838e0d590eb5d5e61b2aa05475ce3a5619e545281fd51), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 97, ts: 32740853018412926299112996415448794, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:39:58.747907Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-29T15:39:58.587463Z }, value: }), ctx: EventContext { id: EventId(0x4bcac51f31a2d6b9ed764b89c30b1a98d11cdfcb6e6e2b112b983c8cf89b3b51), causation_id: EventId(0x9586d56a53377015dcd5b5b6dfa155aedca2292f69ab6d442358684e1ae25584), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 98, ts: 32740853018558508003342712196802266, aggregate_id: AggregateId(0), block: None, source: Local } } -2026-03-30T15:39:58.855710Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0xae281f982a78ed568f0471fa4b7accda8a187121961af6a2a9394e799b9a9d75), causation_id: EventId(0xdeb112d5d774fb8ad04838e0d590eb5d5e61b2aa05475ce3a5619e545281fd51), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 99, ts: 32740853020913751393185800328029914, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:58.882886Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 1 }, ShareProofs -2026-03-30T15:39:59.012843Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 191, party_proofs: [PartyProofData { party_id: 0, address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proofs: [(C2aSkShareComputation, , [67, 99, 135, 108, 152, 106, 111, 186, 171, 144, 153, 185, 42, 13, 152, 81, 169, 235, 131, 205, 13, 99, 140, 37, 115, 46, 209, 2, 249, 172, 94, 62]), (C2bESmShareComputation, , [13, 201, 211, 78, 218, 185, 19, 153, 41, 27, 143, 234, 214, 20, 137, 159, 92, 34, 77, 183, 139, 87, 198, 124, 227, 171, 94, 63, 76, 253, 215, 123]), (C3aSkShareEncryption, , [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27]), (C3aSkShareEncryption, , [126, 170, 137, 223, 35, 121, 2, 153, 103, 0, 85, 165, 249, 6, 86, 50, 114, 218, 5, 177, 18, 178, 77, 7, 108, 28, 119, 52, 128, 38, 158, 84]), (C3bESmShareEncryption, , [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141]), (C3bESmShareEncryption, , [157, 66, 125, 181, 204, 61, 150, 86, 14, 47, 246, 219, 18, 117, 164, 173, 139, 191, 241, 152, 168, 93, 197, 247, 54, 124, 184, 230, 248, 91, 11, 103])] }, PartyProofData { party_id: 2, address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proofs: [(C2aSkShareComputation, , [208, 209, 174, 196, 71, 64, 133, 124, 120, 139, 127, 94, 182, 94, 164, 208, 243, 114, 27, 230, 234, 64, 13, 201, 135, 171, 249, 119, 48, 122, 121, 193]), (C2bESmShareComputation, , [127, 201, 59, 26, 217, 17, 72, 20, 6, 224, 21, 77, 137, 93, 41, 63, 239, 218, 183, 162, 150, 25, 158, 140, 4, 207, 245, 173, 89, 186, 172, 199]), (C3aSkShareEncryption, , [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17]), (C3aSkShareEncryption, , [185, 24, 101, 98, 23, 69, 91, 251, 105, 51, 48, 124, 239, 199, 186, 187, 187, 16, 133, 115, 111, 129, 128, 117, 252, 142, 226, 207, 139, 188, 208, 207]), (C3bESmShareEncryption, , [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142]), (C3bESmShareEncryption, , [206, 141, 11, 163, 235, 146, 88, 139, 224, 124, 188, 238, 21, 185, 128, 39, 83, 224, 230, 114, 83, 160, 244, 183, 246, 146, 140, 115, 14, 212, 2, 219])] }] }), ctx: EventContext { id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), causation_id: EventId(0xae281f982a78ed568f0471fa4b7accda8a187121961af6a2a9394e799b9a9d75), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 100, ts: 32740853026388449886357615894832858, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.028824Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.028833Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.028837Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.028841Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.028846Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.028850Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.028854Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.028857Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.028861Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.028864Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.028867Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.028870Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.028872Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.028875Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.028878Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.028880Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.028884Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) -2026-03-30T15:39:59.028966Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) -2026-03-30T15:39:59.029056Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) -2026-03-30T15:39:59.029104Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) -2026-03-30T15:39:59.029136Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.029140Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.029143Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.029153Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.029156Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.029159Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.029162Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.029165Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.029168Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.029171Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.029173Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.029176Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.029179Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.029182Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:39:59.029184Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.029187Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x244eb8badffd8132 tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:39:59.029190Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) -2026-03-30T15:39:59.029214Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) -2026-03-30T15:39:59.029240Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) -2026-03-30T15:39:59.029270Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) -2026-03-30T15:39:59.029442Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27] }), ctx: EventContext { id: EventId(0x7a114791592c3de42c98a67ad052da45f3af54f0a16f2aca2eabf16860218a1b), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 101, ts: 32740853026702155216075120529614554, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.029519Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, data_hash: [126, 170, 137, 223, 35, 121, 2, 153, 103, 0, 85, 165, 249, 6, 86, 50, 114, 218, 5, 177, 18, 178, 77, 7, 108, 28, 119, 52, 128, 38, 158, 84] }), ctx: EventContext { id: EventId(0x49f62d6bd0217a89f99bc1eee52792c24ae9fd7c8ac6cf958fd5381db4ea65c1), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 102, ts: 32740853026703907656762122937018074, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.029570Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17] }), ctx: EventContext { id: EventId(0x9155b683f19a407586432868865bd376d9cf0d92012360e476cd617e3883b64d), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 103, ts: 32740853026704811547221734705047258, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.029622Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, data_hash: [185, 24, 101, 98, 23, 69, 91, 251, 105, 51, 48, 124, 239, 199, 186, 187, 187, 16, 133, 115, 111, 129, 128, 117, 252, 142, 226, 207, 139, 188, 208, 207] }), ctx: EventContext { id: EventId(0xa15084792fbd4e9a6e49d88265f9bb991f281a0711ddfffa9017e7c78428c35a), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 104, ts: 32740853026705272715823577443837658, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.029679Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142] }), ctx: EventContext { id: EventId(0x812d25003fe56b70535f4d6047302be82ec79126f46e1e9bdf5ffa2cd257cb20), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 105, ts: 32740853026706840689069842755725018, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.029729Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, data_hash: [206, 141, 11, 163, 235, 146, 88, 139, 224, 124, 188, 238, 21, 185, 128, 39, 83, 224, 230, 114, 83, 160, 244, 183, 246, 146, 140, 115, 14, 212, 2, 219] }), ctx: EventContext { id: EventId(0x58f7c2adc7178c12bee2a56183446fe39f72983884d3803dc3e4777309b6f17f), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 106, ts: 32740853026707301857671685494515418, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.029786Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141] }), ctx: EventContext { id: EventId(0x8b768f040eb7e4c84a413faf6cfd13210a88048f84a3f5a6f3f01f5d486dfc64), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 107, ts: 32740853026707855259993896781063898, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.029840Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, data_hash: [157, 66, 125, 181, 204, 61, 150, 86, 14, 47, 246, 219, 18, 117, 164, 173, 139, 191, 241, 152, 168, 93, 197, 247, 54, 124, 184, 230, 248, 91, 11, 103] }), ctx: EventContext { id: EventId(0xd8fd7d9030c5bfe7d5c55efee9dc6f8059ecee13a36f514b0186d50057c1fd1d), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 108, ts: 32740853026708334875339813229405914, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.029897Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 191, inconsistent_parties: {0, 2} }), ctx: EventContext { id: EventId(0x5c41e76d2cbe52c06d8ce380dfe32fb777dc6a9f194257b980eb0f63a0d266c9), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 109, ts: 32740853026708574683012771453576922, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.029960Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 191, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x7b97203cb7b5c1b45aad740405d9af94c39d0408a40fcc616efe64163e454be4), causation_id: EventId(0xa4f6679f070edefac431a2f6cf33bee42a4be6f9d72db95241c69f9cf2676b23), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 110, ts: 32740853026708906724406098225506010, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.030843Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3aSkShareEncryption failure -2026-03-30T15:39:59.031528Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB sent bad C3aSkShareEncryption proof — AccusedFaulted -2026-03-30T15:39:59.031555Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:39:59.031591Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:39:59.032243Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3aSkShareEncryption failure -2026-03-30T15:39:59.032912Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 sent bad C3aSkShareEncryption proof — AccusedFaulted -2026-03-30T15:39:59.032932Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:39:59.032962Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:39:59.033610Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3bESmShareEncryption failure -2026-03-30T15:39:59.034274Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 sent bad C3bESmShareEncryption proof — AccusedFaulted -2026-03-30T15:39:59.034299Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:39:59.034331Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:39:59.034983Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3bESmShareEncryption failure -2026-03-30T15:39:59.035646Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB sent bad C3bESmShareEncryption proof — AccusedFaulted -2026-03-30T15:39:59.035666Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:39:59.035696Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:39:59.035700Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:39:59.035704Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:39:59.035708Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:39:59.035712Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:39:59.035716Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:39:59.035720Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:39:59.035724Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:39:59.035727Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:39:59.035762Z  WARN e3_zk_prover::actors::share_verification: C2/C3 consistency check found 2 inconsistent parties for E3 1:0: {0, 2} -2026-03-30T15:39:59.036226Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x7a114791592c3de42c98a67ad052da45f3af54f0a16f2aca2eabf16860218a1b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 111, ts: 32740853026737370050511832063649498, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036291Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0x7a114791592c3de42c98a67ad052da45f3af54f0a16f2aca2eabf16860218a1b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 112, ts: 32740853026749120626486785048028890, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036349Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0x26f0d38ee8a62e9a45c2482c5af188c9759010bfd2cf7e47b31db6191eb560f4), causation_id: EventId(0x7a114791592c3de42c98a67ad052da45f3af54f0a16f2aca2eabf16860218a1b), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 113, ts: 32740853026750541025780460683503322, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036414Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x9155b683f19a407586432868865bd376d9cf0d92012360e476cd617e3883b64d), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 114, ts: 32740853026763232385703172855015130, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036477Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x9155b683f19a407586432868865bd376d9cf0d92012360e476cd617e3883b64d), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 115, ts: 32740853026775001408422199548946138, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036535Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0xf20dd42494014953a765e5035784e5294eb6f90490001f0c8b75f3e0b738692e), causation_id: EventId(0x9155b683f19a407586432868865bd376d9cf0d92012360e476cd617e3883b64d), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 116, ts: 32740853026775923745625885026526938, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036593Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0x812d25003fe56b70535f4d6047302be82ec79126f46e1e9bdf5ffa2cd257cb20), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 117, ts: 32740853026788375297875638973867738, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036655Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0x812d25003fe56b70535f4d6047302be82ec79126f46e1e9bdf5ffa2cd257cb20), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 118, ts: 32740853026800125873850591958247130, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036716Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0xe3dd8595f845ba75e6cb6568a21a42564c76a355db7e84ed133f7ce6b49fe56c), causation_id: EventId(0x812d25003fe56b70535f4d6047302be82ec79126f46e1e9bdf5ffa2cd257cb20), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 119, ts: 32740853026801121998030572274034394, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036776Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x8b768f040eb7e4c84a413faf6cfd13210a88048f84a3f5a6f3f01f5d486dfc64), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 120, ts: 32740853026813702677488842188236506, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036833Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x8b768f040eb7e4c84a413faf6cfd13210a88048f84a3f5a6f3f01f5d486dfc64), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 121, ts: 32740853026825434806719721463064282, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036891Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0x68f31ec4ce73be606711ebbdedea6bc524a40073ff75b8e7d6f4589425b1a880), causation_id: EventId(0x8b768f040eb7e4c84a413faf6cfd13210a88048f84a3f5a6f3f01f5d486dfc64), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 122, ts: 32740853026826357143923406940645082, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.036951Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, dishonest_parties: {0, 2} }), ctx: EventContext { id: EventId(0xa3570a61f2bb500f25779173c08358dc0510cd71e74001d81f8471cd2455e2b3), causation_id: EventId(0xae281f982a78ed568f0471fa4b7accda8a187121961af6a2a9394e799b9a9d75), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 123, ts: 32740853026828478519491883539080922, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.037157Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:39:59.037190Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:39:59.037215Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:39:59.037237Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:39:59.037258Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:39:59.037279Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:39:59.037299Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:39:59.037320Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:39:59.037653Z  WARN e3_keyshare::threshold_keyshare: Too few honest parties for E3 1:0 (1 honest, need at least 2) — cannot proceed -2026-03-30T15:39:59.040511Z  INFO e3_events::eventbus: >>> E3Failed EnclaveEvent { payload: E3Failed(E3Failed { e3_id: E3id { id: "0", chain_id: 1 }, failed_at_stage: CommitteeFinalized, reason: InsufficientCommitteeMembers }), ctx: EventContext { id: EventId(0x153e51859e119b10813910d424f30e2d2e75dcd9ee53d331fa76c9110abaaeb8), causation_id: EventId(0xa3570a61f2bb500f25779173c08358dc0510cd71e74001d81f8471cd2455e2b3), origin_id: EventId(0xd557cc4efcf79e2f35ad86459d38a1299f0f63a036f470c5f55ef0f8ade8fcab), seq: 124, ts: 32740853026862752569980835885983450, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.040686Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 1 } reason="E3Failed: InsufficientCommitteeMembers" -2026-03-30T15:39:59.040858Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 97, ts: 32740853026876956562917593466901866, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.040923Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 98, ts: 32740853026877325497799067657934186, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.040995Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 99, ts: 32740853026877657539192394429863274, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041062Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 100, ts: 32740853026878026474073868620895594, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041127Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 101, ts: 32740853026878340068723121683273066, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041187Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 102, ts: 32740853026878690556860522164753770, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041248Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 103, ts: 32740853026879022598253848936682858, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041311Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 104, ts: 32740853026879428426623470546818410, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041392Z  WARN e3_keyshare::threshold_keyshare: E3 failed: InsufficientCommitteeMembers. Shutting down ThresholdKeyshare for e3_id=1:0 -2026-03-30T15:39:59.041401Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down -2026-03-30T15:39:59.041436Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026874060424098019349854489, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041503Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026874484699211714669541657, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041562Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026874835187349115151022361, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041622Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026875204122230589342054681, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041684Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026875536163623916113983769, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041750Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026875886651761316595464473, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041810Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026876218693154643367393561, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041867Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026876569181292043848874265, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041934Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026879871148481237263497408, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.041991Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026880313870339006292736192, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.042045Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026880719698708627902871744, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.042107Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026882066311026008700139712, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.042168Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026882545926371925148481728, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.042225Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026882951754741546758617280, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.042283Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026883320689623020949649600, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.042340Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026883689624504495140681920, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044358Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026884169239850414181512626, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044421Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026884556621475962082096562, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044490Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026884888662869288854025650, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044551Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026885257597750763045057970, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044610Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026885571192400016107435442, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044670Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026885921680537416588916146, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044728Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026886253721930743360845234, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044794Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026886585763324070132774322, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044863Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026886973144949616029950456, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044921Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026887360526575163930534392, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.044986Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026887692567968490702463480, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045044Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026888043056105891183944184, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045104Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026888356650755144246321656, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045163Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026888707138892544727802360, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045221Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026889039180285871499731448, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045286Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026889371221679198271660536, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045349Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026889777050048821054855780, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045409Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026890145984930295245888100, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045476Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026890478026323622017817188, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045548Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026890920748181391047055972, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045609Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026891252789574717818985060, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045672Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026891603277712118300465764, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045738Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026891935319105445072394852, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.045797Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026892378040963214101633636, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.048288Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.052531Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.056775Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.060935Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.065335Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.069541Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.073739Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.077903Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.082537Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.086757Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.090984Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.095176Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.099516Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.103720Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.107917Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.112104Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.116854Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.121060Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.125292Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.129494Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.133819Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.138041Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.142323Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.146586Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.151307Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.155541Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.159746Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.164054Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.168330Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.172583Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.176753Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.181056Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.185502Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.189747Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.193964Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.198331Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.202550Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.206850Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.211020Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.215355Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.219749Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.224006Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.228159Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.232477Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.236670Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.240959Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.245158Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.249589Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.252011Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-04-29T15:39:58.587463Z }, value: }), ctx: EventContext { id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), causation_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 97, ts: 32740853026905216974838514511330028, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:39:59.268131Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 1 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-04-29T15:39:58.571456Z }, value: }), ctx: EventContext { id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), causation_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 105, ts: 32740853026894480969787617540937066, aggregate_id: AggregateId(0), block: None, source: Net } } -2026-03-30T15:39:59.308943Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 8, ts: 32740853026950448391307252550973670, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309046Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 9, ts: 32740853026950872666420947870660838, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309114Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 10, ts: 32740853026951241601302422061693158, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309180Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 11, ts: 32740853026951592089439822543173862, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309245Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 12, ts: 32740853026951924130833149315102950, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309317Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 13, ts: 32740853026952256172226476087032038, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309388Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 14, ts: 32740853026952588213619802858961126, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309457Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 15, ts: 32740853026952938701757203340441830, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309520Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026953326083382749877043616, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309592Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026953695018264224068075936, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309660Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026954008612913477130453408, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309727Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026954377547794951321485728, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309795Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026954691142444204383863200, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309856Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026955023183837531155792288, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309923Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026955355225230857927721376, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.309990Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026955687266624184699650464, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310062Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 98, ts: 32740853026956074648249731745135340, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310125Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 99, ts: 32740853026956443583131205936167660, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310185Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 100, ts: 32740853026956775624524532708096748, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310242Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 101, ts: 32740853026957107665917859480025836, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310303Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 102, ts: 32740853026957421260567112542403308, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310359Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 103, ts: 32740853026957771748704513023884012, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310418Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 104, ts: 32740853026958103790097839795813100, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310479Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 105, ts: 32740853026958454278235240277293804, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310559Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026958841659860787283805779, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310627Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026959210594742261474838099, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310693Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026959524189391514537215571, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310758Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026959874677528915018696275, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310827Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026960188272178168081073747, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310883Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026960538760315568562554451, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.310944Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026960852354964821624931923, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311006Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026961202843102222106412627, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311076Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 8, ts: 32740853026961571777983695717191238, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311143Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 9, ts: 32740853026961959159609243617775174, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311208Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 10, ts: 32740853026962272754258496680152646, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311276Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 11, ts: 32740853026962623242395897161633350, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311345Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 12, ts: 32740853026962955283789223933562438, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311435Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 13, ts: 32740853026963305771926624415043142, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311493Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 14, ts: 32740853026963656260064024896523846, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311561Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 15, ts: 32740853026963988301457351668452934, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311630Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026964338789594752750794984, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311696Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026964707724476226941827304, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311767Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026965039765869553713756392, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311851Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026965371807262880485685480, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311921Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026965722295400280967166184, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.311994Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026966072783537681448646888, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312056Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026966404824931008220575976, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312121Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026966755313068408702056680, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312209Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026967124247949884001919628, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312274Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026967493182831358192951948, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312333Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026967825224224684964881036, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312399Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026968175712362085446361740, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312502Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026968489307011338508739212, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312564Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026968839795148738990219916, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312620Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026969153389797992052597388, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312683Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026969503877935392534078092, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312751Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026969872812816868075939494, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312812Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026970241747698342266971814, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312875Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026970573789091669038900902, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312937Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026970924277229069520381606, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.312993Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026971256318622396292310694, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313048Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026971588360015723064239782, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313107Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026971901954664976126617254, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313168Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026972252442802376608097958, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313231Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026972639824427921404028948, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313299Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026973008759309395595061268, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313362Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026973340800702722366990356, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313418Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026973691288840122848471060, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313475Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026974023330233449620400148, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313533Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026974355371626776392329236, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313591Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026974687413020103164258324, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313649Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026975019454413429936187412, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313778Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 8, ts: 32740853026975388389294907152213356, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313849Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 9, ts: 32740853026975757324176381343245676, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313912Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 10, ts: 32740853026976107812313781824726380, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.313995Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 11, ts: 32740853026976458300451182306207084, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314064Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 12, ts: 32740853026976771895100435368584556, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314122Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 13, ts: 32740853026977122383237835850065260, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314191Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 14, ts: 32740853026977435977887088912442732, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314307Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 15, ts: 32740853026977786466024489393923436, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314379Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026978155400905960331082695, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314449Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026978524335787434522115015, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314515Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026978856377180761294044103, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314580Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026979188418574088065973191, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314647Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026979520459967414837902279, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314712Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026979870948104815319382983, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314778Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026980184542754068381760455, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314843Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026980535030891468863241159, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314909Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026980903965772943098104448, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.314968Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026981254453910343579585152, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315033Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026981586495303670351514240, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315096Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026981936983441070832994944, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315153Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026982269024834397604924032, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315214Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026982619512971798086404736, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315269Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026982951554365124858333824, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315326Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026983283595758451630262912, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315390Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signed_payload: None, signature: [152, 3, 224, 183, 182, 7, 10, 243, 100, 69, 80, 60, 181, 50, 57, 39, 11, 175, 86, 70, 218, 97, 7, 19, 71, 34, 237, 213, 165, 198, 185, 217, 36, 223, 185, 162, 96, 190, 216, 3, 251, 30, 207, 144, 28, 148, 165, 150, 93, 45, 145, 244, 69, 231, 77, 112, 109, 182, 97, 73, 26, 222, 107, 27, 27] }), ctx: EventContext { id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), causation_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), origin_id: EventId(0x98499b581d1b848bc42bfae370b36a3d0727b5812272e67b8cdec6241d5f2b56), seq: 7, ts: 32740853026983652530639927273635971, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315452Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }), ctx: EventContext { id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), causation_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), origin_id: EventId(0xcf1b490450b300798b8613b67f9097219f6839f72b4e8a55056521fbfa5dfe8d), seq: 8, ts: 32740853026984039912265475174219907, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315518Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signed_payload: None, signature: [144, 251, 154, 108, 232, 8, 107, 127, 94, 125, 184, 107, 180, 178, 80, 51, 166, 110, 228, 238, 223, 226, 58, 24, 2, 123, 125, 44, 53, 11, 12, 244, 38, 197, 40, 245, 225, 130, 196, 0, 187, 151, 156, 244, 93, 114, 233, 112, 218, 194, 63, 251, 20, 221, 42, 111, 33, 210, 2, 126, 240, 80, 13, 145, 28] }), ctx: EventContext { id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), causation_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), origin_id: EventId(0x4dfdeed7f2c42775bfcdffd570e0ccaf7dbeab3143cfb0e11a9537b198173acc), seq: 9, ts: 32740853026984353506914728236597379, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315581Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }), ctx: EventContext { id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), causation_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), origin_id: EventId(0x5d669807c8248eb61f9ec83d2f5ec6c1c6a8aa1dafa387307c9c58a537d4b1a5), seq: 10, ts: 32740853026984703995052128718078083, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315643Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signed_payload: None, signature: [46, 24, 125, 115, 253, 202, 231, 28, 236, 26, 100, 211, 25, 47, 28, 219, 194, 112, 130, 17, 104, 90, 6, 113, 247, 38, 201, 65, 148, 27, 76, 248, 22, 111, 123, 116, 117, 143, 9, 49, 55, 24, 51, 112, 127, 162, 213, 10, 244, 249, 11, 69, 180, 238, 135, 8, 92, 80, 97, 199, 163, 129, 26, 157, 27] }), ctx: EventContext { id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), causation_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), origin_id: EventId(0xe56a513a43af545995fdc09f78a9102c8cd8ad7da0974a7118c53e422f259ee5), seq: 11, ts: 32740853026985054483189529199558787, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315700Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }), ctx: EventContext { id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), causation_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), origin_id: EventId(0xc9f8cb08b338e77efec36105f4f31936c1ca7b855c3969af3c247c343c2233dc), seq: 12, ts: 32740853026985404971326929681039491, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315766Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signed_payload: None, signature: [69, 248, 101, 218, 165, 190, 204, 14, 83, 7, 209, 114, 216, 23, 254, 101, 231, 186, 44, 32, 130, 95, 180, 88, 78, 233, 126, 25, 157, 115, 207, 112, 38, 135, 128, 243, 111, 138, 170, 203, 198, 46, 206, 157, 165, 53, 217, 152, 31, 169, 46, 6, 18, 139, 142, 99, 116, 197, 46, 223, 138, 240, 138, 240, 28] }), ctx: EventContext { id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), causation_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), origin_id: EventId(0x033482db031804ff9e15693f0a60cd62a77d5141b20e0f9cf4337fb38552c604), seq: 13, ts: 32740853026985718565976182743416963, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.315832Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }), ctx: EventContext { id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), causation_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), origin_id: EventId(0x3d15f29ada6f022d7c50583a610aaff11cf317211fd2c7efc17f9e473ffbfff9), seq: 14, ts: 32740853026986050607369509515346051, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:39:59.318215Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.322414Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.326678Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.331055Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.335312Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.339537Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.343731Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.348059Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.352509Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.356743Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.360931Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.365271Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.369517Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.373889Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.378079Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.382405Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.386871Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.391123Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.395342Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.399677Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.403910Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.408119Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.412413Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.416698Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.421227Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.425451Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.429732Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.434119Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.438421Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.442641Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.447021Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.451326Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.455830Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.460060Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.464490Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.468720Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.472986Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.477203Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.481425Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.485630Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.490170Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.494391Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.498627Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.502805Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.507171Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.511478Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.515753Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.520030Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.524971Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.529237Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.533481Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.537792Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.542206Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.546498Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.550782Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.555202Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.559771Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.564066Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.568297Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.572735Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.577053Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.581404Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.585664Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.589893Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.594424Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.598939Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.603361Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.607704Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.611967Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.616221Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.620533Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.624870Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.629365Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.633594Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.637814Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.642237Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.646460Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.650709Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.655002Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.659309Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.663769Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.668050Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.672369Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.676567Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.680892Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.685249Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.689489Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.693688Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.698291Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.702598Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.706882Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.711057Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.715457Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.719754Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.723948Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.728192Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.732789Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.737024Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.741310Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.745750Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.750084Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.754366Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:39:59.758550Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.762848Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:39:59.765882Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x4783ca69405a90512ac275f5c5974c4f58dc335bf6b5718934ce8f6a9f8a2bb3), causation_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 106, ts: 32740853031621883413789383473576684, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.782860Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 1 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xf8e4c66b64fa1f98a37435eb36a7bbad5de307b950cff926d29fea25797b81c6), causation_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 106, ts: 32740853031853592966099251140072810, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.798694Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 2), forwarding to collector! -2026-03-30T15:39:59.798708Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 and 3 nodes -2026-03-30T15:39:59.798714Z  INFO e3_keyshare::threshold_keyshare: got collector address! -2026-03-30T15:39:59.798876Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 0), forwarding to collector! -2026-03-30T15:39:59.798881Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB and 3 nodes -2026-03-30T15:39:59.798886Z  INFO e3_keyshare::threshold_keyshare: got collector address! -2026-03-30T15:39:59.798903Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -2026-03-30T15:39:59.798906Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 -2026-03-30T15:39:59.798910Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 -2026-03-30T15:39:59.798915Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares -2026-03-30T15:39:59.798936Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 33.958µs -2026-03-30T15:39:59.799197Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -2026-03-30T15:39:59.799201Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 -2026-03-30T15:39:59.799204Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 -2026-03-30T15:39:59.799212Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares -2026-03-30T15:39:59.799222Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 25.708µs -2026-03-30T15:39:59.799235Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected -2026-03-30T15:39:59.799250Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 1:0 (2 parties, 0 pre-dishonest) -2026-03-30T15:39:59.800778Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected -2026-03-30T15:39:59.800791Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 1:0 (2 parties, 0 pre-dishonest) -2026-03-30T15:39:59.801853Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x02d5f128ddbfed5763479738996fdfcc5ebaffffaddbdcc812dda2ec09637474), causation_id: EventId(0x4783ca69405a90512ac275f5c5974c4f58dc335bf6b5718934ce8f6a9f8a2bb3), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 107, ts: 32740853040911700622797661086497516, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.829294Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 1 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0xb527e4843197bfc8e6bbc5b9870d244c12a1db2fa7bb34e5de0153813e2cf8af), causation_id: EventId(0xf8e4c66b64fa1f98a37435eb36a7bbad5de307b950cff926d29fea25797b81c6), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 107, ts: 32740853040940090161927102075082090, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:39:59.857092Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 1 }, ShareProofs -2026-03-30T15:39:59.985799Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 1 }, ShareProofs -2026-03-30T15:40:00.181725Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 206, party_proofs: [PartyProofData { party_id: 0, address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proofs: [(C2aSkShareComputation, , [67, 99, 135, 108, 152, 106, 111, 186, 171, 144, 153, 185, 42, 13, 152, 81, 169, 235, 131, 205, 13, 99, 140, 37, 115, 46, 209, 2, 249, 172, 94, 62]), (C2bESmShareComputation, , [13, 201, 211, 78, 218, 185, 19, 153, 41, 27, 143, 234, 214, 20, 137, 159, 92, 34, 77, 183, 139, 87, 198, 124, 227, 171, 94, 63, 76, 253, 215, 123]), (C3aSkShareEncryption, , [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21]), (C3aSkShareEncryption, , [77, 150, 30, 222, 59, 221, 7, 56, 7, 21, 128, 158, 147, 52, 192, 183, 50, 208, 127, 99, 109, 82, 82, 23, 53, 80, 190, 184, 199, 218, 102, 46]), (C3bESmShareEncryption, , [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54]), (C3bESmShareEncryption, , [94, 209, 80, 75, 13, 194, 83, 54, 125, 174, 192, 162, 77, 224, 31, 181, 86, 168, 26, 194, 111, 13, 232, 71, 124, 49, 238, 93, 253, 221, 205, 227])] }, PartyProofData { party_id: 1, address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proofs: [(C2aSkShareComputation, , [250, 81, 95, 139, 26, 38, 201, 220, 224, 62, 93, 237, 222, 182, 46, 218, 191, 54, 14, 72, 202, 86, 149, 242, 212, 24, 90, 60, 145, 233, 19, 127]), (C2bESmShareComputation, , [90, 73, 22, 204, 124, 151, 134, 184, 112, 122, 254, 184, 92, 64, 249, 175, 96, 78, 253, 49, 139, 67, 118, 166, 140, 179, 90, 55, 205, 230, 194, 253]), (C3aSkShareEncryption, , [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205]), (C3aSkShareEncryption, , [152, 134, 176, 19, 232, 147, 192, 18, 196, 78, 38, 68, 32, 53, 245, 203, 234, 44, 17, 202, 233, 14, 167, 101, 154, 153, 231, 195, 158, 235, 241, 198]), (C3bESmShareEncryption, , [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93]), (C3bESmShareEncryption, , [157, 40, 201, 224, 173, 125, 181, 38, 196, 67, 104, 88, 89, 189, 255, 35, 57, 9, 117, 91, 14, 10, 163, 87, 37, 27, 189, 1, 7, 183, 174, 193])] }] }), ctx: EventContext { id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), causation_id: EventId(0x02d5f128ddbfed5763479738996fdfcc5ebaffffaddbdcc812dda2ec09637474), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 108, ts: 32740853044338902757508084971682540, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.211427Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 207, party_proofs: [PartyProofData { party_id: 1, address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proofs: [(C2aSkShareComputation, , [250, 81, 95, 139, 26, 38, 201, 220, 224, 62, 93, 237, 222, 182, 46, 218, 191, 54, 14, 72, 202, 86, 149, 242, 212, 24, 90, 60, 145, 233, 19, 127]), (C2bESmShareComputation, , [90, 73, 22, 204, 124, 151, 134, 184, 112, 122, 254, 184, 92, 64, 249, 175, 96, 78, 253, 49, 139, 67, 118, 166, 140, 179, 90, 55, 205, 230, 194, 253]), (C3aSkShareEncryption, , [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102]), (C3aSkShareEncryption, , [145, 108, 239, 111, 190, 237, 153, 163, 242, 122, 61, 148, 3, 250, 148, 152, 110, 198, 202, 2, 231, 127, 162, 137, 14, 251, 238, 193, 32, 107, 10, 5]), (C3bESmShareEncryption, , [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221]), (C3bESmShareEncryption, , [184, 85, 36, 87, 33, 133, 224, 184, 84, 253, 161, 29, 114, 83, 250, 88, 42, 150, 135, 37, 145, 255, 124, 139, 94, 192, 91, 248, 243, 212, 242, 130])] }, PartyProofData { party_id: 2, address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proofs: [(C2aSkShareComputation, , [208, 209, 174, 196, 71, 64, 133, 124, 120, 139, 127, 94, 182, 94, 164, 208, 243, 114, 27, 230, 234, 64, 13, 201, 135, 171, 249, 119, 48, 122, 121, 193]), (C2bESmShareComputation, , [127, 201, 59, 26, 217, 17, 72, 20, 6, 224, 21, 77, 137, 93, 41, 63, 239, 218, 183, 162, 150, 25, 158, 140, 4, 207, 245, 173, 89, 186, 172, 199]), (C3aSkShareEncryption, , [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48]), (C3aSkShareEncryption, , [127, 210, 33, 192, 98, 237, 64, 230, 142, 195, 218, 91, 221, 26, 171, 142, 74, 46, 75, 241, 90, 66, 248, 226, 67, 107, 226, 146, 184, 63, 223, 34]), (C3bESmShareEncryption, , [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185]), (C3bESmShareEncryption, , [92, 49, 142, 237, 85, 118, 4, 158, 82, 160, 37, 213, 93, 148, 127, 224, 188, 10, 173, 66, 216, 209, 184, 177, 191, 74, 172, 77, 113, 127, 240, 39])] }] }), ctx: EventContext { id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), causation_id: EventId(0xb527e4843197bfc8e6bbc5b9870d244c12a1db2fa7bb34e5de0153813e2cf8af), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 108, ts: 32740853047922754642892452357838186, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.246779Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246792Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246796Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246799Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246803Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246806Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246809Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246812Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246815Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246818Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246821Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246823Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246826Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246829Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246832Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246834Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246838Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) -2026-03-30T15:40:00.246890Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) -2026-03-30T15:40:00.246918Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) -2026-03-30T15:40:00.246944Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) -2026-03-30T15:40:00.246974Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246977Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246980Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246982Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246986Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246988Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.246991Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246994Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=0 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.246997Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247000Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247002Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.247005Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.247008Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247011Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247014Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.247016Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x20fb3a33186edf07 tgt_party=0 tgt_val=0x0e9a66e04462308a tgt_len=32 match=false -2026-03-30T15:40:00.247019Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) -2026-03-30T15:40:00.247044Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 0 (0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB) -2026-03-30T15:40:00.247068Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) -2026-03-30T15:40:00.247092Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) -2026-03-30T15:40:00.247202Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247205Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247208Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247211Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247214Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247217Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247220Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247222Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247226Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247228Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247257Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247260Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247263Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247266Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247268Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247271Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247274Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) -2026-03-30T15:40:00.247300Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) -2026-03-30T15:40:00.247324Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) -2026-03-30T15:40:00.247348Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3a->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) -2026-03-30T15:40:00.247375Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247378Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247381Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247383Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247387Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247390Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247392Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247395Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=1 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247398Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247401Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247403Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247406Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247409Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247412Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=2 tgt_val=0x20fb3a33186edf07 tgt_len=32 match=false -2026-03-30T15:40:00.247414Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247417Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] DEBUG src_party=2 src_val=0x0e9a66e04462308a tgt_party=1 tgt_val=0x244eb8badffd8132 tgt_len=32 match=false -2026-03-30T15:40:00.247419Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) -2026-03-30T15:40:00.247443Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 1 (0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08) -2026-03-30T15:40:00.247466Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) -2026-03-30T15:40:00.247490Z  WARN e3_zk_prover::actors::commitment_consistency_checker: [C3b->C0 pk_commitment] Pre-ZK commitment mismatch for E3 1:0 — party 2 (0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26) -2026-03-30T15:40:00.248110Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205] }), ctx: EventContext { id: EventId(0x53cc3b1b4986072f965fa11fd124bd7e9ea2fd1627e5210ef8e9d1c27413ab6d), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 109, ts: 32740853049168739971351162033093356, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248178Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, data_hash: [152, 134, 176, 19, 232, 147, 192, 18, 196, 78, 38, 68, 32, 53, 245, 203, 234, 44, 17, 202, 233, 14, 167, 101, 154, 153, 231, 195, 158, 235, 241, 198] }), ctx: EventContext { id: EventId(0xcee8eb40e2bce0153dbea0b585ec01d00debdeedc27681bb2388785b49199ce0), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 110, ts: 32740853049169496287858184124709612, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248233Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21] }), ctx: EventContext { id: EventId(0xdbb76ac98c09d3be9b389885841d900bbbcb9419ac821ab32e14b9de32fe7322), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 111, ts: 32740853049169994349948174282603244, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248285Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, data_hash: [77, 150, 30, 222, 59, 221, 7, 56, 7, 21, 128, 158, 147, 52, 192, 183, 50, 208, 127, 99, 109, 82, 82, 23, 53, 80, 190, 184, 199, 218, 102, 46] }), ctx: EventContext { id: EventId(0x690bfa045fcf4f027d975a3a57ce6c1d18faa1e0f42cec842e87f9dfee0d4d68), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 112, ts: 32740853049170455518550017021393644, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248338Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54] }), ctx: EventContext { id: EventId(0x4bc6641aa186fb6b73121794425f0afbc142a657c768202168b30d8eab5df38d), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 113, ts: 32740853049171820577611471528213228, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248387Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 0, accused_address: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, data_hash: [94, 209, 80, 75, 13, 194, 83, 54, 125, 174, 192, 162, 77, 224, 31, 181, 86, 168, 26, 194, 111, 13, 232, 71, 124, 49, 238, 93, 253, 221, 205, 227] }), ctx: EventContext { id: EventId(0x9963ca00db97a835970f1b033e0eb5e6dfa5a739e1340ed467e2e2f56a8164d4), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 114, ts: 32740853049172281746213314267003628, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248438Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93] }), ctx: EventContext { id: EventId(0x935123b11cf0244ec53619e9d96006116e4393d53459e7bdefb01eb6a0e8be80), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 115, ts: 32740853049172724468071083296242412, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248488Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, data_hash: [157, 40, 201, 224, 173, 125, 181, 38, 196, 67, 104, 88, 89, 189, 255, 35, 57, 9, 117, 91, 14, 10, 163, 87, 37, 27, 189, 1, 7, 183, 174, 193] }), ctx: EventContext { id: EventId(0xba9db4683a71a96993134c58a6a5a322955d7de5960ae4cf53ed654e690b71c7), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 116, ts: 32740853049173167189928852325481196, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248541Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 206, inconsistent_parties: {0, 1} }), ctx: EventContext { id: EventId(0x574631c2a75492be0838878d361f882564a9a99ac7b3fbba76dacb68dfa54013), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 117, ts: 32740853049173406997601810549652204, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248593Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 206, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x4c6d833d7b2d65ec82b47d47a8c9750e10e952b32d671ec1c1398bb621e5dd57), causation_id: EventId(0x165e39d1cb2d87a6b8a28b5d6b64f2684178b3fffa936d2a1727e28c7f7ad9cd), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 118, ts: 32740853049173720592251063612029676, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248645Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102] }), ctx: EventContext { id: EventId(0x7e01db6f7a7f1769cf588a1419e27d559a977f6ffb29b636f58fc5a8a77871e1), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 109, ts: 32740853049176542944094343162074474, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248697Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, data_hash: [145, 108, 239, 111, 190, 237, 153, 163, 242, 122, 61, 148, 3, 250, 148, 152, 110, 198, 202, 2, 231, 127, 162, 137, 14, 251, 238, 193, 32, 107, 10, 5] }), ctx: EventContext { id: EventId(0xc674f92f5d06cbc5d7e5da908fb49ca9bb1f0350bb3156543bf7d06b4bad8eda), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 110, ts: 32740853049177004112696185900864874, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248747Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48] }), ctx: EventContext { id: EventId(0x50e1c9bbc2023e26b931be013d75aed43f2c516811fdec4d260a4f8406d62ec3), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 111, ts: 32740853049177465281298028639655274, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248794Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, data_hash: [127, 210, 33, 192, 98, 237, 64, 230, 142, 195, 218, 91, 221, 26, 171, 142, 74, 46, 75, 241, 90, 66, 248, 226, 67, 107, 226, 146, 184, 63, 223, 34] }), ctx: EventContext { id: EventId(0xf17d47eab01cc21b81053eb7894e97c56fb3fee2a0944f304b1d0e5d9ec69a67), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 112, ts: 32740853049177908003155797668894058, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248845Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221] }), ctx: EventContext { id: EventId(0x0033dfa7586bef1f892521af1b7aa5fbfa573c72e56c47081be35e84443fa045), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 113, ts: 32740853049179199275240957337507178, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248896Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 1, accused_address: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, data_hash: [184, 85, 36, 87, 33, 133, 224, 184, 84, 253, 161, 29, 114, 83, 250, 88, 42, 150, 135, 37, 145, 255, 124, 139, 94, 192, 91, 248, 243, 212, 242, 130] }), ctx: EventContext { id: EventId(0x39517f29fa854a67bcae51ff9bd4a296c41ea4f64b5d866241dde833dae6411b), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 114, ts: 32740853049179641997098726366745962, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248945Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185] }), ctx: EventContext { id: EventId(0x67c55b006ef4d06a34bbba805e8efa692e49b7f5881765c3aafa009dfc7afdbe), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 115, ts: 32740853049180066272212421686433130, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.248993Z  INFO e3_events::eventbus: >>> CommitmentConsistencyViolation EnclaveEvent { payload: CommitmentConsistencyViolation(CommitmentConsistencyViolation { e3_id: E3id { id: "0", chain_id: 1 }, accused_party_id: 2, accused_address: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, data_hash: [92, 49, 142, 237, 85, 118, 4, 158, 82, 160, 37, 213, 93, 148, 127, 224, 188, 10, 173, 66, 216, 209, 184, 177, 191, 74, 172, 77, 113, 127, 240, 39] }), ctx: EventContext { id: EventId(0x9e580bba7417b728f679b4a6825a6de3fa8b90a93d9e30128d82b58926f968d1), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 116, ts: 32740853049180508994070190715671914, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.249041Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 207, inconsistent_parties: {1, 2} }), ctx: EventContext { id: EventId(0x80d1cb11452959c6aeb9183625e8d39fa8dc566f7147de7cb3a6fa6c2cce6581), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 117, ts: 32740853049180693461510927811188074, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.249090Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, correlation_id: 207, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x09e0fa1e325b54cb542fc140c0440408fe9dd7645ddb6aab4a47bfee42f31352), causation_id: EventId(0xa472c426760566803958e31e10a8b30203cbb954bfbaeddfd375c2c3fd0e8a6a), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 118, ts: 32740853049180914822439812325807466, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.250909Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption failure -2026-03-30T15:40:00.252749Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3aSkShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.252853Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.252948Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.254601Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3aSkShareEncryption failure -2026-03-30T15:40:00.262009Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption -2026-03-30T15:40:00.262036Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.264348Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.265078Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3bESmShareEncryption failure -2026-03-30T15:40:00.268993Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption -2026-03-30T15:40:00.269027Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.271227Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.271922Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption failure -2026-03-30T15:40:00.272634Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3bESmShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.272659Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.272689Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.272694Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.272698Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.272702Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.272706Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.272709Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.272713Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.272717Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.272720Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.272765Z  WARN e3_zk_prover::actors::share_verification: C2/C3 consistency check found 2 inconsistent parties for E3 1:0: {0, 1} -2026-03-30T15:40:00.273688Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption failure -2026-03-30T15:40:00.274376Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3aSkShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.274398Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.274429Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.275098Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3aSkShareEncryption failure -2026-03-30T15:40:00.277940Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption -2026-03-30T15:40:00.278081Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.282693Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.284510Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption failure -2026-03-30T15:40:00.285239Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3bESmShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.285268Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.285303Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.285979Z  INFO e3_zk_prover::actors::accusation_manager: Broadcasting accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3bESmShareEncryption failure -2026-03-30T15:40:00.288819Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption -2026-03-30T15:40:00.288847Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.291041Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.291049Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.291054Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.291058Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.291061Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3aSkShareEncryption — skipping duplicate -2026-03-30T15:40:00.291065Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.291069Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x416c12072630db2d28ec98a69e17f2b78fe8ea08 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.291072Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.291076Z  INFO e3_zk_prover::actors::accusation_manager: Already accused 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26 for C3bESmShareEncryption — skipping duplicate -2026-03-30T15:40:00.291116Z  WARN e3_zk_prover::actors::share_verification: C2/C3 consistency check found 2 inconsistent parties for E3 1:0: {1, 2} -2026-03-30T15:40:00.291572Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x53cc3b1b4986072f965fa11fd124bd7e9ea2fd1627e5210ef8e9d1c27413ab6d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 119, ts: 32740853049244685216702624257096428, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.291671Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x53cc3b1b4986072f965fa11fd124bd7e9ea2fd1627e5210ef8e9d1c27413ab6d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 120, ts: 32740853049275638853258308884708076, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.291732Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0x023591c3f6af79443bd53a0cc446a6e9b41574083e59c58e66ca9997c2d4fecb), causation_id: EventId(0x53cc3b1b4986072f965fa11fd124bd7e9ea2fd1627e5210ef8e9d1c27413ab6d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 121, ts: 32740853049280084518580072886647532, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.291800Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0xdbb76ac98c09d3be9b389885841d900bbbcb9419ac821ab32e14b9de32fe7322), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 122, ts: 32740853049312624575126096535698156, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.291853Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0xdbb76ac98c09d3be9b389885841d900bbbcb9419ac821ab32e14b9de32fe7322), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 123, ts: 32740853049340737413094429892360940, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.291908Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }, AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [170, 219, 116, 127, 137, 165, 189, 9, 178, 248, 50, 90, 67, 136, 200, 22, 238, 202, 86, 199, 8, 1, 85, 119, 206, 14, 81, 28, 92, 128, 192, 27], signature: [42, 43, 215, 62, 166, 55, 200, 209, 138, 14, 97, 68, 137, 14, 192, 71, 140, 76, 95, 4, 56, 29, 169, 108, 234, 39, 118, 152, 51, 174, 234, 231, 77, 11, 202, 238, 17, 18, 191, 183, 184, 222, 71, 196, 73, 207, 248, 229, 230, 201, 191, 13, 151, 67, 170, 98, 237, 218, 176, 176, 129, 46, 247, 131, 27] }], votes_against: [], outcome: Equivocation }), ctx: EventContext { id: EventId(0xcb3816d5d1917859cc1341cf7649a83761b23c2fdbf9972e8b628308403e5555), causation_id: EventId(0xdbb76ac98c09d3be9b389885841d900bbbcb9419ac821ab32e14b9de32fe7322), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 124, ts: 32740853049448890673598588993485548, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.291971Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0x4bc6641aa186fb6b73121794425f0afbc142a657c768202168b30d8eab5df38d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 125, ts: 32740853049505097902791181997259500, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.292023Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x4bc6641aa186fb6b73121794425f0afbc142a657c768202168b30d8eab5df38d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 126, ts: 32740853049517531008296862235048684, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.292078Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }, AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [87, 168, 85, 92, 234, 89, 202, 171, 171, 158, 3, 57, 129, 114, 97, 145, 235, 170, 129, 248, 207, 56, 221, 178, 170, 107, 82, 161, 241, 217, 180, 141], signature: [215, 138, 25, 2, 36, 199, 232, 114, 65, 142, 197, 146, 183, 198, 6, 182, 247, 101, 3, 131, 180, 48, 40, 222, 123, 24, 114, 251, 233, 141, 11, 234, 96, 58, 168, 132, 59, 110, 60, 186, 66, 44, 208, 169, 168, 36, 123, 234, 132, 145, 39, 12, 107, 102, 52, 255, 165, 9, 240, 110, 4, 76, 128, 207, 27] }], votes_against: [], outcome: Equivocation }), ctx: EventContext { id: EventId(0x78d3dbe3ec0228fa61b12a5804dec0a9699880d0eda68558a5b96264cc4861d3), causation_id: EventId(0x4bc6641aa186fb6b73121794425f0afbc142a657c768202168b30d8eab5df38d), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 127, ts: 32740853049577851861417892468833004, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.292139Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x935123b11cf0244ec53619e9d96006116e4393d53459e7bdefb01eb6a0e8be80), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 128, ts: 32740853049631292078999429039864556, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.292188Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x935123b11cf0244ec53619e9d96006116e4393d53459e7bdefb01eb6a0e8be80), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 129, ts: 32740853049643522270320298472585964, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.292240Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0x87843f3aed574567d835de65add38eb9a161ddadfd5c1f536102ee173f7fab53), causation_id: EventId(0x935123b11cf0244ec53619e9d96006116e4393d53459e7bdefb01eb6a0e8be80), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 130, ts: 32740853049644795095661384431647468, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.292297Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, dishonest_parties: {0, 1} }), ctx: EventContext { id: EventId(0x6666cc68a4a4fbf38adf7750a208420f081daf505ce41cfbbbd9fbba85faa2ab), causation_id: EventId(0x02d5f128ddbfed5763479738996fdfcc5ebaffffaddbdcc812dda2ec09637474), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 131, ts: 32740853049646768897277271353670380, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.292514Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x7e01db6f7a7f1769cf588a1419e27d559a977f6ffb29b636f58fc5a8a77871e1), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 119, ts: 32740853049663813688801380968011114, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.292754Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0x7e01db6f7a7f1769cf588a1419e27d559a977f6ffb29b636f58fc5a8a77871e1), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 120, ts: 32740853049675896306169660724319594, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.293013Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0xb47d86aa06a7eaabd9c7c9067f0ce5a5573be69cc7a83d46e85a570f114671ce), causation_id: EventId(0x7e01db6f7a7f1769cf588a1419e27d559a977f6ffb29b636f58fc5a8a77871e1), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 121, ts: 32740853049676873983605567330555242, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.293183Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x50e1c9bbc2023e26b931be013d75aed43f2c516811fdec4d260a4f8406d62ec3), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 122, ts: 32740853049689805151201237726238058, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.293336Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0x50e1c9bbc2023e26b931be013d75aed43f2c516811fdec4d260a4f8406d62ec3), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 123, ts: 32740853049701869321825443772994922, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.293488Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3aSkShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }, AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [252, 249, 56, 77, 201, 12, 156, 168, 136, 240, 187, 48, 14, 32, 17, 96, 145, 80, 69, 167, 68, 8, 70, 202, 41, 25, 79, 121, 28, 176, 192, 17], signature: [94, 102, 135, 160, 5, 201, 67, 96, 137, 19, 12, 148, 114, 146, 166, 37, 55, 62, 66, 243, 64, 132, 50, 253, 138, 202, 35, 236, 66, 154, 33, 215, 10, 70, 214, 144, 221, 92, 35, 168, 56, 74, 173, 10, 105, 179, 9, 131, 106, 150, 249, 26, 92, 235, 50, 167, 163, 84, 64, 82, 204, 4, 133, 78, 27] }], votes_against: [], outcome: Equivocation }), ctx: EventContext { id: EventId(0x181d027958a6f046689398b8bae3e8ccd062551e79e0dd414899ca4fe6d4d189), causation_id: EventId(0x50e1c9bbc2023e26b931be013d75aed43f2c516811fdec4d260a4f8406d62ec3), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 124, ts: 32740853049745717232488651377186154, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.293658Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x0033dfa7586bef1f892521af1b7aa5fbfa573c72e56c47081be35e84443fa045), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 125, ts: 32740853049863610373863729121564010, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.293804Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0x0033dfa7586bef1f892521af1b7aa5fbfa573c72e56c47081be35e84443fa045), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 126, ts: 32740853049876043479369409359353194, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.293957Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }], votes_against: [], outcome: AccusedFaulted }), ctx: EventContext { id: EventId(0x80e3ecceafa08a8a9f532ce88f352c2f2c4b26328f46d3f99ad3084d8e1ba3c5), causation_id: EventId(0x0033dfa7586bef1f892521af1b7aa5fbfa573c72e56c47081be35e84443fa045), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 127, ts: 32740853049877408538430863866172778, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.294109Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0x67c55b006ef4d06a34bbba805e8efa692e49b7f5881765c3aafa009dfc7afdbe), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 128, ts: 32740853049890524173467271357371754, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.294251Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x67c55b006ef4d06a34bbba805e8efa692e49b7f5881765c3aafa009dfc7afdbe), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 129, ts: 32740853049902569897347403694577002, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.294399Z  INFO e3_events::eventbus: >>> AccusationQuorumReached EnclaveEvent { payload: AccusationQuorumReached(AccusationQuorumReached { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, proof_type: C3bESmShareEncryption, votes_for: [AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }, AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, agrees: true, data_hash: [163, 160, 185, 248, 183, 128, 30, 202, 172, 177, 94, 139, 136, 117, 4, 81, 248, 78, 107, 146, 111, 219, 124, 254, 101, 237, 226, 153, 100, 40, 182, 142], signature: [208, 79, 204, 221, 211, 232, 22, 37, 118, 66, 145, 83, 60, 146, 170, 94, 203, 66, 49, 9, 161, 143, 207, 153, 81, 120, 148, 77, 229, 56, 196, 170, 46, 240, 62, 123, 120, 250, 67, 249, 133, 172, 23, 60, 207, 70, 177, 9, 2, 108, 218, 18, 14, 41, 226, 3, 230, 236, 104, 99, 243, 71, 58, 191, 27] }], votes_against: [], outcome: Equivocation }), ctx: EventContext { id: EventId(0x85aa8d842b8a68def7d1a0b721c54c5707ce6b62fd7a4d944e190356df091253), causation_id: EventId(0x67c55b006ef4d06a34bbba805e8efa692e49b7f5881765c3aafa009dfc7afdbe), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 130, ts: 32740853049943410988726596641854826, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.294576Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 1 }, kind: ShareProofs, dishonest_parties: {1, 2} }), ctx: EventContext { id: EventId(0xdedf99177670e2dfca1382b51516c6480fed5be46e49cbaf78a0c4e98ec20590), causation_id: EventId(0xb527e4843197bfc8e6bbc5b9870d244c12a1db2fa7bb34e5de0153813e2cf8af), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 131, ts: 32740853049985266651029843614471530, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.295218Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:40:00.295309Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:40:00.295367Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:40:00.296055Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:40:00.296119Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:40:00.296170Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:40:00.296222Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:40:00.296273Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:40:00.296896Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:40:00.296952Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:40:00.297006Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:40:00.297056Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:40:00.297111Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:40:00.297161Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:40:00.297215Z  WARN e3_net::net_event_translator: GossipPublish event: ProofFailureAccusation -2026-03-30T15:40:00.297264Z  WARN e3_net::net_event_translator: GossipPublish event: AccusationVote -2026-03-30T15:40:00.297602Z  WARN e3_keyshare::threshold_keyshare: Too few honest parties for E3 1:0 (1 honest, need at least 2) — cannot proceed -2026-03-30T15:40:00.297944Z  WARN e3_keyshare::threshold_keyshare: Too few honest parties for E3 1:0 (1 honest, need at least 2) — cannot proceed -2026-03-30T15:40:00.300400Z  INFO e3_events::eventbus: >>> E3Failed EnclaveEvent { payload: E3Failed(E3Failed { e3_id: E3id { id: "0", chain_id: 1 }, failed_at_stage: CommitteeFinalized, reason: InsufficientCommitteeMembers }), ctx: EventContext { id: EventId(0x153e51859e119b10813910d424f30e2d2e75dcd9ee53d331fa76c9110abaaeb8), causation_id: EventId(0x6666cc68a4a4fbf38adf7750a208420f081daf505ce41cfbbbd9fbba85faa2ab), origin_id: EventId(0x137a4e3d72ab54b85209902164ef4659bee29bc3930b37037e138b696bb667be), seq: 132, ts: 32740853050104856892859700648950508, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.301344Z  INFO e3_events::eventbus: >>> E3Failed EnclaveEvent { payload: E3Failed(E3Failed { e3_id: E3id { id: "0", chain_id: 1 }, failed_at_stage: CommitteeFinalized, reason: InsufficientCommitteeMembers }), ctx: EventContext { id: EventId(0x153e51859e119b10813910d424f30e2d2e75dcd9ee53d331fa76c9110abaaeb8), causation_id: EventId(0xdedf99177670e2dfca1382b51516c6480fed5be46e49cbaf78a0c4e98ec20590), origin_id: EventId(0xf14763d8380b89a47e4e50ef077e1652970c376d9343a879ba20bae373ecd146), seq: 132, ts: 32740853050111073445612542756492650, aggregate_id: AggregateId(1), block: None, source: Local } } -2026-03-30T15:40:00.302189Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 1 } reason="E3Failed: InsufficientCommitteeMembers" -2026-03-30T15:40:00.315647Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 1 } reason="E3Failed: InsufficientCommitteeMembers" -2026-03-30T15:40:00.315735Z  WARN e3_keyshare::threshold_keyshare: E3 failed: InsufficientCommitteeMembers. Shutting down ThresholdKeyshare for e3_id=1:0 -2026-03-30T15:40:00.315742Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down -2026-03-30T15:40:00.315937Z  WARN e3_keyshare::threshold_keyshare: E3 failed: InsufficientCommitteeMembers. Shutting down ThresholdKeyshare for e3_id=1:0 -2026-03-30T15:40:00.315942Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down -2026-03-30T15:40:00.316772Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 133, ts: 32740853050179972034727845943130860, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.316848Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 134, ts: 32740853050181429327509668997708524, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.316906Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 135, ts: 32740853050182480791921870442150636, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.316959Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 136, ts: 32740853050183606043310366724799212, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317014Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 137, ts: 32740853050184639060978494459689708, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317065Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 138, ts: 32740853050185764312366990742338284, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317117Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 139, ts: 32740853050186815776779192186780396, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317171Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 140, ts: 32740853050187959474911762178980588, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317227Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050191667270470578070059289, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317288Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050192847862091295481362713, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317347Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050193973113479791764011289, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317403Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050195153705100509175314713, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317460Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050196278956489005457963289, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317515Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050197385761133428031060249, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317570Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050198437225545629475502361, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317624Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050199599370422273177254169, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317678Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050200650834834474621696281, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317731Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050201794532967044613896473, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317786Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050202827550635172348786969, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317862Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050203879015047373793229081, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317916Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050204967372947722656774425, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.317970Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050206092624336218939423001, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.318023Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050207107195260272964761881, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.318077Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050212641218482385830246681, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.318135Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 133, ts: 32740853050213526662197925606167914, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.318188Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 134, ts: 32740853050213969384055694635406698, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.318522Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 135, ts: 32740853050214338318937168826439018, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.318576Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 136, ts: 32740853050214725700562716727022954, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.318625Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 137, ts: 32740853050215057741956043498952042, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.318676Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 138, ts: 32740853050215426676837517689984362, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.318729Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 139, ts: 32740853050215777164974918171465066, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.318782Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 140, ts: 32740853050216127653112318652945770, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319080Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 125, ts: 32740853050216570374970086456010458, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319134Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 126, ts: 32740853050216957756595634356594394, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319187Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 127, ts: 32740853050217289797988961128523482, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319240Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 128, ts: 32740853050217658732870435319555802, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319294Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 129, ts: 32740853050218009221007835801036506, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319345Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 130, ts: 32740853050218359709145236282517210, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319627Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 131, ts: 32740853050218691750538563054446298, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319680Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 132, ts: 32740853050221532549125914325395162, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319732Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 133, ts: 32740853050222731587490705446250202, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319785Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 134, ts: 32740853050223838392135128019347162, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319837Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 135, ts: 32740853050224908303291403173340890, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.319888Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 136, ts: 32740853050226015107935825746437850, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.320482Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 137, ts: 32740853050227085019092100900431578, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.320711Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 138, ts: 32740853050228210270480597183080154, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.320861Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 139, ts: 32740853050229298628380946046625498, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.321125Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 140, ts: 32740853050230386986281294910170842, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.321183Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050231678258366453492398272, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.321236Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050232895743475318322804928, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.321531Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050233965654631593476798656, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.321583Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050235054012531942340344000, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.321635Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050236123923688217494337728, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.321686Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050237230728332640067434688, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.321737Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050238300639488915221428416, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.321790Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050239407444133337794525376, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.322074Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050240422015057391819864256, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.322126Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050241510372957740683409600, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.322179Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050242524943881794708748480, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.322232Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050243668642014364700948672, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.322282Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050244683212938418726287552, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.322336Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050245826911070988718487744, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.322388Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050246859928739116453378240, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.323203Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050248575475937971441678528, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.323421Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050249940534999428540986802, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.323573Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050251158020108293371393458, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.323723Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050252246378008642234938802, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.323877Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050253390076141212227138994, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.324030Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050254478434041561090684338, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.324675Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050255548345197836244678066, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.324842Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050256599809610037689120178, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.324997Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050258167782856303001007538, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.325144Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050259127013548135897691570, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.325296Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050259569735405904926930354, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.325441Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050259957117031452827514290, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.326147Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050260344498657000728098226, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.326335Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050260694986794401209578930, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.326484Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050261063921675875400611250, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.326627Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050261414409813275882091954, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.326772Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050261783344694750073124274, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.326938Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050262428980737327904023032, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.327683Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050262890149339170642813432, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.327846Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050263240637476571124294136, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.327997Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050263609572358045315326456, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.328146Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050263941613751372087255544, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.328298Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050264310548632846278287864, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.328446Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050264642590026173050216952, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.332525Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050264993078163573531697656, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.332771Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050265325119556900303626744, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.332947Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050265675607694300785107448, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.333021Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050266007649087627557036536, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.333080Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050266358137225028038517240, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.333136Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050266690178618354810446328, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.333462Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050267059113499829001478648, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.333521Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050267391154893155773407736, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.333575Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050267760089774629964440056, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.333642Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050268184364888326457186916, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.333702Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050268590193257948067322468, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.333758Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050268922234651274839251556, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334030Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050269291169532749030283876, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334087Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050269623210926075802212964, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334139Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050269992145807549993245284, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334194Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050270305740456803055622756, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334246Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050270674675338277246655076, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334301Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050271025163475677728135780, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334582Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050271375651613078209616484, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334636Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050271707693006404981545572, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334689Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050272076627887879172577892, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334744Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050272408669281205944506980, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334798Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050272759157418606425987684, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334853Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050273091198811933197916772, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.334905Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050273460133693407388949092, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.335545Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 16, ts: 32740853050273847515318956070385894, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.335726Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 17, ts: 32740853050274234896944503970969830, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.335881Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 18, ts: 32740853050274585385081904452450534, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.336033Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 19, ts: 32740853050274954319963378643482854, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.336186Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 20, ts: 32740853050275286361356705415411942, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.336340Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 21, ts: 32740853050275655296238179606444262, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.336906Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 22, ts: 32740853050275987337631506378373350, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.336972Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 23, ts: 32740853050276337825768906859854054, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.337031Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 24, ts: 32740853050276669867162233631783142, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.337088Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 25, ts: 32740853050277020355299634113263846, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.337144Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 26, ts: 32740853050277352396692960885192934, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.337200Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 27, ts: 32740853050277721331574435076225254, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.337649Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 28, ts: 32740853050278053372967761848154342, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.337847Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 29, ts: 32740853050278403861105162329635046, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.338006Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 30, ts: 32740853050278735902498489101564134, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.338158Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 31, ts: 32740853050279086390635889583044838, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.338333Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050279492219005509829198240, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.338538Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050279879600631057729782176, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.338692Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050280211642024384501711264, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.338844Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050280562130161784983191968, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.338998Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050280894171555111755121056, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.339147Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050281244659692512236601760, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.339304Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050281576701085839008530848, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.339455Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050281927189223239490011552, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.339617Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050282259230616566261940640, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.339772Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050282609718753966743421344, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.339919Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050282941760147293515350432, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.340071Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050283310695028767706382752, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.340222Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050283642736422094478311840, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.340369Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050283993224559494959792544, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.340519Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050284325265952821731721632, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.340664Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050284694200834295922753952, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.340888Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050285100029203915783718483, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341041Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050285487410829463684302419, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341114Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050285837898966864165783123, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341174Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050286501981753517709641299, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341233Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050286926256867213029328467, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341291Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050287276745004613510809171, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341348Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050287608786397940282738259, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341404Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050287977721279414473770579, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341460Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050288309762672741245699667, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341514Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050288660250810141727180371, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341570Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050288992292203468499109459, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341622Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050289361227084942690141779, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341677Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050289693268478269462070867, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341731Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050290043756615669943551571, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341786Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050290375798008996715480659, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341839Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050290726286146397196961363, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341909Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 16, ts: 32740853050291113667771944517291590, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.341969Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 17, ts: 32740853050291501049397492417875526, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342025Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 18, ts: 32740853050291833090790819189804614, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342082Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 19, ts: 32740853050292202025672293380836934, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342137Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 20, ts: 32740853050292515620321546443214406, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342190Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 21, ts: 32740853050292884555203020634246726, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342245Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 22, ts: 32740853050293216596596347406175814, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342300Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 23, ts: 32740853050293567084733747887656518, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342355Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 24, ts: 32740853050293972913103369497792070, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342410Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 25, ts: 32740853050294341847984843688824390, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342467Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 26, ts: 32740853050294655442634096751201862, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342522Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 27, ts: 32740853050295024377515570942234182, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342578Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 28, ts: 32740853050295356418908897714163270, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342631Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 29, ts: 32740853050295706907046298195643974, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342686Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 30, ts: 32740853050296038948439624967573062, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342740Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 31, ts: 32740853050296407883321099158605382, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342813Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050298234110984397005076712, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342869Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050299654510278072640551144, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342924Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050300687527946200375441640, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.342980Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050301831226078770367641832, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343034Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050302864243746898102532328, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343092Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050303989495135394385180904, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343147Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050305059406291669539174632, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343203Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050306203104424239531374824, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343258Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050307217675348293556713704, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343314Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050308342926736789839362280, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343369Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050309375944404917574252776, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343433Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050310464302305266437798120, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343486Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050311515766717467882240232, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343540Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050312567231129669326682344, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343594Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050313581802053723352021224, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343649Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050314670159954072215566568, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343710Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050316035219015527831216780, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343769Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050317178917148097823416972, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343830Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050318230381560299267859084, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343884Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050319521653645458936472204, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343940Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050320591564801734090465932, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.343995Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050321735262934304082666124, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344052Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050322768280602431817556620, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344107Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050323856638502780681101964, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344161Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050324908102914982125544076, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344215Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050326033354303478408192652, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344270Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050327066371971606143083148, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344323Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050328246963592323554386572, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344377Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050329298428004524998828684, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344431Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050330405232648947571925644, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344487Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050331419803573001597264524, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344539Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050332545054961497879913100, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344598Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050333688753094069222942374, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344654Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050334869344714786634245798, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344708Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050335883915638840659584678, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344762Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050337027613771410651784870, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344816Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050338060631439538386675366, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344868Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050339167436083960959772326, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344925Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050340200453752088694662822, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.344979Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050341325705140584977311398, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345032Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050342377169552786421753510, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345085Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050343483974197208994850470, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345139Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050344498545121263020189350, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345226Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050345586903021611883734694, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345295Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050346601473945665909073574, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345364Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050347708278590088482170534, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345422Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050348722849514142507509414, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345478Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050349792760670417661503142, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345539Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050354773381570316135786516, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345599Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050356175334119918061709332, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345658Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050357282138764340634806292, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345715Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050358425836896910627006484, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345769Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050359514194797259490551828, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345824Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050360602552697608354097172, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345881Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050361709357342030927194132, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345937Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050362816161986453500291092, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.345995Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050363867626398654944733204, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.346050Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050365066664763446065588244, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.346404Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050366081235687500090927124, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.346476Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050367188040331922664024084, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.346530Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050368202611255976689362964, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.346584Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050369290969156325552908308, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.346647Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050370287093336305868695572, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.346701Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050373699740989942135744532, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.347309Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 16, ts: 32740853050375083246795473377109356, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.347519Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 17, ts: 32740853050376300731904338207516012, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.347733Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 18, ts: 32740853050377352196316539651958124, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.347913Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 19, ts: 32740853050378459000960962225055084, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.348094Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 20, ts: 32740853050379547358861311088600428, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.348246Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 21, ts: 32740853050380691056993881080800620, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.348404Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 22, ts: 32740853050381742521406082525242732, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.348552Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 23, ts: 32740853050382904666282726226994540, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.348701Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 24, ts: 32740853050383974577439001380988268, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.348884Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 25, ts: 32740853050385118275571571373188460, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.349039Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 26, ts: 32740853050386151293239699108078956, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.349188Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 27, ts: 32740853050387276544628195390727532, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.349945Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 28, ts: 32740853050388309562296323125618028, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.350016Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 29, ts: 32740853050389434813684819408266604, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.350072Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 30, ts: 32740853050390486278097020852708716, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.350124Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 31, ts: 32740853050391574635997369716254060, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.350193Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050393696011565843060816839, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.350254Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050395024177139150148533191, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.350651Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050396094088295425302526919, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.350851Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050397200892939847875623879, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.351015Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050398270804096123029617607, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.351174Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050399469842460914150472647, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.351327Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050400521306873115594914759, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.351481Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050401628111517538168011719, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.351628Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050402698022673813322005447, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.351782Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050403897061038604442860487, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.351931Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050407789324038157158251463, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.352078Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050409375744028496179690439, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.352228Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050410574782393287300545479, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.352377Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050411773820758078421400519, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.352524Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050412862178658427284945863, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.352675Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050413987430046923567594439, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.352850Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050415315595620230699141760, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.352996Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050416477740496874400893568, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.353142Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050417584545141296973990528, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.353282Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050418728243273866966190720, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.353423Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050419761260941994701081216, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.353564Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050420868065586417274178176, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.353709Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050421901083254545009068672, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.353850Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050423007887898967582165632, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.353995Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050424040905567095317056128, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.354131Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050425203050443739018807936, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.354276Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050426254514855940463250048, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.354415Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050427970062054795451550336, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.354558Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050428671038329596414511744, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.354698Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050429076866699218024647296, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.354842Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050429427354836618506128000, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.355023Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050429814736462166406711936, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.355223Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signed_payload: None, signature: [155, 235, 201, 233, 199, 210, 250, 221, 103, 206, 34, 81, 177, 17, 15, 218, 228, 226, 85, 115, 117, 15, 104, 11, 253, 122, 86, 71, 137, 133, 1, 108, 103, 185, 191, 54, 14, 237, 99, 86, 253, 154, 87, 89, 238, 110, 215, 79, 31, 120, 154, 223, 253, 114, 22, 47, 88, 25, 150, 39, 209, 36, 243, 126, 27] }), ctx: EventContext { id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), causation_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), origin_id: EventId(0x250994b29a4e6734c60be836e61eadb643779346df6db3fa3b2b1c60325a52e8), seq: 15, ts: 32740853050430275905064010597843075, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.355393Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [148, 221, 143, 160, 146, 183, 142, 1, 147, 26, 91, 23, 240, 177, 147, 235, 34, 80, 49, 10, 169, 210, 57, 62, 43, 207, 187, 178, 162, 1, 128, 205], signature: [108, 65, 7, 23, 87, 150, 85, 93, 58, 74, 218, 245, 83, 238, 238, 66, 221, 90, 29, 65, 105, 144, 49, 201, 10, 186, 186, 126, 112, 9, 40, 213, 119, 176, 205, 221, 92, 22, 67, 35, 136, 122, 181, 65, 159, 68, 154, 172, 167, 76, 231, 105, 128, 236, 84, 106, 252, 44, 50, 146, 113, 103, 2, 108, 28] }), ctx: EventContext { id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), causation_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), origin_id: EventId(0x2754a8c3dabe521754768f146da239ba70f9dbdf45f52fcb00afcb2b6380cced), seq: 16, ts: 32740853050430700180177705917530243, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.355575Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3aSkShareEncryption, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signed_payload: None, signature: [68, 229, 94, 158, 201, 91, 91, 26, 119, 109, 193, 196, 205, 138, 254, 220, 216, 162, 221, 37, 17, 83, 82, 164, 217, 185, 7, 10, 208, 36, 145, 56, 90, 206, 252, 127, 225, 77, 91, 100, 110, 235, 27, 116, 147, 231, 155, 135, 107, 90, 156, 113, 58, 198, 249, 69, 37, 14, 146, 149, 46, 237, 78, 71, 27] }), ctx: EventContext { id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), causation_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), origin_id: EventId(0x90a6b2748b9118d2ef52107df2df7bfa40d39c01f2cb7434d74af17c440cf26a), seq: 17, ts: 32740853050431050668315106399010947, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.355728Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [54, 167, 16, 185, 77, 214, 214, 34, 173, 145, 171, 134, 37, 38, 146, 250, 186, 244, 150, 147, 35, 252, 72, 244, 24, 194, 254, 33, 100, 209, 96, 21], signature: [57, 240, 15, 181, 6, 164, 68, 102, 194, 199, 204, 205, 99, 175, 32, 222, 104, 46, 254, 140, 115, 64, 228, 248, 100, 32, 127, 174, 173, 242, 168, 73, 121, 191, 1, 141, 212, 2, 11, 235, 93, 95, 172, 183, 3, 142, 147, 54, 217, 234, 80, 213, 45, 89, 195, 178, 31, 130, 181, 219, 92, 50, 211, 176, 28] }), ctx: EventContext { id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), causation_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), origin_id: EventId(0x1751b7f958dab3d8125cb1b0e6eb69db5f93e92f3cde48df74f347f90b250430), seq: 18, ts: 32740853050431401156452506880491651, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.355875Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused_party_id: 0, proof_type: C3bESmShareEncryption, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signed_payload: None, signature: [4, 240, 92, 98, 26, 23, 117, 120, 36, 16, 49, 1, 246, 139, 215, 38, 186, 159, 166, 46, 230, 180, 123, 178, 220, 129, 245, 150, 141, 243, 246, 15, 4, 225, 55, 215, 208, 140, 164, 121, 239, 36, 174, 204, 104, 164, 24, 127, 112, 78, 24, 150, 230, 44, 242, 51, 53, 34, 170, 189, 147, 135, 36, 184, 28] }), ctx: EventContext { id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), causation_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), origin_id: EventId(0xd6b85316b7ee43a869010fc85123a5a48e2d5770517fdbde8b3072ff7fdb3122), seq: 19, ts: 32740853050431751644589907361972355, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.356026Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [36, 52, 13, 50, 209, 255, 91, 205, 226, 109, 88, 208, 239, 24, 21, 203, 192, 99, 176, 123, 23, 71, 206, 171, 13, 108, 149, 250, 142, 169, 22, 54], signature: [223, 22, 153, 163, 254, 20, 3, 161, 62, 130, 230, 161, 171, 112, 0, 0, 59, 4, 252, 26, 88, 215, 189, 29, 254, 202, 251, 122, 20, 230, 95, 251, 26, 227, 182, 96, 180, 119, 212, 234, 97, 98, 250, 185, 111, 184, 195, 222, 68, 38, 112, 112, 232, 211, 218, 145, 229, 77, 254, 30, 189, 217, 71, 65, 27] }), ctx: EventContext { id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), causation_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), origin_id: EventId(0x6c1a1596670bc2a3756609f2c32941dc925660a4986146bd46fddf8a1fc000c6), seq: 20, ts: 32740853050432102132727307843453059, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.356174Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signed_payload: None, signature: [226, 221, 148, 53, 64, 143, 222, 77, 233, 1, 253, 29, 143, 133, 220, 167, 35, 168, 63, 245, 106, 114, 18, 110, 230, 239, 32, 36, 216, 89, 228, 36, 71, 44, 249, 64, 175, 210, 98, 90, 84, 64, 32, 59, 209, 180, 66, 80, 149, 245, 135, 4, 169, 5, 165, 106, 93, 74, 181, 104, 231, 119, 243, 41, 27] }), ctx: EventContext { id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), causation_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), origin_id: EventId(0x179b8be189c2d8c17b73debed32a223f67e9e4c571b041d49d0b373b218ef1fd), seq: 21, ts: 32740853050432452620864708324933763, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.356322Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, agrees: true, data_hash: [5, 26, 85, 142, 187, 113, 155, 132, 13, 248, 28, 90, 227, 143, 44, 165, 40, 188, 212, 131, 20, 64, 7, 176, 74, 82, 9, 110, 139, 114, 132, 93], signature: [230, 158, 132, 74, 232, 32, 113, 176, 193, 5, 162, 113, 219, 140, 166, 33, 209, 247, 97, 28, 109, 79, 94, 26, 53, 156, 63, 134, 113, 9, 42, 105, 125, 12, 17, 250, 133, 183, 244, 32, 74, 44, 133, 13, 205, 127, 179, 91, 136, 65, 63, 96, 223, 88, 196, 58, 239, 99, 254, 7, 230, 211, 98, 244, 28] }), ctx: EventContext { id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), causation_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), origin_id: EventId(0x3ffd68e5b4d75c6bd367ea99180d3395965c1fd5cae2db631669ec945d0eb491), seq: 22, ts: 32740853050432803109002108806414467, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.356473Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3aSkShareEncryption, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signed_payload: None, signature: [143, 6, 121, 90, 174, 39, 7, 217, 248, 96, 19, 12, 159, 40, 4, 83, 182, 68, 151, 160, 6, 71, 99, 42, 57, 100, 26, 137, 32, 235, 3, 253, 99, 212, 248, 27, 193, 224, 252, 176, 237, 120, 102, 205, 32, 209, 11, 241, 242, 122, 60, 77, 134, 188, 200, 19, 30, 157, 214, 181, 131, 92, 122, 219, 28] }), ctx: EventContext { id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), causation_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), origin_id: EventId(0x275cf234a6bec55677d6ab672f3467f35b5c969b4d50a2caab6d14029dd05d88), seq: 23, ts: 32740853050433135150395435578343555, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.356623Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [248, 0, 149, 177, 90, 109, 183, 98, 189, 227, 222, 28, 130, 49, 185, 235, 243, 8, 202, 4, 134, 238, 48, 234, 66, 164, 199, 140, 127, 234, 164, 102], signature: [139, 139, 48, 119, 244, 82, 244, 97, 252, 127, 4, 19, 36, 134, 48, 95, 195, 71, 164, 244, 195, 12, 239, 102, 101, 164, 9, 80, 20, 89, 193, 120, 124, 16, 124, 175, 56, 92, 146, 70, 93, 79, 158, 230, 80, 49, 110, 77, 231, 163, 213, 39, 103, 166, 72, 115, 27, 196, 168, 130, 74, 218, 47, 8, 27] }), ctx: EventContext { id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), causation_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), origin_id: EventId(0xfc460e1e3f504b21ba55a0bd94c986bb0efbeb9b60828793cd201be98ab397c5), seq: 24, ts: 32740853050433485638532836059824259, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.356765Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3aSkShareEncryption, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signed_payload: None, signature: [101, 167, 212, 131, 48, 68, 75, 211, 213, 28, 85, 67, 19, 160, 49, 121, 82, 95, 148, 123, 98, 171, 171, 60, 214, 154, 241, 214, 204, 175, 182, 116, 20, 197, 10, 154, 103, 200, 63, 4, 181, 66, 135, 171, 164, 227, 100, 236, 14, 251, 24, 78, 230, 51, 208, 81, 27, 153, 114, 169, 139, 159, 163, 38, 28] }), ctx: EventContext { id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), causation_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), origin_id: EventId(0x7f44d5512c51e8c54cce090ac65d1c63b3aa4a7b50d0f16acc3b6794594aae48), seq: 25, ts: 32740853050433836126670236541304963, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.356914Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [211, 42, 129, 58, 175, 150, 200, 31, 94, 90, 106, 212, 6, 84, 84, 249, 241, 125, 100, 22, 53, 6, 107, 150, 0, 90, 110, 238, 122, 128, 63, 48], signature: [61, 195, 70, 61, 179, 171, 79, 48, 32, 164, 200, 174, 2, 104, 75, 84, 239, 61, 61, 1, 115, 219, 197, 125, 34, 145, 1, 39, 82, 125, 72, 101, 40, 147, 88, 6, 64, 195, 32, 174, 203, 244, 205, 20, 195, 23, 119, 19, 223, 132, 186, 51, 21, 124, 239, 183, 162, 253, 240, 245, 211, 210, 253, 8, 28] }), ctx: EventContext { id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), causation_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), origin_id: EventId(0xfd38cdfc224ce138b94900131895a0ae46276e46c87d8ded4f67ec18f92bb852), seq: 26, ts: 32740853050434186614807637022785667, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.357062Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x416c12072630db2d28ec98a69e17f2b78fe8ea08, accused_party_id: 1, proof_type: C3bESmShareEncryption, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signed_payload: None, signature: [223, 115, 0, 227, 47, 0, 161, 135, 97, 68, 127, 149, 117, 85, 106, 14, 122, 96, 37, 16, 138, 252, 54, 171, 221, 56, 61, 173, 229, 60, 36, 142, 4, 51, 43, 0, 72, 215, 181, 229, 27, 168, 94, 129, 150, 200, 86, 184, 65, 103, 128, 53, 35, 32, 218, 128, 157, 127, 208, 216, 47, 198, 244, 157, 28] }), ctx: EventContext { id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), causation_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), origin_id: EventId(0x2ff3fba947f1c5da13f06a4b591a40ea130e582d00c63965a2232906f8e9b3ad), seq: 27, ts: 32740853050434518656200963794714755, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.357212Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [75, 206, 134, 128, 59, 114, 21, 245, 151, 228, 61, 114, 40, 19, 60, 219, 92, 118, 88, 81, 129, 30, 80, 107, 141, 254, 202, 9, 57, 32, 8, 221], signature: [103, 218, 84, 236, 158, 6, 32, 198, 243, 82, 142, 206, 12, 127, 134, 38, 102, 57, 232, 73, 156, 206, 208, 241, 0, 34, 54, 204, 30, 152, 243, 176, 47, 70, 78, 0, 233, 222, 103, 212, 196, 213, 52, 195, 139, 14, 250, 247, 205, 193, 173, 148, 165, 186, 178, 3, 110, 218, 70, 133, 227, 209, 151, 52, 27] }), ctx: EventContext { id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), causation_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), origin_id: EventId(0xfb8fd29332f198f574ebdd20bacecf4a66e8be63c8bacfab7f274eafda3ac34c), seq: 28, ts: 32740853050434887591082437985747075, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.357368Z  INFO e3_events::eventbus: >>> ProofFailureAccusation EnclaveEvent { payload: ProofFailureAccusation(ProofFailureAccusation { e3_id: E3id { id: "0", chain_id: 1 }, accuser: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, accused: 0x401ef01b75c9d0c51ac37742e2b6d0f5d03fae26, accused_party_id: 2, proof_type: C3bESmShareEncryption, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signed_payload: None, signature: [2, 31, 82, 142, 91, 130, 74, 133, 230, 250, 113, 188, 154, 69, 187, 47, 97, 166, 211, 123, 244, 124, 239, 183, 60, 64, 204, 238, 57, 83, 4, 20, 15, 107, 202, 109, 95, 36, 143, 164, 22, 88, 234, 119, 13, 254, 168, 39, 96, 78, 145, 145, 22, 191, 66, 215, 13, 119, 242, 38, 116, 125, 168, 195, 28] }), ctx: EventContext { id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), causation_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), origin_id: EventId(0xdfb7052b5d8442cd5b366341d49630d792797bff9aa68f19809efe063091c5eb), seq: 29, ts: 32740853050435201185731691048124547, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.357521Z  INFO e3_events::eventbus: >>> AccusationVote EnclaveEvent { payload: AccusationVote(AccusationVote { e3_id: E3id { id: "0", chain_id: 1 }, accusation_id: [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162], voter: 0xb1dd9c7aceacd1ae4290e5e16ea815bf2a1de5db, agrees: true, data_hash: [210, 78, 135, 109, 10, 218, 242, 29, 169, 223, 53, 18, 48, 165, 220, 229, 35, 42, 143, 5, 68, 40, 172, 254, 56, 129, 74, 81, 47, 152, 100, 185], signature: [112, 228, 150, 215, 98, 127, 202, 236, 39, 111, 73, 150, 228, 37, 20, 38, 112, 38, 120, 53, 27, 51, 19, 147, 195, 50, 201, 222, 250, 231, 255, 242, 104, 252, 2, 38, 10, 31, 146, 70, 176, 47, 44, 43, 109, 39, 250, 180, 86, 59, 160, 2, 159, 233, 177, 209, 161, 230, 180, 183, 161, 71, 88, 244, 28] }), ctx: EventContext { id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), causation_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), origin_id: EventId(0x3745e539a1f86828cb8df685bd86cb1d95c7a85f7f23e4866ec38787838c7f41), seq: 30, ts: 32740853050435570120613165239156867, aggregate_id: AggregateId(1), block: None, source: Net } } -2026-03-30T15:40:00.365208Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption -2026-03-30T15:40:00.365405Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3aSkShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.365465Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.371906Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.376951Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption -2026-03-30T15:40:00.377026Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3bESmShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.377049Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.381735Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.386779Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption -2026-03-30T15:40:00.389041Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption -2026-03-30T15:40:00.389070Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.393439Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.395865Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:00.399401Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption -2026-03-30T15:40:00.403209Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption -2026-03-30T15:40:00.403249Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.407599Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.409767Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:00.412275Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.416633Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.420971Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.425302Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.429660Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.434106Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.438465Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.443736Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.450530Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.454934Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.458038Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:00.460221Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.462456Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:00.464638Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.468986Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.471167Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:00.473891Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.476130Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:00.478441Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.481705Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:00.484300Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.486483Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:00.490683Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption -2026-03-30T15:40:00.490760Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3aSkShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.490785Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.495254Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.499804Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.505000Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption -2026-03-30T15:40:00.505074Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 sent bad C3bESmShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.505098Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.510307Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3aSkShareEncryption -2026-03-30T15:40:00.512587Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption -2026-03-30T15:40:00.512614Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.517192Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.519427Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:00.521845Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.524030Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:00.527704Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 for C3bESmShareEncryption -2026-03-30T15:40:00.529933Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption -2026-03-30T15:40:00.529962Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.534861Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.540176Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3aSkShareEncryption -2026-03-30T15:40:00.540266Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB sent bad C3aSkShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.540290Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.545338Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3bESmShareEncryption -2026-03-30T15:40:00.545394Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB sent bad C3bESmShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.545417Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.549739Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.554220Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.559299Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3aSkShareEncryption -2026-03-30T15:40:00.559366Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 sent bad C3aSkShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.559388Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.563748Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.568693Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3bESmShareEncryption -2026-03-30T15:40:00.568755Z  INFO e3_zk_prover::actors::accusation_manager: Quorum reached: 1 votes confirm 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 sent bad C3bESmShareEncryption proof — AccusedFaulted -2026-03-30T15:40:00.568780Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption: 1 for, 0 against — outcome: AccusedFaulted -2026-03-30T15:40:00.573191Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.578100Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3aSkShareEncryption -2026-03-30T15:40:00.580329Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption -2026-03-30T15:40:00.580360Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.585283Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB for C3bESmShareEncryption -2026-03-30T15:40:00.587486Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption -2026-03-30T15:40:00.587508Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.591795Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.596033Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.598206Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:00.601051Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3aSkShareEncryption -2026-03-30T15:40:00.603276Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption -2026-03-30T15:40:00.603301Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3aSkShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.609117Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.611291Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:00.614216Z  INFO e3_zk_prover::actors::accusation_manager: Voting AGREE on accusation against 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 for C3bESmShareEncryption -2026-03-30T15:40:00.616456Z  INFO e3_zk_prover::actors::accusation_manager: Equivocation detected at quorum: 2 unique data hashes among 2 agreeing voters for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption -2026-03-30T15:40:00.616482Z  INFO e3_zk_prover::actors::accusation_manager: Accusation quorum reached for 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 C3bESmShareEncryption: 2 for, 0 against — outcome: Equivocation -2026-03-30T15:40:00.624396Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.641287Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.646422Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.653154Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.659501Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.670092Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.677276Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.681714Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.691283Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.701080Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.704466Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:00.709472Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.714757Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:00.721110Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.725511Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.729526Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:00.734346Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.736539Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:00.738750Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.740940Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:00.743124Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.747341Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:00.751286Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.760296Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.769660Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.779290Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.783754Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.793453Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.801269Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.806591Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.810981Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.821375Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.825801Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:00.830032Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.832251Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:00.836432Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.843500Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.846547Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:00.848768Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.851297Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:00.853601Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.856252Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:00.858464Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.860652Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:00.863183Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.867536Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.872542Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.877329Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.881685Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.886411Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.891679Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.896056Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.902632Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.907297Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.909487Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:00.911658Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.914437Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:00.916680Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.921391Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.923579Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:00.925770Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.927947Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:00.930111Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.932284Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:00.934490Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.936636Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:00.939144Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.943450Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.947738Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.952808Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.957125Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.961413Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.965752Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.971297Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.980497Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.984909Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:00.987116Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:00.989313Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.991503Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:00.993688Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:00.998037Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.000242Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.002453Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.004637Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.006817Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.008994Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.011189Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.013370Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.015879Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.020259Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.024622Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.028944Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.033238Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.037522Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.041788Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.046024Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.050290Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.054575Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.056802Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:01.058998Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.061170Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:01.063340Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.067679Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.069845Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.072020Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.074185Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.076378Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.078540Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.080704Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.082870Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.085349Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.092014Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.099852Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.104241Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.108639Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.113027Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.117393Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.121772Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.126159Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.130558Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.132765Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:01.134955Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.137151Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:01.139343Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.143716Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.145905Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.148100Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.150291Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.152474Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.154659Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.156849Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.159049Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.161630Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.166013Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.170406Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.174777Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.179157Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.183537Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.187913Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.192282Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.196653Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.201037Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.203252Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:01.205448Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.207642Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:01.209835Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.214197Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.216412Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.218668Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.220856Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.223043Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.225223Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.227415Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.229609Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.232101Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.241749Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.248576Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.252926Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.259939Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.269488Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.273862Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.278238Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.282630Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.287052Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.289262Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:01.291454Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.293647Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:01.295829Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.300202Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.302404Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.304855Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.307031Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.309195Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.313439Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.318187Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.320384Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.322939Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.327885Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.339696Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.352073Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.363665Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.370261Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.374612Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.380122Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.385813Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.395804Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.398007Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:01.400187Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.402367Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:01.414207Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.421315Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.423495Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.425680Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.427860Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.430037Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.435696Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.438590Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.440787Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.447324Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.457636Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.462067Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.466468Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.472299Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.481340Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.492040Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.502423Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.512601Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.516974Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.520081Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:01.526000Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.528201Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:01.530387Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.535222Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.540655Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.545652Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.547836Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.553034Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.558323Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.560522Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.562710Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.565233Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.573046Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.582279Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.586645Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.592481Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.598150Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.602517Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.614234Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.618625Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.623000Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.625255Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:01.629223Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.631424Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:01.633643Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.638009Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.640199Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.642392Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.644604Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.648591Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.653885Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.659979Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.663287Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.666273Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.674143Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.681277Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.687063Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.691421Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.695739Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.700068Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.704364Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.708669Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.712966Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.715171Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:01.717338Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.719494Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:01.721685Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.725960Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.728103Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.730247Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.732418Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.734597Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.737352Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.741134Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.743364Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.756243Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.763927Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.768274Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.772588Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.782264Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.787600Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.791913Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.796214Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.806651Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.813570Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.817714Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:01.823635Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.826420Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:01.828750Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.835009Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.837173Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.839338Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.841486Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.849763Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.852327Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.854514Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.856686Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.869356Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.878684Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.888831Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.898019Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.902347Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.907591Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.918680Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.925953Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.930314Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.941596Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.947194Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:01.949585Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.951770Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:01.956380Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.960728Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.962891Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:01.966140Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.970965Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:01.974267Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.979389Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:01.982935Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:01.985109Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:01.987574Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.995168Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:01.999558Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.008298Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.012716Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.017081Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.021653Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.028861Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.033224Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.037652Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.039838Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:02.041994Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.044167Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:02.046341Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.050764Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.052912Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:02.055082Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.057208Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:02.059295Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.061399Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:02.063509Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.065718Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:02.068326Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.072590Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.076934Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.081400Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.085733Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.090189Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.094462Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.098836Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.103086Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.138788Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.148320Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [20, 166, 86, 93, 146, 19, 180, 249, 14, 22, 176, 255, 60, 142, 134, 254, 50, 17, 140, 10, 167, 75, 120, 119, 35, 227, 109, 125, 202, 226, 41, 69] reached committee-size cap — dropping vote -2026-03-30T15:40:02.153335Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0xB1Dd9C7ACEacD1Ae4290e5E16eA815BF2a1dE5DB proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.162094Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [200, 235, 182, 202, 60, 229, 134, 232, 131, 127, 126, 152, 213, 10, 177, 112, 64, 154, 190, 226, 130, 47, 190, 234, 233, 3, 36, 200, 88, 219, 118, 5] reached committee-size cap — dropping vote -2026-03-30T15:40:02.164550Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.169018Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.171192Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [82, 194, 124, 145, 118, 35, 227, 168, 103, 149, 21, 199, 26, 204, 20, 232, 243, 48, 13, 168, 152, 91, 182, 176, 232, 25, 183, 206, 98, 100, 88, 22] reached committee-size cap — dropping vote -2026-03-30T15:40:02.184373Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3aSkShareEncryption — abstaining from vote -2026-03-30T15:40:02.190452Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [69, 80, 116, 66, 184, 62, 192, 30, 144, 15, 5, 87, 204, 215, 19, 171, 173, 153, 175, 6, 24, 184, 242, 150, 27, 11, 22, 78, 33, 202, 132, 203] reached committee-size cap — dropping vote -2026-03-30T15:40:02.203188Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x416C12072630dB2d28Ec98a69E17f2B78fE8ea08 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.208455Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [226, 53, 251, 128, 36, 11, 211, 112, 23, 142, 123, 46, 232, 216, 213, 233, 46, 18, 247, 221, 233, 162, 207, 7, 15, 48, 84, 20, 228, 178, 80, 198] reached committee-size cap — dropping vote -2026-03-30T15:40:02.212362Z  INFO e3_zk_prover::actors::accusation_manager: No local data for accused 0x401eF01B75c9D0C51AC37742e2B6D0f5D03FAe26 proof C3bESmShareEncryption — abstaining from vote -2026-03-30T15:40:02.216071Z  WARN e3_zk_prover::actors::accusation_manager: Buffered votes for unknown accusation [156, 176, 40, 168, 128, 104, 124, 251, 138, 152, 199, 138, 37, 117, 141, 180, 23, 98, 32, 90, 248, 36, 186, 9, 124, 228, 132, 64, 104, 101, 74, 162] reached committee-size cap — dropping vote -2026-03-30T15:40:02.221089Z  INFO e3_test_helpers::ciphernode_system: take took 399.612574958s for count=24, total_timeout=Some(5000s), per_evt_timeout=Some(5000s) ->> ["ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote"] == ["KeyshareCreated", "KeyshareCreated", "KeyshareCreated", "ShareVerificationDispatched", "CommitmentConsistencyCheckRequested", "CommitmentConsistencyCheckComplete", "ComputeRequest", "ComputeResponse", "ProofVerificationPassed", "ProofVerificationPassed", "ProofVerificationPassed", "ShareVerificationComplete", "PkAggregationProofPending", "ComputeRequest", "ComputeResponse", "PkAggregationProofSigned", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "ComputeRequest", "ComputeResponse", "ComputeRequest", "ComputeResponse", "PublicKeyAggregated"] -2026-03-30T15:40:02.221216Z  INFO e3_test_helpers::ciphernode_system: expectation take took 399.612711625s for ["KeyshareCreated", "KeyshareCreated", "KeyshareCreated", "ShareVerificationDispatched", "CommitmentConsistencyCheckRequested", "CommitmentConsistencyCheckComplete", "ComputeRequest", "ComputeResponse", "ProofVerificationPassed", "ProofVerificationPassed", "ProofVerificationPassed", "ShareVerificationComplete", "PkAggregationProofPending", "ComputeRequest", "ComputeResponse", "PkAggregationProofSigned", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "ComputeRequest", "ComputeResponse", "ComputeRequest", "ComputeResponse", "PublicKeyAggregated"] total_timeout=5000s per_evt_timeout=5000s - -thread 'test_trbfv_actor' panicked at crates/test-helpers/src/ciphernode_system.rs:295:9: -assertion `left == right` failed - left: ["ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote", "ProofFailureAccusation", "AccusationVote"] - right: ["KeyshareCreated", "KeyshareCreated", "KeyshareCreated", "ShareVerificationDispatched", "CommitmentConsistencyCheckRequested", "CommitmentConsistencyCheckComplete", "ComputeRequest", "ComputeResponse", "ProofVerificationPassed", "ProofVerificationPassed", "ProofVerificationPassed", "ShareVerificationComplete", "PkAggregationProofPending", "ComputeRequest", "ComputeResponse", "PkAggregationProofSigned", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "DKGRecursiveAggregationComplete", "ComputeRequest", "ComputeResponse", "ComputeRequest", "ComputeResponse", "PublicKeyAggregated"] -note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace -test test_trbfv_actor ... FAILED - -failures: - -failures: - test_trbfv_actor - -test result: FAILED. 2 passed; 1 failed; 2 ignored; 0 measured; 0 filtered out; finished in 409.09s - -error: test failed, to rerun pass `-p e3-tests --test integration` diff --git a/templates/default/logs.txt b/templates/default/logs.txt deleted file mode 100644 index a90a01b91b..0000000000 --- a/templates/default/logs.txt +++ /dev/null @@ -1,2764 +0,0 @@ - -> enclave-example@0.0.0 test:integration /Users/ctrlc03/Documents/zk/enclave/templates/default -> ./scripts/test_integration.sh - -[SERVER] -[SERVER] > enclave-example@0.0.0 dev:server /Users/ctrlc03/Documents/zk/enclave/templates/default -[SERVER] > ./scripts/dev_server.sh -[SERVER] -[CIPHER] -[CIPHER] > enclave-example@0.0.0 dev:ciphernodes /Users/ctrlc03/Documents/zk/enclave/templates/default -[CIPHER] > ./scripts/dev_ciphernodes.sh -[CIPHER] -[PROGRAM] -[PROGRAM] > enclave-example@0.0.0 dev:program /Users/ctrlc03/Documents/zk/enclave/templates/default -[PROGRAM] > ./scripts/dev_program.sh -[PROGRAM] -[SERVER] Waiting for evm node... -[CIPHER] Waiting for local evm node... -[PROGRAM] enclave rev = f586cfda2 -[PROGRAM] Waiting on ciphernodes to be ready... -[SERVER] Waiting for contracts to be deployed... -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Wallet key has been successfully stored and encrypted. -[CIPHER] Setting up ZK prover... -[CIPHER] Setting up ZK prover... -[CIPHER] -[CIPHER] target bb version: 3.0.0-nightly.20260102 -[CIPHER] target circuits version: 0.1.15 -[CIPHER] -[CIPHER] ZK prover is already set up and up to date. -[CIPHER] bb version: 3.0.0-nightly.20260102 -[CIPHER] circuits version: 0.1.15 -[CIPHER] Use --force to reinstall. -[CIPHER] 2026-04-01T13:41:47.705886Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] 2026-04-01T13:41:47.711685Z  INFO execute:execute: actix_server::builder: starting 1 workers -[CIPHER] 2026-04-01T13:41:47.711732Z  INFO execute:execute: actix_server::server: Actix runtime found; starting in Actix runtime -[CIPHER] 2026-04-01T13:41:47.711750Z  INFO execute:execute: actix_server::server: starting service: "actix-web-service-127.0.0.1:13415", workers: 1, listening on: 127.0.0.1:13415 -[CIPHER] [cn5] 2026-04-01T13:41:47.715865Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [cn3] 2026-04-01T13:41:47.715902Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] ___ ___ ___ ___ ___ -[CIPHER] [cn3] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [cn3] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [cn3] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [cn3] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [cn3] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [cn3] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [cn3] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [cn3] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [cn3] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [cn3] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn3] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn3] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] ___ ___ ___ ___ ___ -[CIPHER] [cn5] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [cn5] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [cn5] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [cn5] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [cn5] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [cn5] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [cn5] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [cn5] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [cn5] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [cn5] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn5] -[CIPHER] [cn1] 2026-04-01T13:41:47.716537Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] ___ ___ ___ ___ ___ -[CIPHER] [cn1] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [cn1] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [cn1] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [cn1] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [cn1] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [cn1] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [cn1] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [cn1] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [cn1] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [cn1] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn1] -[CIPHER] [cn2] 2026-04-01T13:41:47.716756Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] ___ ___ ___ ___ ___ -[CIPHER] [cn2] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [cn2] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [cn2] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [cn2] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [cn2] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [cn2] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [cn2] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [cn2] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [cn2] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [cn2] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [cn2] -[CIPHER] [ag] 2026-04-01T13:41:47.716856Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] ___ ___ ___ ___ ___ -[CIPHER] [ag] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [ag] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [ag] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [ag] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [ag] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [ag] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [ag] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [ag] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [cn4] 2026-04-01T13:41:47.718183Z  INFO enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] /\__\ /\ \ /\__\ /\ \ ___ /\__\ -[CIPHER] [cn4] /:/ _/_ \:\ \ /:/ / /::\ \ /\ \ /:/ _/_ -[CIPHER] [cn4] /:/ /:/ _/_ _____\:\ \ /:/ / ___ ___ ___ /:/ /::\ \ \:\ \ /:/ /:/ _/_ -[CIPHER] [cn4] \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\ \ /:/ / \:\/:/ \/__/ /\ \ |:| | \:\/:/ /:/ / -[CIPHER] [cn4] \::/_/:/ / \:\ \ \:\ /:/ / \:\ /:/ / \::/__/ \:\ \|:| | \::/_/:/ / -[CIPHER] [cn4] \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \ \:\__|:|__| \:\/:/ / -[CIPHER] [cn4] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [ag] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [ag] \::/ / \:\__\ \::/ / \::/ / \:\__\ \::::/__/ \::/ / -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [ag] -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn4] ___ ___ ___ ___ ___ -[CIPHER] [cn4] /:/ /\__\ \:\ \ /:/ / /:/\:\ \ \:\ \ /:/ /\__\ -[CIPHER] [cn4] /:/_/:/ /\__\ /::::::::\__\ /:/__/ /\__\ /\ \ /\__\ /:/_/:/\:\__\ ___ \:\__\ /:/_/:/ /\__\ -[CIPHER] [cn4] \/__/ \/__/ \/__/ \/__/ \/__/ ~~~~ \/__/ -[CIPHER] [cn4] -[CIPHER] [cn4] -[CIPHER] [cn2] 2026-04-01T13:41:47.764538Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/db" -[CIPHER] [cn2] 2026-04-01T13:41:47.768144Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.0") -[CIPHER] [cn2] 2026-04-01T13:41:47.768198Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn2] 2026-04-01T13:41:47.768215Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.0/00000000000000000000.index" -[CIPHER] [cn1] 2026-04-01T13:41:47.768290Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/db" -[CIPHER] [cn4] 2026-04-01T13:41:47.769968Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/db" -[CIPHER] [cn1] 2026-04-01T13:41:47.772536Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.31337") -[CIPHER] [cn4] 2026-04-01T13:41:47.772632Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.31337") -[CIPHER] [cn4] 2026-04-01T13:41:47.772676Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn4] 2026-04-01T13:41:47.772682Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.31337/00000000000000000000.index" -[CIPHER] [cn1] 2026-04-01T13:41:47.772682Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn1] 2026-04-01T13:41:47.772698Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.31337/00000000000000000000.index" -[CIPHER] [cn5] 2026-04-01T13:41:47.772796Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/db" -[CIPHER] [cn3] 2026-04-01T13:41:47.772858Z  INFO execute:app: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/db" -[CIPHER] [cn2] 2026-04-01T13:41:47.775778Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.31337") -[CIPHER] [cn2] 2026-04-01T13:41:47.775885Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn2] 2026-04-01T13:41:47.775892Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/log.31337/00000000000000000000.index" -[CIPHER] [cn3] 2026-04-01T13:41:47.775782Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.0") -[CIPHER] [cn3] 2026-04-01T13:41:47.775911Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.0/00000000000000000000.index" -[CIPHER] [cn5] 2026-04-01T13:41:47.775888Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [ag] 2026-04-01T13:41:47.775836Z  INFO execute: e3_data::sled_utils: recovered db st: "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/db" -[CIPHER] [cn3] 2026-04-01T13:41:47.775903Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn5] 2026-04-01T13:41:47.775895Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.31337/00000000000000000000.index" -[CIPHER] [cn5] 2026-04-01T13:41:47.775781Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.31337") -[CIPHER] [cn4] 2026-04-01T13:41:47.778778Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.0") -[CIPHER] [ag] 2026-04-01T13:41:47.778789Z  INFO execute: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.31337") -[CIPHER] [cn4] 2026-04-01T13:41:47.778858Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn4] 2026-04-01T13:41:47.778863Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/log.0/00000000000000000000.index" -[CIPHER] [ag] 2026-04-01T13:41:47.778926Z  INFO execute: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [ag] 2026-04-01T13:41:47.778964Z  INFO execute: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.31337/00000000000000000000.index" -[CIPHER] [cn3] 2026-04-01T13:41:47.781217Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.31337") -[CIPHER] [cn3] 2026-04-01T13:41:47.781264Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn3] 2026-04-01T13:41:47.781267Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/log.31337/00000000000000000000.index" -[CIPHER] [cn4] 2026-04-01T13:41:47.781266Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [cn4] 2026-04-01T13:41:47.781306Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn4/db" -[CIPHER] [cn4] from_sled_store_with_buffer... -[CIPHER] [cn2] 2026-04-01T13:41:47.781315Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [cn2] 2026-04-01T13:41:47.781330Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn2/db" -[CIPHER] [cn2] from_sled_store_with_buffer... -[CIPHER] [cn1] 2026-04-01T13:41:47.781338Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.0") -[CIPHER] [cn1] 2026-04-01T13:41:47.781459Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn1] 2026-04-01T13:41:47.781467Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/log.0/00000000000000000000.index" -[CIPHER] [cn5] 2026-04-01T13:41:47.781495Z  INFO execute:app: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.0") -[CIPHER] [cn5] 2026-04-01T13:41:47.781531Z  INFO execute:app: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [cn5] 2026-04-01T13:41:47.781534Z  INFO execute:app: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/log.0/00000000000000000000.index" -[CIPHER] [cn3] 2026-04-01T13:41:47.781743Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [cn3] 2026-04-01T13:41:47.781764Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn3/db" -[CIPHER] [cn3] from_sled_store_with_buffer... -[CIPHER] [cn4] 2026-04-01T13:41:47.781812Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [cn2] 2026-04-01T13:41:47.781834Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [ag] 2026-04-01T13:41:47.781880Z  INFO execute: commitlog: Opening log in directory Some("/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.0") -[CIPHER] [cn5] 2026-04-01T13:41:47.781968Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [ag] 2026-04-01T13:41:47.782000Z  INFO execute: commitlog::file_set: Starting new index and segment at offset 0 -[CIPHER] [ag] 2026-04-01T13:41:47.782005Z  INFO execute: commitlog::index: Creating index file "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/log.0/00000000000000000000.index" -[CIPHER] [cn5] 2026-04-01T13:41:47.782015Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn5/db" -[CIPHER] [cn3] 2026-04-01T13:41:47.782076Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [cn5] 2026-04-01T13:41:47.782217Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [cn5] from_sled_store_with_buffer... -[CIPHER] [cn2] 2026-04-01T13:41:47.782428Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [cn4] 2026-04-01T13:41:47.782593Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [cn3] 2026-04-01T13:41:47.782730Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [cn5] 2026-04-01T13:41:47.782766Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [cn3] 2026-04-01T13:41:47.787882Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [cn3] 2026-04-01T13:41:47.787892Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [cn4] 2026-04-01T13:41:47.787883Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [cn4] 2026-04-01T13:41:47.787892Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [cn5] 2026-04-01T13:41:47.787882Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [cn5] 2026-04-01T13:41:47.787892Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [cn2] 2026-04-01T13:41:47.787883Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [cn2] 2026-04-01T13:41:47.787893Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [cn5] 2026-04-01T13:41:47.788099Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [cn4] 2026-04-01T13:41:47.788124Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [cn3] 2026-04-01T13:41:47.788140Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [cn2] 2026-04-01T13:41:47.788149Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [cn1] 2026-04-01T13:41:47.788267Z  INFO execute:app: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [cn1] 2026-04-01T13:41:47.788286Z  INFO execute:app: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/cn1/db" -[CIPHER] [cn1] from_sled_store_with_buffer... -[CIPHER] [cn4] 2026-04-01T13:41:47.788366Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [cn5] 2026-04-01T13:41:47.788367Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [cn3] 2026-04-01T13:41:47.788451Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [cn2] 2026-04-01T13:41:47.788451Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [cn1] 2026-04-01T13:41:47.788813Z  INFO execute:app: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [cn1] 2026-04-01T13:41:47.788922Z  INFO execute:app:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [cn1] 2026-04-01T13:41:47.793099Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [cn1] 2026-04-01T13:41:47.793120Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [cn1] 2026-04-01T13:41:47.793176Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [cn1] 2026-04-01T13:41:47.793354Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [ag] 2026-04-01T13:41:47.798809Z  INFO execute: e3_events::snapshot_buffer::snapshot_buffer: spawning SnapshotBuffer... -[CIPHER] [ag] 2026-04-01T13:41:47.798845Z  INFO execute: e3_data::sled_store: Starting SledStore with "/Users/ctrlc03/Documents/zk/enclave/templates/default/.enclave/data/ag/db" -[CIPHER] [ag] from_sled_store_with_buffer... -[CIPHER] [ag] 2026-04-01T13:41:47.799308Z  INFO execute: e3_sortition::ciphernode_selector: CiphernodeSelector listening! -[CIPHER] [ag] 2026-04-01T13:41:47.799507Z  INFO execute:sortition_attach: e3_sortition::sortition: Sortition actor started -[CIPHER] [ag] 2026-04-01T13:41:47.804017Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: CiphernodeRegistrySolWriter attached for publishing committees -[CIPHER] [ag] 2026-04-01T13:41:47.804030Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Attaching CommitteeFinalizer for score sortition -[CIPHER] [ag] 2026-04-01T13:41:47.804133Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: SlashingManagerSolWriter attached for fault submission -[CIPHER] [ag] 2026-04-01T13:41:47.804185Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up FheExtension -[CIPHER] [ag] 2026-04-01T13:41:47.804231Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up PublicKeyAggregationExtension -[CIPHER] [ag] 2026-04-01T13:41:47.804234Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up multithread actor... -[CIPHER] [ag] 2026-04-01T13:41:47.804418Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Multithread actor with ZK prover -[CIPHER] [ag] 2026-04-01T13:41:47.804474Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors for aggregator -[CIPHER] [ag] 2026-04-01T13:41:47.804656Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdPlaintextAggregatorExtension -[CIPHER] [ag] 2026-04-01T13:41:47.804662Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [ag] 2026-04-01T13:41:47.804666Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [ag] 2026-04-01T13:41:47.804664Z  INFO execute: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [ag] 2026-04-01T13:41:47.805074Z  INFO execute: e3_net: Found keypair in repository -[CIPHER] [ag] 2026-04-01T13:41:47.808838Z  INFO execute: libp2p_swarm: local_peer_id=12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By -[CIPHER] [ag] 2026-04-01T13:41:47.809026Z  INFO execute: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [ag] 2026-04-01T13:41:47.809961Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [ag] 2026-04-01T13:41:47.809970Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [ag] 2026-04-01T13:41:47.809986Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [ag] 2026-04-01T13:41:47.809987Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [ag] 2026-04-01T13:41:47.809989Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [ag] 2026-04-01T13:41:47.809990Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [ag] 2026-04-01T13:41:47.810637Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [ag] 2026-04-01T13:41:47.810676Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [ag] 2026-04-01T13:41:47.810679Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [ag] 2026-04-01T13:41:47.810680Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [ag] 2026-04-01T13:41:47.810681Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [ag] 2026-04-01T13:41:47.810693Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [ag] 2026-04-01T13:41:47.810746Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [ag] 2026-04-01T13:41:47.810752Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [ag] 2026-04-01T13:41:47.810754Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [ag] 2026-04-01T13:41:47.810759Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [ag] 2026-04-01T13:41:47.811504Z  INFO execute: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [ag] 2026-04-01T13:41:47.811509Z  INFO execute: e3_sync::sync: Loading EventStore events... -[CIPHER] [ag] 2026-04-01T13:41:47.811555Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending -[CIPHER] [ag] 2026-04-01T13:41:47.811569Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending -[CIPHER] [ag] 2026-04-01T13:41:47.811569Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [ag] 2026-04-01T13:41:47.811602Z  INFO execute: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [ag] 2026-04-01T13:41:47.811605Z  INFO execute: e3_sync::sync: Replaying events to actors... -[CIPHER] [ag] 2026-04-01T13:41:47.811606Z  INFO execute: e3_sync::sync: Events replayed. -[CIPHER] [ag] 2026-04-01T13:41:47.811607Z  INFO execute: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [ag] 2026-04-01T13:41:47.814512Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x3ba7d58e39464e2d139fad532821aa70891cc1604263269a6e5773e472af1449), causation_id: EventId(0x3ba7d58e39464e2d139fad532821aa70891cc1604263269a6e5773e472af1449), origin_id: EventId(0x3ba7d58e39464e2d139fad532821aa70891cc1604263269a6e5773e472af1449), seq: 1, ts: 32743909814206613301695672538771805, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:41:47.815899Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [ag] 2026-04-01T13:41:47.815930Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [ag] 2026-04-01T13:41:47.815994Z  INFO execute: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [ag] 2026-04-01T13:41:47.816003Z  INFO execute: e3_sync::sync: Waiting until NetReady... -[CIPHER] [ag] 2026-04-01T13:41:47.816000Z  INFO execute: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [ag] 2026-04-01T13:41:47.819530Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn3] 2026-04-01T13:41:47.821177Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -[CIPHER] [cn3] 2026-04-01T13:41:47.821210Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -[CIPHER] [cn3] 2026-04-01T13:41:47.821268Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [cn3] 2026-04-01T13:41:47.821273Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [cn3] 2026-04-01T13:41:47.821277Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [cn3] 2026-04-01T13:41:47.821366Z  INFO execute:app: e3_net: Found keypair in repository -[CIPHER] [cn2] 2026-04-01T13:41:47.821886Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -[CIPHER] [cn2] 2026-04-01T13:41:47.821896Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -[CIPHER] [cn2] 2026-04-01T13:41:47.821931Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [cn2] 2026-04-01T13:41:47.821934Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [cn2] 2026-04-01T13:41:47.821935Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [cn2] 2026-04-01T13:41:47.821988Z  INFO execute:app: e3_net: Found keypair in repository -[CIPHER] [cn5] 2026-04-01T13:41:47.822404Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -[CIPHER] [cn5] 2026-04-01T13:41:47.822424Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -[CIPHER] [cn3] 2026-04-01T13:41:47.822416Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd -[CIPHER] [cn3] 2026-04-01T13:41:47.822488Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [cn5] 2026-04-01T13:41:47.822494Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [cn5] 2026-04-01T13:41:47.822499Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [cn5] 2026-04-01T13:41:47.822502Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [cn5] 2026-04-01T13:41:47.822643Z  INFO execute:app: e3_net: Found keypair in repository -[CIPHER] [cn4] 2026-04-01T13:41:47.822687Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -[CIPHER] [cn4] 2026-04-01T13:41:47.822718Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -[CIPHER] [cn3] 2026-04-01T13:41:47.822715Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [cn3] 2026-04-01T13:41:47.822717Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn3] 2026-04-01T13:41:47.822719Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn3] 2026-04-01T13:41:47.822720Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn3] 2026-04-01T13:41:47.822721Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn3] 2026-04-01T13:41:47.822721Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.822661Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr -[CIPHER] [cn2] 2026-04-01T13:41:47.822764Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [cn4] 2026-04-01T13:41:47.822751Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [cn4] 2026-04-01T13:41:47.822753Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [cn4] 2026-04-01T13:41:47.822755Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [cn4] 2026-04-01T13:41:47.822798Z  INFO execute:app: e3_net: Found keypair in repository -[CIPHER] [cn3] 2026-04-01T13:41:47.822804Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn3] 2026-04-01T13:41:47.822814Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn3] 2026-04-01T13:41:47.822816Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn3] 2026-04-01T13:41:47.822817Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn3] 2026-04-01T13:41:47.822818Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn3] 2026-04-01T13:41:47.822824Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-04-01T13:41:47.822839Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-04-01T13:41:47.822842Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-04-01T13:41:47.822846Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-04-01T13:41:47.822849Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn2] 2026-04-01T13:41:47.823139Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [cn2] 2026-04-01T13:41:47.823148Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.823152Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.823154Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.823155Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.823157Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.823288Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.823305Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.823309Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.823312Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.823314Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.823330Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn2] 2026-04-01T13:41:47.823367Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-04-01T13:41:47.823328Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH -[CIPHER] [cn4] 2026-04-01T13:41:47.823381Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [cn3] 2026-04-01T13:41:47.823354Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [cn3] 2026-04-01T13:41:47.823358Z  INFO execute:app: e3_sync::sync: Loading EventStore events... -[CIPHER] [cn3] 2026-04-01T13:41:47.823381Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending -[CIPHER] [cn3] 2026-04-01T13:41:47.823385Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending -[CIPHER] [cn3] 2026-04-01T13:41:47.823386Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [cn3] 2026-04-01T13:41:47.823397Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [cn3] 2026-04-01T13:41:47.823399Z  INFO execute:app: e3_sync::sync: Replaying events to actors... -[CIPHER] [cn3] 2026-04-01T13:41:47.823400Z  INFO execute:app: e3_sync::sync: Events replayed. -[CIPHER] [cn3] 2026-04-01T13:41:47.823401Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [cn2] 2026-04-01T13:41:47.823373Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn2] 2026-04-01T13:41:47.823380Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn2] 2026-04-01T13:41:47.823386Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-04-01T13:41:47.823596Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [cn4] 2026-04-01T13:41:47.823599Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn4] 2026-04-01T13:41:47.823601Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn4] 2026-04-01T13:41:47.823602Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn4] 2026-04-01T13:41:47.823603Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn4] 2026-04-01T13:41:47.823604Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn4] 2026-04-01T13:41:47.823689Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn4] 2026-04-01T13:41:47.823698Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn4] 2026-04-01T13:41:47.823701Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn4] 2026-04-01T13:41:47.823702Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn4] 2026-04-01T13:41:47.823703Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn4] 2026-04-01T13:41:47.823708Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-04-01T13:41:47.823721Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-04-01T13:41:47.823725Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-04-01T13:41:47.823728Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-04-01T13:41:47.823732Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn5] 2026-04-01T13:41:47.823740Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 -[CIPHER] [cn5] 2026-04-01T13:41:47.823815Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [cn5] 2026-04-01T13:41:47.824016Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [cn5] 2026-04-01T13:41:47.824018Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn5] 2026-04-01T13:41:47.824020Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn5] 2026-04-01T13:41:47.824021Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn5] 2026-04-01T13:41:47.824022Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn5] 2026-04-01T13:41:47.824023Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn5] 2026-04-01T13:41:47.824077Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9201/quic-v1 -[CIPHER] [cn5] 2026-04-01T13:41:47.824086Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn5] 2026-04-01T13:41:47.824088Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn5] 2026-04-01T13:41:47.824090Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn5] 2026-04-01T13:41:47.824091Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn5] 2026-04-01T13:41:47.824098Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn5] 2026-04-01T13:41:47.824112Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn5] 2026-04-01T13:41:47.824115Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn5] 2026-04-01T13:41:47.824118Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn5] 2026-04-01T13:41:47.824126Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn4] 2026-04-01T13:41:47.824235Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [cn4] 2026-04-01T13:41:47.824238Z  INFO execute:app: e3_sync::sync: Loading EventStore events... -[CIPHER] [cn4] 2026-04-01T13:41:47.824251Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending -[CIPHER] [cn4] 2026-04-01T13:41:47.824257Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending -[CIPHER] [cn4] 2026-04-01T13:41:47.824258Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [cn4] 2026-04-01T13:41:47.824265Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [cn4] 2026-04-01T13:41:47.824267Z  INFO execute:app: e3_sync::sync: Replaying events to actors... -[CIPHER] [cn4] 2026-04-01T13:41:47.824268Z  INFO execute:app: e3_sync::sync: Events replayed. -[CIPHER] [cn4] 2026-04-01T13:41:47.824269Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [cn2] 2026-04-01T13:41:47.825094Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 1) -[CIPHER] [cn5] 2026-04-01T13:41:47.825150Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 1) -[CIPHER] [cn5] 2026-04-01T13:41:47.825246Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn5] 2026-04-01T13:41:47.825263Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [cn5] 2026-04-01T13:41:47.825266Z  INFO execute:app: e3_sync::sync: Loading EventStore events... -[CIPHER] [cn5] 2026-04-01T13:41:47.825319Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending -[CIPHER] [cn5] 2026-04-01T13:41:47.825326Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending -[CIPHER] [cn5] 2026-04-01T13:41:47.825328Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [cn5] 2026-04-01T13:41:47.825343Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [cn5] 2026-04-01T13:41:47.825347Z  INFO execute:app: e3_sync::sync: Replaying events to actors... -[CIPHER] [cn5] 2026-04-01T13:41:47.825349Z  INFO execute:app: e3_sync::sync: Events replayed. -[CIPHER] [cn5] 2026-04-01T13:41:47.825351Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [cn4] 2026-04-01T13:41:47.825265Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x69b468b97cebf991f73a56716fb577e24476444af4fa6ac880a8954b87db73e3), causation_id: EventId(0x69b468b97cebf991f73a56716fb577e24476444af4fa6ac880a8954b87db73e3), origin_id: EventId(0x69b468b97cebf991f73a56716fb577e24476444af4fa6ac880a8954b87db73e3), seq: 1, ts: 32743909814440149081668839179689729, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:41:47.825277Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x370eed624099920f520bcd739d935bbc3dbbc451f6ea334edcbb2f88b7a3348a), causation_id: EventId(0x370eed624099920f520bcd739d935bbc3dbbc451f6ea334edcbb2f88b7a3348a), origin_id: EventId(0x370eed624099920f520bcd739d935bbc3dbbc451f6ea334edcbb2f88b7a3348a), seq: 1, ts: 32743909814424137307812858345785185, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-04-01T13:41:47.825471Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xd77f27edc2ea57e16f8266f1f11e494cb349fa84442fc47a9427174799398769), causation_id: EventId(0xd77f27edc2ea57e16f8266f1f11e494cb349fa84442fc47a9427174799398769), origin_id: EventId(0xd77f27edc2ea57e16f8266f1f11e494cb349fa84442fc47a9427174799398769), seq: 1, ts: 32743909814460145352244740362534981, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:41:47.825617Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ThresholdKeyshareExtension -[CIPHER] [cn1] 2026-04-01T13:41:47.825631Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up ZK actors -[CIPHER] [cn1] 2026-04-01T13:41:47.825692Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up AccusationManagerExtension -[CIPHER] [cn1] 2026-04-01T13:41:47.825696Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: Setting up CommitmentConsistencyCheckerExtension -[CIPHER] [cn1] 2026-04-01T13:41:47.825699Z  INFO execute:app: e3_ciphernode_builder::ciphernode_builder: E3Router building... -[CIPHER] [cn5] 2026-04-01T13:41:47.825785Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [cn5] 2026-04-01T13:41:47.825806Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [cn1] 2026-04-01T13:41:47.825800Z  INFO execute:app: e3_net: Found keypair in repository -[CIPHER] [cn5] 2026-04-01T13:41:47.825857Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [cn5] 2026-04-01T13:41:47.825864Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [cn5] 2026-04-01T13:41:47.825868Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... -[CIPHER] [cn5] 2026-04-01T13:41:47.826199Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn1] 2026-04-01T13:41:47.826410Z  INFO execute:app: libp2p_swarm: local_peer_id=12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 -[CIPHER] [cn1] 2026-04-01T13:41:47.826463Z  INFO execute:app: e3_sync::sync: Loading snapshot metadata... -[CIPHER] [cn1] 2026-04-01T13:41:47.826649Z  INFO e3_net::net_interface: Found 5 peer(s) to dial: -[CIPHER] [cn1] 2026-04-01T13:41:47.826652Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn1] 2026-04-01T13:41:47.826655Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn1] 2026-04-01T13:41:47.826655Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn1] 2026-04-01T13:41:47.826656Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn2] 2026-04-01T13:41:47.826658Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [cn2] 2026-04-01T13:41:47.826663Z  INFO execute:app: e3_sync::sync: Loading EventStore events... -[CIPHER] [cn2] 2026-04-01T13:41:47.826698Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 2) -[CIPHER] [cn2] 2026-04-01T13:41:47.826725Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 3) -[CIPHER] [cn1] 2026-04-01T13:41:47.826723Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9202/quic-v1 -[CIPHER] [cn1] 2026-04-01T13:41:47.826732Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn1] 2026-04-01T13:41:47.826734Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9204/quic-v1 -[CIPHER] [cn1] 2026-04-01T13:41:47.826735Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9205/quic-v1 -[CIPHER] [cn1] 2026-04-01T13:41:47.826736Z  INFO e3_net::dialer: Now dialing in to /ip4/127.0.0.1/udp/9206/quic-v1 -[CIPHER] [cn1] 2026-04-01T13:41:47.826742Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn1] 2026-04-01T13:41:47.826654Z  INFO e3_net::net_interface: -> /ip4/127.0.0.1/udp/9203/quic-v1 -[CIPHER] [cn3] 2026-04-01T13:41:47.826738Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 1) -[CIPHER] [cn1] 2026-04-01T13:41:47.826757Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn1] 2026-04-01T13:41:47.826760Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn1] 2026-04-01T13:41:47.826762Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn1] 2026-04-01T13:41:47.826764Z  INFO e3_utils::helpers: take has been called! -[CIPHER] [cn3] 2026-04-01T13:41:47.826767Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2) -[CIPHER] [cn2] 2026-04-01T13:41:47.826862Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn2] 2026-04-01T13:41:47.826885Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 1 pending -[CIPHER] [cn2] 2026-04-01T13:41:47.826889Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 0 pending -[CIPHER] [cn2] 2026-04-01T13:41:47.826890Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [ag] 2026-04-01T13:41:47.826943Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 1) -[CIPHER] [ag] 2026-04-01T13:41:47.826973Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2) -[CIPHER] [ag] 2026-04-01T13:41:47.826995Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 3) -[CIPHER] [ag] 2026-04-01T13:41:47.827015Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 4) -[CIPHER] [cn1] 2026-04-01T13:41:47.827126Z  INFO execute:app: e3_sync::sync: Snapshot metadata loaded for 2 aggregates. -[CIPHER] [cn1] 2026-04-01T13:41:47.827144Z  INFO execute:app: e3_sync::sync: Loading EventStore events... -[CIPHER] [cn1] 2026-04-01T13:41:47.827163Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(0), 0 pending -[CIPHER] [cn1] 2026-04-01T13:41:47.827164Z  INFO e3_events::eventstore_router: All aggregates fulfilled, sending response -[CIPHER] [cn1] 2026-04-01T13:41:47.827161Z  INFO e3_events::eventstore_router: Received response for aggregate AggregateId(31337), 1 pending -[CIPHER] [ag] 2026-04-01T13:41:47.827174Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn1] 2026-04-01T13:41:47.827184Z  INFO execute:app: e3_sync::sync: Events replayed. -[CIPHER] [cn1] 2026-04-01T13:41:47.827237Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [cn1] 2026-04-01T13:41:47.827180Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [cn1] 2026-04-01T13:41:47.827182Z  INFO execute:app: e3_sync::sync: Replaying events to actors... -[CIPHER] [cn5] 2026-04-01T13:41:47.827313Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 2) -[CIPHER] [cn3] 2026-04-01T13:41:47.827370Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn3] 2026-04-01T13:41:47.827380Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [cn3] 2026-04-01T13:41:47.827392Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [cn1] 2026-04-01T13:41:47.827331Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0xea938080cbe155e39ec2a8e279af6f70c50d04b97a70442758066f283d5c283c), causation_id: EventId(0xea938080cbe155e39ec2a8e279af6f70c50d04b97a70442758066f283d5c283c), origin_id: EventId(0xea938080cbe155e39ec2a8e279af6f70c50d04b97a70442758066f283d5c283c), seq: 1, ts: 32743909814495286399705154669672764, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:41:47.827594Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [cn3] 2026-04-01T13:41:47.827610Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [cn3] 2026-04-01T13:41:47.827615Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... -[CIPHER] [cn1] 2026-04-01T13:41:47.827959Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 1) -[CIPHER] [cn1] 2026-04-01T13:41:47.828362Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn1] 2026-04-01T13:41:47.828368Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [cn1] 2026-04-01T13:41:47.828389Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 2) -[CIPHER] [cn1] 2026-04-01T13:41:47.828406Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [cn4] 2026-04-01T13:41:47.828417Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 1) -[CIPHER] [cn1] 2026-04-01T13:41:47.828446Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [cn1] 2026-04-01T13:41:47.828451Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [cn4] 2026-04-01T13:41:47.828445Z  INFO e3_net::net_interface: Peer connected: 12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By (total: 2) -[CIPHER] [cn4] 2026-04-01T13:41:47.828470Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 3) -[CIPHER] [cn1] 2026-04-01T13:41:47.828453Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... -[CIPHER] [cn4] 2026-04-01T13:41:47.828502Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 4) -[CIPHER] [cn3] 2026-04-01T13:41:47.828730Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 3) -[CIPHER] [cn2] 2026-04-01T13:41:47.828780Z  INFO execute:app: e3_sync::sync: 0 EventStore events loaded. -[CIPHER] [cn2] 2026-04-01T13:41:47.828784Z  INFO execute:app: e3_sync::sync: Replaying events to actors... -[CIPHER] [cn2] 2026-04-01T13:41:47.828785Z  INFO execute:app: e3_sync::sync: Events replayed. -[CIPHER] [cn2] 2026-04-01T13:41:47.828786Z  INFO execute:app: e3_sync::sync: Loading historical blockchain events... -[CIPHER] [cn1] 2026-04-01T13:41:47.828783Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn2] 2026-04-01T13:41:47.828859Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 4) -[CIPHER] [cn4] 2026-04-01T13:41:47.828975Z  INFO e3_net::net_sync_manager: NetSyncManager: first peer connected -[CIPHER] [cn4] 2026-04-01T13:41:47.828986Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [cn4] 2026-04-01T13:41:47.828994Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [cn4] 2026-04-01T13:41:47.829017Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [cn4] 2026-04-01T13:41:47.829022Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [cn4] 2026-04-01T13:41:47.829024Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... -[CIPHER] [cn2] 2026-04-01T13:41:47.829063Z  INFO e3_events::eventbus: >>> HistoricalEvmSyncStart EnclaveEvent { payload: HistoricalEvmSyncStart(HistoricalEvmSyncStart { evm_config: EvmEventConfig { config: {31337: EvmEventConfigChain { deploy_block: 6 }} }, sender: Some(Recipient { /* omitted */ }) }), ctx: EventContext { id: EventId(0x817090236dc711836b8e6a9400061a66b9e0b0f233c8b70be930bb210be2bb82), causation_id: EventId(0x817090236dc711836b8e6a9400061a66b9e0b0f233c8b70be930bb210be2bb82), origin_id: EventId(0x817090236dc711836b8e6a9400061a66b9e0b0f233c8b70be930bb210be2bb82), seq: 1, ts: 32743909814523491471393858182469861, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-04-01T13:41:47.829544Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn1] 2026-04-01T13:41:47.829570Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 3) -[CIPHER] [cn5] 2026-04-01T13:41:47.829665Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 3) -[CIPHER] [cn5] 2026-04-01T13:41:47.829714Z  INFO e3_net::net_interface: Peer connected: 12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd (total: 4) -[CIPHER] [cn2] 2026-04-01T13:41:47.829858Z  INFO evm_interface: e3_evm::evm_read_interface: Historical sync succeeded chain_id=31337 -[CIPHER] [cn2] 2026-04-01T13:41:47.829866Z  INFO e3_evm::evm_router: Sending event(4) to fallback -[CIPHER] [cn2] 2026-04-01T13:41:47.829887Z  INFO execute:app: e3_sync::sync: Received historical events from chain chain_id=31337 events=0 chains_received=1 chains_expected=1 -[CIPHER] [cn2] 2026-04-01T13:41:47.829892Z  INFO execute:app: e3_sync::sync: 0 historical blockchain events loaded. -[CIPHER] [cn2] 2026-04-01T13:41:47.829893Z  INFO execute:app: e3_sync::sync: Waiting until NetReady... -[CIPHER] [cn1] 2026-04-01T13:41:47.830019Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr (total: 4) -[CIPHER] [ag] 2026-04-01T13:41:47.830021Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 5) -[CIPHER] [cn3] 2026-04-01T13:41:47.830197Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH (total: 4) -[CIPHER] [cn3] 2026-04-01T13:41:47.830226Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 5) -[CIPHER] [cn2] 2026-04-01T13:41:47.830231Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 5) -[CIPHER] [cn3] 2026-04-01T13:41:47.830411Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn1] 2026-04-01T13:41:47.830423Z  INFO e3_net::net_interface: Peer connected: 12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1 (total: 5) -[CIPHER] [cn5] 2026-04-01T13:41:47.831195Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 5) -[CIPHER] [cn1] 2026-04-01T13:41:47.831276Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [cn1] 2026-04-01T13:41:47.831285Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [cn1] 2026-04-01T13:41:47.831445Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909814569552991345909324478780, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-04-01T13:41:47.831608Z  INFO e3_net::net_interface: Peer connected: 12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3 (total: 5) -[CIPHER] [cn1] 2026-04-01T13:41:47.831769Z  INFO execute:app: e3_sync::sync: NetReady! -[CIPHER] [cn1] 2026-04-01T13:41:47.831773Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [cn1] 2026-04-01T13:41:47.831855Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909814578591895942027004770620, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:41:47.831870Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [cn1] 2026-04-01T13:41:47.831888Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [cn1] 2026-04-01T13:41:47.831889Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [cn1] 2026-04-01T13:41:47.831890Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [cn1] 2026-04-01T13:41:47.831891Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [cn1] 2026-04-01T13:41:47.831906Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [cn1] 2026-04-01T13:41:47.831952Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909814580989972671609246480700, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:41:47.832149Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [cn1] 2026-04-01T13:41:47.832153Z  INFO execute:app: e3_sync::sync: Historical events sorted. -[CIPHER] [cn1] 2026-04-01T13:41:47.832157Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [cn1] 2026-04-01T13:41:47.832158Z  INFO execute:app: e3_sync::sync: Historical events published. -[CIPHER] [cn1] 2026-04-01T13:41:47.832159Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [cn1] 2026-04-01T13:41:47.832161Z  INFO execute:app: e3_sync::sync: Sync finished. -[CIPHER] [cn1] 2026-04-01T13:41:47.832174Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn1/0x70997970C51812dc3A010C7d01b50e0d17dc79C8/12D3KooWD8cqUJbix3qGR7HTwEHZdtkJqADfhSrAjNwVmPR3ZEE3) -[CIPHER] [cn1] 2026-04-01T13:41:47.832155Z  INFO execute:app: e3_sync::sync: Effects enabled -[CIPHER] [cn1] 2026-04-01T13:41:47.832234Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909814585546318457815505729852, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:41:47.832250Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909814585675445666331472591164, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:41:47.832263Z  INFO evm_interface: e3_evm::evm_read_interface: Live event subscription active chain_id=31337 -[CIPHER] [cn1] 2026-04-01T13:41:47.832281Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [cn1] 2026-04-01T13:41:47.832312Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] [ag] 2026-04-01T13:41:48.816008Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [ag] 2026-04-01T13:41:48.816022Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [ag] 2026-04-01T13:41:48.818580Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909832734762857002504406053213, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:41:48.818947Z  INFO execute: e3_sync::sync: NetReady! -[CIPHER] [ag] 2026-04-01T13:41:48.818954Z  INFO execute: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [ag] 2026-04-01T13:41:48.819051Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909832789033178067357906907485, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:41:48.819083Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [ag] 2026-04-01T13:41:48.819100Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [ag] 2026-04-01T13:41:48.819103Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [ag] 2026-04-01T13:41:48.819105Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [ag] 2026-04-01T13:41:48.819108Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [ag] 2026-04-01T13:41:48.819118Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [ag] 2026-04-01T13:41:48.819149Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909832791873976654709177856349, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:41:48.819209Z  INFO execute: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [ag] 2026-04-01T13:41:48.819222Z  INFO execute: e3_sync::sync: Historical events published. -[CIPHER] [ag] 2026-04-01T13:41:48.819227Z  INFO execute: e3_sync::sync: Sync finished. -[CIPHER] [ag] 2026-04-01T13:41:48.819220Z  INFO execute: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [ag] 2026-04-01T13:41:48.819218Z  INFO execute: e3_sync::sync: Effects enabled -[CIPHER] [ag] 2026-04-01T13:41:48.819224Z  INFO execute: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [ag] 2026-04-01T13:41:48.819214Z  INFO execute: e3_sync::sync: Historical events sorted. -[CIPHER] [ag] 2026-04-01T13:41:48.819251Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (ag/0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266/12D3KooWEZiPVmEZkwCFEWYxPL6xts6LnPHRFqsSEDGmt1vQ17By) -[CIPHER] [ag] 2026-04-01T13:41:48.819297Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909832793626417341711585259869, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:41:48.819319Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909832793829331526522390327645, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:41:48.819401Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [ag] 2026-04-01T13:41:48.819427Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] [cn4] 2026-04-01T13:41:48.825186Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [cn4] 2026-04-01T13:41:48.825193Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [cn4] 2026-04-01T13:41:48.825244Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909832903919500158424711831297, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-04-01T13:41:48.825283Z  INFO execute:app: e3_sync::sync: NetReady! -[CIPHER] [cn4] 2026-04-01T13:41:48.825287Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [cn4] 2026-04-01T13:41:48.825314Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909832905690387589500828786433, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-04-01T13:41:48.825335Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [cn4] 2026-04-01T13:41:48.825345Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [cn4] 2026-04-01T13:41:48.825346Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [cn4] 2026-04-01T13:41:48.825348Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [cn4] 2026-04-01T13:41:48.825352Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [cn4] 2026-04-01T13:41:48.825358Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [cn4] 2026-04-01T13:41:48.825388Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909832907092340139102754709249, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn4] 2026-04-01T13:41:48.825416Z  INFO execute:app: e3_sync::sync: Historical events sorted. -[CIPHER] [cn4] 2026-04-01T13:41:48.825422Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [cn4] 2026-04-01T13:41:48.825424Z  INFO execute:app: e3_sync::sync: Historical events published. -[CIPHER] [cn4] 2026-04-01T13:41:48.825427Z  INFO execute:app: e3_sync::sync: Sync finished. -[CIPHER] [cn4] 2026-04-01T13:41:48.825443Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn4/0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65/12D3KooWRmz3JTKHcLMuj95kkRqHkGYYG28bbmGYUYvSQLFE8VpH) -[CIPHER] [cn4] 2026-04-01T13:41:48.825419Z  INFO execute:app: e3_sync::sync: Effects enabled -[CIPHER] [cn4] 2026-04-01T13:41:48.825413Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [cn4] 2026-04-01T13:41:48.825426Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [cn4] 2026-04-01T13:41:48.825475Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909832908033124086861941841665, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-04-01T13:41:48.825494Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909832908199144783525327806209, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-04-01T13:41:48.825532Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [cn4] 2026-04-01T13:41:48.825547Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] [cn5] 2026-04-01T13:41:48.825737Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [cn5] 2026-04-01T13:41:48.825742Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [cn5] 2026-04-01T13:41:48.825797Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909832914046762654891284561989, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-04-01T13:41:48.825857Z  INFO execute:app: e3_sync::sync: NetReady! -[CIPHER] [cn5] 2026-04-01T13:41:48.825862Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [cn5] 2026-04-01T13:41:48.825886Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909832916278818687810140307525, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-04-01T13:41:48.825914Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [cn5] 2026-04-01T13:41:48.825915Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [cn5] 2026-04-01T13:41:48.825917Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [cn5] 2026-04-01T13:41:48.825918Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [cn5] 2026-04-01T13:41:48.825906Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [cn5] 2026-04-01T13:41:48.825922Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [cn5] 2026-04-01T13:41:48.825943Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909832917348729844085294301253, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn5] 2026-04-01T13:41:48.826030Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [cn5] 2026-04-01T13:41:48.826034Z  INFO execute:app: e3_sync::sync: Historical events sorted. -[CIPHER] [cn5] 2026-04-01T13:41:48.826036Z  INFO execute:app: e3_sync::sync: Effects enabled -[CIPHER] [cn5] 2026-04-01T13:41:48.826038Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [cn5] 2026-04-01T13:41:48.826040Z  INFO execute:app: e3_sync::sync: Historical events published. -[CIPHER] [cn5] 2026-04-01T13:41:48.826041Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [cn5] 2026-04-01T13:41:48.826056Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn5/0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc/12D3KooWRroWBZ8VSzLmsCj5cTMKn7cMAR7bWF9Wk4Q6jWsNNUk1) -[CIPHER] [cn5] 2026-04-01T13:41:48.826043Z  INFO execute:app: e3_sync::sync: Sync finished. -[CIPHER] [cn5] 2026-04-01T13:41:48.826090Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909832919414765180340764082245, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-04-01T13:41:48.826108Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909832919562339132930440495173, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn5] 2026-04-01T13:41:48.826138Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [cn5] 2026-04-01T13:41:48.826147Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] [cn3] 2026-04-01T13:41:48.826177Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [cn3] 2026-04-01T13:41:48.826172Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [cn3] 2026-04-01T13:41:48.826215Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909832922052649582880257967969, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:41:48.826414Z  INFO execute:app: e3_sync::sync: NetReady! -[CIPHER] [cn3] 2026-04-01T13:41:48.826418Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [cn3] 2026-04-01T13:41:48.826464Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909832926535208392791679010657, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:41:48.826492Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [cn3] 2026-04-01T13:41:48.826493Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [cn3] 2026-04-01T13:41:48.826482Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [cn3] 2026-04-01T13:41:48.826518Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909832927992501174614733588321, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:41:48.826498Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [cn3] 2026-04-01T13:41:48.826494Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [cn3] 2026-04-01T13:41:48.826490Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [cn3] 2026-04-01T13:41:48.826621Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [cn3] 2026-04-01T13:41:48.826625Z  INFO execute:app: e3_sync::sync: Historical events sorted. -[CIPHER] [cn3] 2026-04-01T13:41:48.826628Z  INFO execute:app: e3_sync::sync: Effects enabled -[CIPHER] [cn3] 2026-04-01T13:41:48.826630Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [cn3] 2026-04-01T13:41:48.826632Z  INFO execute:app: e3_sync::sync: Historical events published. -[CIPHER] [cn3] 2026-04-01T13:41:48.826647Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn3/0x90F79bf6EB2c4f870365E785982E1f101E93b906/12D3KooWC7RZ7HgnVBzrRPnz1A58yh9Wcc15yLxyifEAZ5wMAUwd) -[CIPHER] [cn3] 2026-04-01T13:41:48.826635Z  INFO execute:app: e3_sync::sync: Sync finished. -[CIPHER] [cn3] 2026-04-01T13:41:48.826691Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909832930335237671975846643553, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:41:48.826633Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [cn3] 2026-04-01T13:41:48.826709Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909832930482811624565523056481, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:41:48.826749Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [cn3] 2026-04-01T13:41:48.826762Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] [cn2] 2026-04-01T13:41:48.827186Z  INFO e3_net::net_sync_manager: NetSyncManager: AllPeersDialed (connected=5, total=5) -[CIPHER] [cn2] 2026-04-01T13:41:48.827192Z  INFO e3_net::net_sync_manager: NetSyncManager: publishing NetReady -[CIPHER] [cn2] 2026-04-01T13:41:48.827227Z  INFO e3_events::eventbus: >>> NetReady EnclaveEvent { payload: NetReady(NetReady { correlation_id: 5 }), ctx: EventContext { id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), causation_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), origin_id: EventId(0x9b12c7e627716ad097e098694e0bb6375754368cad1d93a3e0887beb0a37bdd4), seq: 2, ts: 32743909832940794541561769354090725, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:41:48.827264Z  INFO execute:app: e3_sync::sync: NetReady! -[CIPHER] [cn2] 2026-04-01T13:41:48.827269Z  INFO execute:app: e3_sync::sync: Loading historical libp2p events... -[CIPHER] [cn2] 2026-04-01T13:41:48.827296Z  INFO e3_events::eventbus: >>> HistoricalNetSyncStart EnclaveEvent { payload: HistoricalNetSyncStart(HistoricalNetSyncStart { since: {} }), ctx: EventContext { id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 3, ts: 32743909832942251834343592408668389, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:41:48.827317Z  INFO e3_net::net_sync_manager: HISTORICAL_NET_SYNC_START -[CIPHER] [cn2] 2026-04-01T13:41:48.827330Z  INFO e3_net::net_sync_manager: Sync request event received -[CIPHER] [cn2] 2026-04-01T13:41:48.827332Z  INFO e3_net::net_sync_manager: Checking for AllPeersDialed... -[CIPHER] [cn2] 2026-04-01T13:41:48.827333Z  INFO e3_net::net_sync_manager: handle_sync_request_event: ready to sync -[CIPHER] [cn2] 2026-04-01T13:41:48.827335Z  INFO e3_net::net_sync_manager: Sync complete: collected 0 events across 0 aggregates, latest_timestamp=0 -[CIPHER] [cn2] 2026-04-01T13:41:48.827339Z  INFO e3_net::net_sync_manager: SYNC REQUEST SUCCEEDED -[CIPHER] [cn2] 2026-04-01T13:41:48.827358Z  INFO e3_events::eventbus: >>> HistoricalNetSyncEventsReceived EnclaveEvent { payload: HistoricalNetSyncEventsReceived(HistoricalNetSyncEventsReceived { events: [] }), ctx: EventContext { id: EventId(0x40c4c15464e27c76a0355ea282091b2c07c76a5ee747f1c075d31661911dbd7d), causation_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), origin_id: EventId(0x3fff766ea800e65983a7849b3c54332b7a790151e70a71fc4bf34bb93f2107a9), seq: 4, ts: 32743909832943487766196530948626661, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:41:48.827384Z  INFO execute:app: e3_sync::sync: 0 historical libp2p events loaded. -[CIPHER] [cn2] 2026-04-01T13:41:48.827387Z  INFO execute:app: e3_sync::sync: Historical events sorted. -[CIPHER] [cn2] 2026-04-01T13:41:48.827389Z  INFO execute:app: e3_sync::sync: Effects enabled -[CIPHER] [cn2] 2026-04-01T13:41:48.827391Z  INFO execute:app: e3_sync::sync: Publishing historical events to actors... -[CIPHER] [cn2] 2026-04-01T13:41:48.827393Z  INFO execute:app: e3_sync::sync: Historical events published. -[CIPHER] [cn2] 2026-04-01T13:41:48.827395Z  INFO execute:app: e3_sync::sync: Publishing SyncEnded event... -[CIPHER] [cn2] 2026-04-01T13:41:48.827397Z  INFO execute:app: e3_sync::sync: Sync finished. -[CIPHER] [cn2] 2026-04-01T13:41:48.827408Z  INFO execute: enclave::start: LAUNCHING CIPHERNODE: (cn2/0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC/12D3KooWRJMRXAQWkNdFC6hd6FoWNewG82gNnMJBoaKHbXH233nr) -[CIPHER] [cn2] 2026-04-01T13:41:48.827435Z  INFO e3_events::eventbus: >>> EffectsEnabled EnclaveEvent { payload: EffectsEnabled(EffectsEnabled { correlation_id: 6 }), ctx: EventContext { id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), causation_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), origin_id: EventId(0x309b56e5dc91fd20f4b01d6eec3f44c17574472fa1ce758efe44f3c08f37f21c), seq: 5, ts: 32743909832944373209912069007104229, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:41:48.827453Z  INFO e3_events::eventbus: >>> SyncEnded EnclaveEvent { payload: SyncEnded(SyncEnded { correlation_id: 7 }), ctx: EventContext { id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), causation_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), origin_id: EventId(0x0a5a2caee457788fc9f4ba905a0b7323b46188d162bb292c40c159cc30e7c0ad), seq: 6, ts: 32743909832944539230608732393068773, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:41:48.827483Z  INFO e3_multithread::multithread: Multithread actor with ZK listening for events. -[CIPHER] [cn2] 2026-04-01T13:41:48.827490Z  INFO e3_net::net_event_translator: NetEventTranslator is running -[CIPHER] -[CIPHER] > enclave-example@0.0.0 deploy /Users/ctrlc03/Documents/zk/enclave/templates/default -[CIPHER] > pnpm clean:deployments && hardhat run scripts/deploy-local.ts --network localhost -[CIPHER] -[CIPHER] -[CIPHER] > enclave-example@0.0.0 clean:deployments /Users/ctrlc03/Documents/zk/enclave/templates/default -[CIPHER] > hardhat utils:clean-deployments -[CIPHER] -[CIPHER] Nothing to compile -[CIPHER] Nothing to compile -[CIPHER] -[CIPHER] 🚀 Deploying Enclave protocol locally... -[CIPHER] Deploying with account: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Account balance: 10000.0 -[CIPHER] Detected local network 'localhost', auto-cleaning stale deployment state... -[CIPHER] PoseidonT3 deployed to: 0x3333333C0A88F9BE4fd23ed0536F9B6c427e3B93 -[CIPHER] Deploying mock Fee token... -[CIPHER] MockFeeToken deployed to: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 -[CIPHER] Deploying ENCL token... -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Transfer restrictions disabled for local development -[CIPHER] EnclaveToken deployed to: 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Deploying EnclaveTicketToken... -[CIPHER] EnclaveTicketToken deployed to: 0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9 -[CIPHER] Deploying SlashingManager... -[CIPHER] SlashingManager deployed to: 0x5FC8d32690cc91D4c39d9d3abcBD16989F875707 -[CIPHER] Deploying CiphernodeRegistry... -[CIPHER] CiphernodeRegistry deployed to: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 -[CIPHER] Deploying BondingRegistry... -[CIPHER] [cn1] 2026-04-01T13:42:00.903097Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32743910055697680783854357456255292, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:00.903147Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32743910055698271079664716161907004, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:00.903098Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32743910055697570103389917558742785, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:00.903156Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32743910055698271079664718521704193, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:00.903243Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32743910055698326419896939650359041, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:00.903097Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "ticketPrice", old_value: 0, new_value: 10000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), causation_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), origin_id: EventId(0x471ef3170de940cacbd6db3bec74d885f0b34268190a5c6fec73983daffc16e6), seq: 7, ts: 32743910055697975931759538225776481, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:00.903181Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32743910055698289526408792231255809, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:00.903145Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseRequiredBond", old_value: 0, new_value: 100000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), causation_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), origin_id: EventId(0x5fbe18ad7c18582646f7d14901796e70dc038c332b48893e326d841a4a154f35), seq: 8, ts: 32743910055698307973152864997705569, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:00.903187Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32743910055698344866641012416808801, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:00.903203Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32743910055698363313385086126360417, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:00.903164Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "minTicketBalance", old_value: 0, new_value: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), causation_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), origin_id: EventId(0xc19a687fc677635da4a79cbc036a81d8963be5455b988f4f8e0eb0a936ae6678), seq: 9, ts: 32743910055698326419896938707257185, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:00.903395Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 -[CIPHER] [cn4] 2026-04-01T13:42:00.903211Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "exitDelay", old_value: 0, new_value: 604800, chain_id: 31337 }), ctx: EventContext { id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), causation_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), origin_id: EventId(0x23576c8fbf3fe3aaf41101bca75a6d8692e981722ed38082c52a537fe58caecd), seq: 10, ts: 32743910055698307973152865940807425, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:00.903210Z  INFO e3_events::eventbus: >>> ConfigurationUpdated EnclaveEvent { payload: ConfigurationUpdated(ConfigurationUpdated { parameter: "licenseActiveBps", old_value: 0, new_value: 8000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), causation_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), origin_id: EventId(0xa08ca96ad972eba114ed4179c207b8ab963d6085669525d6aa475f05d30206e4), seq: 11, ts: 32743910055698326419896937290561852, aggregate_id: AggregateId(0), block: Some(14), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:00.903399Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 -[CIPHER] [cn1] 2026-04-01T13:42:00.903304Z  INFO e3_sortition::sortition: ConfigurationUpdated - ticket price updated chain_id=31337 old_ticket_price=0 new_ticket_price=10000000 -[CIPHER] BondingRegistry deployed to: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 -[CIPHER] Deploying Enclave... -[CIPHER] Enclave deployed to: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e -[CIPHER] Deploying E3RefundManager... -[CIPHER] E3RefundManager deployed to: 0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82 -[CIPHER] Setting E3RefundManager in Enclave... -[CIPHER] Configuring cross-contract dependencies... -[CIPHER] Setting Enclave address in CiphernodeRegistry... -[CIPHER] Setting BondingRegistry address in CiphernodeRegistry... -[CIPHER] Setting Submission Window in CiphernodeRegistry... -[CIPHER] SORTITION_SUBMISSION_WINDOW: 10 -[CIPHER] Setting BondingRegistry address in EnclaveTicketToken... -[CIPHER] Setting CiphernodeRegistry address in BondingRegistry... -[CIPHER] Setting Enclave address in SlashingManager... -[CIPHER] Setting BondingRegistry address in SlashingManager... -[CIPHER] Setting CiphernodeRegistry address in SlashingManager... -[CIPHER] Setting E3RefundManager address in SlashingManager... -[CIPHER] Setting SlashingManager address in Enclave... -[CIPHER] Setting SlashingManager address in BondingRegistry... -[CIPHER] Setting SlashingManager address in CiphernodeRegistry... -[CIPHER] Setting Enclave as reward distributor in BondingRegistry... -[CIPHER] Setting committee thresholds... -[CIPHER] Committee thresholds set (Micro=[1,3], Small=[2,5]) -[CIPHER] Setting pricing config... -[CIPHER] Pricing config set (treasury: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 ) -[CIPHER] Deploying Compute Provider -[CIPHER] Deploying Mock Decryption Verifier -[CIPHER] Deploying Mock Pk Verifier -[CIPHER] Deploying E3 Program -[CIPHER] -[CIPHER] MockDeployments: -[CIPHER] ---------------------------------------------------------------------- -[CIPHER] MockComputeProvider:0xc3e53F4d16Ae77Db1c982e75a937B9f60FE63690 -[CIPHER] MockDecryptionVerifier:0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB -[CIPHER] MockPkVerifier:0x9E545E3C0baAB3E08CdfD552C960A1050f373042 -[CIPHER] MockE3Program:0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9 -[CIPHER] -[CIPHER] encryptionSchemeId 0x2c2a814a0495f913a3a312fc4771e37552bc14f8a2d4075a08122d356f0849c6 -[CIPHER] Successfully enabled E3 Program in Enclave contract -[CIPHER] Deploying circuit verifiers... -[CIPHER] Deploying to network: localhost -[CIPHER] Found 3 verifier contract(s) -[CIPHER] Deploying ZKTranscriptLib... -[CIPHER] ZKTranscriptLib deployed to: 0x851356ae760d987E095750cCeb3bC6014560891C -[CIPHER] RecursiveAggregationFoldVerifier deployed to: 0xf5059a5D33d5853360D16C683c16e67980206f36 -[CIPHER] ThresholdDecryptedSharesAggregationVerifier deployed to: 0x95401dc811bb5740090279Ba06cfA8fcF6113778 -[CIPHER] ThresholdPkAggregationVerifier deployed to: 0x998abeb3E57409262aE5b751f60747921B33613E -[CIPHER] Deploying BfvDecryptionVerifier and registering for prod... -[CIPHER] BfvDecryptionVerifier deployed to: 0x70e0bA845a1A0F2DA3359C97E0285013525FFC49 -[CIPHER] Successfully set BfvDecryptionVerifier in Enclave contract -[CIPHER] Deploying BfvPkVerifier and registering for prod... -[CIPHER] BfvPkVerifier deployed to: 0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf -[CIPHER] Successfully set BfvPkVerifier in Enclave contract -[CIPHER] -[CIPHER] ============================================ -[CIPHER] Deployment Complete! -[CIPHER] ============================================ -[CIPHER] MockFeeToken: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 -[CIPHER] EnclaveToken (ENCL): 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] EnclaveTicketToken: 0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9 -[CIPHER] SlashingManager: 0x5FC8d32690cc91D4c39d9d3abcBD16989F875707 -[CIPHER] BondingRegistry: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 -[CIPHER] CiphernodeRegistry: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 -[CIPHER] E3RefundManager: 0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82 -[CIPHER] Enclave: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e -[CIPHER] DecryptionVerifier (BFV): 0x70e0bA845a1A0F2DA3359C97E0285013525FFC49 -[CIPHER] PkVerifier (BFV): 0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf -[CIPHER] Circuit Verifiers: -[CIPHER] RecursiveAggregationFoldVerifier: 0xf5059a5D33d5853360D16C683c16e67980206f36 -[CIPHER] ThresholdDecryptedSharesAggregationVerifier: 0x95401dc811bb5740090279Ba06cfA8fcF6113778 -[CIPHER] ThresholdPkAggregationVerifier: 0x998abeb3E57409262aE5b751f60747921B33613E -[CIPHER] ============================================ -[CIPHER] -[CIPHER] E3 Program enabled for Enclave's template -[CIPHER] -[CIPHER] Deployed MyProgram at address: 0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00 -[CIPHER] Deployed MockRISC0Verifier at address: 0x8f86403A4DE0BB5791fa46B8e795C547942fE4Cf -[CIPHER] -[CIPHER] -[CIPHER] Updating contracts for chain: localhost -[CIPHER] ✓ Updated enclave: 0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e (block 15) -[CIPHER] ✓ Updated ciphernode_registry: 0xa513E6E4b8f2a923D98304ec87F64353C4D5C853 (block 11) -[CIPHER] ✓ Updated bonding_registry: 0x8A791620dd6260079BF849Dc5567aDC3F2FdC318 (block 12) -[CIPHER] ✓ Updated fee_token: 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 (block 6) -[CIPHER] ✓ Updated e3_program: 0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00 (block 35) -[CIPHER] -[CIPHER] ✓ enclave.config.yaml updated successfully! -[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Registering ciphernode: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... -[CIPHER] 1000 ENCL transferred to ciphernode -[CIPHER] Step 2: Minting USDC to admin... -[CIPHER] 1000 USDC minted to admin -[CIPHER] Step 3: Impersonating ciphernode for license operations... -[CIPHER] License bonded: 1000 ENCL -[CIPHER] [cn4] 2026-04-01T13:42:29.904634Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590663017249046349032857345, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:29.904634Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590662224039051178770716901, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:29.904634Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590662150252074882324134204, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:42:29.904634Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590662260932539323223781725, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:29.905004Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [ag] 2026-04-01T13:42:29.904982Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [cn3] 2026-04-01T13:42:29.904906Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590664031819970402115094369, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:29.905075Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [cn1] 2026-04-01T13:42:29.905084Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [cn4] 2026-04-01T13:42:29.905145Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] [cn5] 2026-04-01T13:42:29.905185Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", index: 0, num_nodes: 1, chain_id: 31337 }), ctx: EventContext { id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), causation_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), origin_id: EventId(0x6013797f39d23a6f83d696ad11c2f5e3a8e4149e191f8e13888772b372e4f59c), seq: 12, ts: 32743910590673956168282058825859141, aggregate_id: AggregateId(0), block: Some(43), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:42:29.905305Z  INFO e3_sortition::sortition: Node added to sortition state address=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 -[CIPHER] Operator registered (automatically added to CiphernodeRegistry) -[CIPHER] Step 4: Adding ticket balance via admin... -[CIPHER] [cn3] 2026-04-01T13:42:33.902726Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664435531296530766265288545, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:33.902773Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664435605083507061103495009, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:33.902810Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn3] 2026-04-01T13:42:33.902820Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true -[CIPHER] [ag] 2026-04-01T13:42:33.902726Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664435475956298542362276189, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:42:33.902777Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664435605083507058329137501, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:42:33.902810Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-04-01T13:42:33.902820Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true -[CIPHER] [cn5] 2026-04-01T13:42:33.902726Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664435475956298546108629061, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:42:33.902773Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664435605083507062075490373, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:42:33.902810Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn5] 2026-04-01T13:42:33.902820Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true -[CIPHER] [cn4] 2026-04-01T13:42:33.902742Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664436121592341125914042113, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:33.902785Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664436158485829273333145345, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:33.902815Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn4] 2026-04-01T13:42:33.902822Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true -[CIPHER] [cn2] 2026-04-01T13:42:33.903118Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664442909994160250277615845, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:33.903191Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn1] 2026-04-01T13:42:33.903122Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), causation_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), origin_id: EventId(0x26ec0cc1c4f76d95d0ac08108eaaf44f079c8f03a273736155d4de39d381f0f8), seq: 13, ts: 32743910664443647863923197051304252, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:33.903199Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true -[CIPHER] [cn2] 2026-04-01T13:42:33.903158Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664443002227880618825373925, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:33.903158Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), causation_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), origin_id: EventId(0x2b9ffb7b8c864b1243cc09e2b1de9731f64b9093368fd53242c8fc67d6d4d771), seq: 14, ts: 32743910664443703204155418179959100, aggregate_id: AggregateId(0), block: Some(47), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:33.903191Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn2] 2026-04-01T13:42:33.903199Z  INFO e3_sortition::sortition: Updated operator active status operator=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 active=true -[CIPHER] Ticket balance added: 1000 USDC worth -[CIPHER] -[CIPHER] === Registration Complete === -[CIPHER] Ciphernode: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 -[CIPHER] Registered: true -[CIPHER] Active: true -[CIPHER] License Bond: 1000.0 ENCL -[CIPHER] Ticket Balance: 1000.0 USDC worth -[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Registering ciphernode: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... -[CIPHER] 1000 ENCL transferred to ciphernode -[CIPHER] Step 2: Minting USDC to admin... -[CIPHER] 1000 USDC minted to admin -[CIPHER] Step 3: Impersonating ciphernode for license operations... -[CIPHER] License bonded: 1000 ENCL -[CIPHER] [ag] 2026-04-01T13:42:39.903145Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775122452099213871529996637, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:42:39.903274Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] [cn3] 2026-04-01T13:42:39.903275Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] [cn4] 2026-04-01T13:42:39.903142Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775121658889218705736736513, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:39.903142Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775121917143635736727357281, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:39.903274Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] [cn2] 2026-04-01T13:42:39.903142Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775122341418749432238725349, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:39.903274Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] [cn5] 2026-04-01T13:42:39.903145Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775123319096185339625275461, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:42:39.903318Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] [cn1] 2026-04-01T13:42:39.903708Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", index: 1, num_nodes: 2, chain_id: 31337 }), ctx: EventContext { id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), causation_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), origin_id: EventId(0x931694b55770525e1d9d186f3ef80176df1dbfb29360f8120e775bbe2820ee9e), seq: 15, ts: 32743910775133501698914024909076796, aggregate_id: AggregateId(0), block: Some(53), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:39.903803Z  INFO e3_sortition::sortition: Node added to sortition state address=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 -[CIPHER] Operator registered (automatically added to CiphernodeRegistry) -[CIPHER] Step 4: Adding ticket balance via admin... -[CIPHER] [ag] 2026-04-01T13:42:43.904506Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848933243140651237025132893, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:42:43.904688Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-04-01T13:42:43.904708Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [cn4] 2026-04-01T13:42:43.904506Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848933464501580125257211649, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:43.904618Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848933556735300493804969729, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:43.904688Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-04-01T13:42:43.904618Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848933353821115679282442589, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:43.904612Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848932247016471259483703137, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:43.904688Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] [cn3] 2026-04-01T13:42:43.904709Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [cn4] 2026-04-01T13:42:43.904709Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [cn1] 2026-04-01T13:42:43.904543Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848933482948324196606966076, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:43.904646Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848933575182044565154724156, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:43.904713Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] [cn3] 2026-04-01T13:42:43.904506Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848931914975077932711774049, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:43.904726Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [cn2] 2026-04-01T13:42:43.904713Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848933538288556419343997157, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:43.904791Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848933630522276787891755237, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:43.904848Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC chain_id=31337 new_balance=1000000000 -[CIPHER] [cn2] 2026-04-01T13:42:43.904861Z  INFO e3_sortition::sortition: Updated operator active status operator=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC active=true -[CIPHER] [cn5] 2026-04-01T13:42:43.905179Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), causation_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), origin_id: EventId(0xfb40a6728ab8139fa711e37d73cc7400dc5692e1ee2da2fc399884f378db1278), seq: 16, ts: 32743910848947484027076144545333317, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:42:43.905255Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), causation_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), origin_id: EventId(0x286ca784fb018113198601eb4177afcb6bae714293d1935c64557653e147b4d3), seq: 17, ts: 32743910848947594707540586802643013, aggregate_id: AggregateId(0), block: Some(57), source: Evm } } -[CIPHER] Ticket balance added: 1000 USDC worth -[CIPHER] -[CIPHER] === Registration Complete === -[CIPHER] Ciphernode: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC -[CIPHER] Registered: true -[CIPHER] Active: true -[CIPHER] License Bond: 1000.0 ENCL -[CIPHER] Ticket Balance: 1000.0 USDC worth -[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Registering ciphernode: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... -[CIPHER] 1000 ENCL transferred to ciphernode -[CIPHER] Step 2: Minting USDC to admin... -[CIPHER] 1000 USDC minted to admin -[CIPHER] Step 3: Impersonating ciphernode for license operations... -[CIPHER] License bonded: 1000 ENCL -[CIPHER] [ag] 2026-04-01T13:42:49.904122Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959605886163421293871247709, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:42:49.904271Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] [cn5] 2026-04-01T13:42:49.904122Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959605886163421297617600581, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:42:49.904271Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] [cn1] 2026-04-01T13:42:49.904122Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959605886163421295228909884, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:49.904281Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] [cn3] 2026-04-01T13:42:49.904304Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959612010482453768216741729, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:49.904402Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] [cn4] 2026-04-01T13:42:49.904324Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959606310438534992908394241, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:49.904452Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] [cn2] 2026-04-01T13:42:49.904777Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", index: 2, num_nodes: 3, chain_id: 31337 }), ctx: EventContext { id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), causation_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), origin_id: EventId(0xcebf19055e6ea535ec729fde051c3b09a956538b64c5d488785c53859c7a2e37), seq: 18, ts: 32743910959619536754035841905481957, aggregate_id: AggregateId(0), block: Some(63), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:49.904892Z  INFO e3_sortition::sortition: Node added to sortition state address=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 -[CIPHER] Operator registered (automatically added to CiphernodeRegistry) -[CIPHER] Step 4: Adding ticket balance via admin... -[CIPHER] [cn3] 2026-04-01T13:42:53.904580Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033399337265429375162222433, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:53.904686Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033399632413334554515048289, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:53.904771Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn3] 2026-04-01T13:42:53.904795Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true -[CIPHER] [cn4] 2026-04-01T13:42:53.904580Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033399355712173449814875905, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:53.904692Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033399632413334555458150145, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:53.904771Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn4] 2026-04-01T13:42:53.904795Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true -[CIPHER] [cn1] 2026-04-01T13:42:53.904649Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033399355712173447455078716, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:53.904755Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033399632413334553098352956, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:53.904824Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn1] 2026-04-01T13:42:53.904839Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true -[CIPHER] [ag] 2026-04-01T13:42:53.904839Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033408357723281416358605149, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:42:53.904996Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-04-01T13:42:53.905010Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true -[CIPHER] [cn2] 2026-04-01T13:42:53.905003Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033399632413334554706729189, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:53.905096Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true -[CIPHER] [cn5] 2026-04-01T13:42:53.905034Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033399632413334555487043653, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:42:53.905105Z  INFO e3_sortition::sortition: Updated operator active status operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 active=true -[CIPHER] [ag] 2026-04-01T13:42:53.904926Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), causation_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), origin_id: EventId(0x2186612c8276d42501820e455fce3d37eeca99b8b31f7dfcda5007864b5ecb93), seq: 20, ts: 32743911033408486850489932325466461, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:53.904924Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033399318818685301644351717, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:53.905081Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn5] 2026-04-01T13:42:53.904951Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), causation_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), origin_id: EventId(0x4647c1d5b1fd4ca67549bd663282a8b1d6e236160ec0e3af4860f962c7a1610a), seq: 19, ts: 32743911033399318818685302424666181, aggregate_id: AggregateId(0), block: Some(67), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:42:53.905091Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x90F79bf6EB2c4f870365E785982E1f101E93b906 chain_id=31337 new_balance=1000000000 -[CIPHER] Ticket balance added: 1000 USDC worth -[CIPHER] -[CIPHER] === Registration Complete === -[CIPHER] Ciphernode: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 -[CIPHER] Registered: true -[CIPHER] Active: true -[CIPHER] License Bond: 1000.0 ENCL -[CIPHER] Ticket Balance: 1000.0 USDC worth -[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Registering ciphernode: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... -[CIPHER] 1000 ENCL transferred to ciphernode -[CIPHER] Step 2: Minting USDC to admin... -[CIPHER] 1000 USDC minted to admin -[CIPHER] Step 3: Impersonating ciphernode for license operations... -[CIPHER] License bonded: 1000 ENCL -[CIPHER] [cn4] 2026-04-01T13:42:59.906072Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144112489338185299126787841, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:42:59.906234Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [cn3] 2026-04-01T13:42:59.906111Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144110331069128674166146913, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:42:59.906234Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [cn1] 2026-04-01T13:42:59.906235Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144113282548180466277710140, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:42:59.906348Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [cn5] 2026-04-01T13:42:59.906240Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144115145669331913331114053, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:42:59.906342Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [cn2] 2026-04-01T13:42:59.906715Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144123317576956565882165477, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:42:59.906842Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [ag] 2026-04-01T13:42:59.906842Z  INFO e3_sortition::sortition: Node added to sortition state address=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 -[CIPHER] [ag] 2026-04-01T13:42:59.906714Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", index: 3, num_nodes: 4, chain_id: 31337 }), ctx: EventContext { id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), causation_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), origin_id: EventId(0x58c98de6afc60f2623d51a908cc8101c44d32d9a615bb53a5477b027413efa57), seq: 21, ts: 32743911144123723405326184526262621, aggregate_id: AggregateId(0), block: Some(73), source: Evm } } -[CIPHER] Operator registered (automatically added to CiphernodeRegistry) -[CIPHER] Step 4: Adding ticket balance via admin... -[CIPHER] [cn4] 2026-04-01T13:43:03.905841Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32743911217891902467953284674625281, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:03.905956Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32743911217892234509346611446554369, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:03.906074Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true -[CIPHER] [cn5] 2026-04-01T13:43:03.905961Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32743911217893784035848803077783621, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:03.906074Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true -[CIPHER] [ag] 2026-04-01T13:43:03.906159Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32743911217900277289762745093599581, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:03.905841Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32743911217893673355384360820473925, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:03.906056Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-04-01T13:43:03.906265Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32743911217900406416971261060460893, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:03.906049Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-04-01T13:43:03.906334Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-04-01T13:43:03.906351Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true -[CIPHER] [cn2] 2026-04-01T13:43:03.906186Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32743911217901328754174949504080101, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:03.906267Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32743911217901439434639391761389797, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:03.906342Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 chain_id=31337 new_balance=1000000000 -[CIPHER] [cn2] 2026-04-01T13:43:03.906356Z  INFO e3_sortition::sortition: Updated operator active status operator=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 active=true -[CIPHER] [cn1] 2026-04-01T13:43:03.906226Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), causation_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), origin_id: EventId(0x735cf87a2b12e7ba98c3d3dca00c5619874d2d1c2cf6963aa931aad3457f172e), seq: 22, ts: 32743911217893304420502884240750908, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:03.906320Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), causation_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), origin_id: EventId(0x2721ac9796ccad3bc3b24c36ad05c4e73176c23d3b3673e561798f2707a0638f), seq: 23, ts: 32743911217893415100967326498060604, aggregate_id: AggregateId(0), block: Some(77), source: Evm } } -[CIPHER] Ticket balance added: 1000 USDC worth -[CIPHER] -[CIPHER] === Registration Complete === -[CIPHER] Ciphernode: 0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 -[CIPHER] Registered: true -[CIPHER] Active: true -[CIPHER] License Bond: 1000.0 ENCL -[CIPHER] Ticket Balance: 1000.0 USDC worth -[CIPHER] Admin wallet: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] Registering ciphernode: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc -[CIPHER] Disabling transfer restrictions for chain localhost -[CIPHER] Contract address 0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 -[CIPHER] Step 1: Minting and transferring ENCL to ciphernode... -[CIPHER] 1000 ENCL transferred to ciphernode -[CIPHER] Step 2: Minting USDC to admin... -[CIPHER] 1000 USDC minted to admin -[CIPHER] Step 3: Impersonating ciphernode for license operations... -[CIPHER] License bonded: 1000 ENCL -[CIPHER] [cn5] 2026-04-01T13:43:09.903268Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328525401499798929881104453, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:09.903424Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] [ag] 2026-04-01T13:43:09.903279Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328525253925846336458338653, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:09.903419Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] [cn4] 2026-04-01T13:43:09.903278Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328525180138870045337591553, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:09.903419Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] [cn2] 2026-04-01T13:43:09.903268Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328525475286775223938996453, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:09.903419Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] [cn3] 2026-04-01T13:43:09.903539Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328525678200960034552383329, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:09.903664Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] [cn1] 2026-04-01T13:43:09.903973Z  INFO e3_events::eventbus: >>> CiphernodeAdded EnclaveEvent { payload: CiphernodeAdded(CiphernodeAdded { address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", index: 4, num_nodes: 5, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), causation_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), origin_id: EventId(0xe59798c134e2ccfb27694cc3c7825a25b0e08807e77fe31047bd6a63d2e04ec6), seq: 24, ts: 32743911328539255004598283365677372, aggregate_id: AggregateId(0), block: Some(83), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:09.904091Z  INFO e3_sortition::sortition: Node added to sortition state address=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 -[CIPHER] Operator registered (automatically added to CiphernodeRegistry) -[CIPHER] Step 4: Adding ticket balance via admin... -[CIPHER] [cn3] 2026-04-01T13:43:13.903941Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402326821595246849952024417, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:13.904074Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 -[CIPHER] [cn3] 2026-04-01T13:43:13.904089Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true -[CIPHER] [cn3] 2026-04-01T13:43:13.904016Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402326913828967218499782497, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:13.903941Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402326009938507605315057980, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:13.904021Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402326212852692416120125756, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:13.904074Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 -[CIPHER] [cn1] 2026-04-01T13:43:13.904089Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true -[CIPHER] [cn2] 2026-04-01T13:43:13.903941Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402326674021294260467292389, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:13.904021Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402326766255014629015050469, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:13.904074Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 -[CIPHER] [cn2] 2026-04-01T13:43:13.904089Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true -[CIPHER] [cn5] 2026-04-01T13:43:13.903941Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402326305086412787056574533, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:13.904021Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402326378873389081894780997, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:13.904074Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 -[CIPHER] [cn5] 2026-04-01T13:43:13.904089Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true -[CIPHER] [ag] 2026-04-01T13:43:13.904319Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402334292526596699546071389, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:13.904371Z  INFO e3_events::eventbus: >>> TicketBalanceUpdated EnclaveEvent { payload: TicketBalanceUpdated(TicketBalanceUpdated { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", delta: 1000000000, new_balance: 1000000000, reason: 0x4445504f53495400000000000000000000000000000000000000000000000000, chain_id: 31337 }), ctx: EventContext { id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), causation_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), origin_id: EventId(0x17af3b8d411e510a603e348b81278b9008e34c9d71cd83f28fafc5a5dc7f007c), seq: 25, ts: 32743911402335749819378526318108417, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:13.904452Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 -[CIPHER] [ag] 2026-04-01T13:43:13.904391Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402334403207061141803381085, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:13.904467Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true -[CIPHER] [cn4] 2026-04-01T13:43:13.904441Z  INFO e3_events::eventbus: >>> OperatorActivationChanged EnclaveEvent { payload: OperatorActivationChanged(OperatorActivationChanged { operator: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", active: true, chain_id: 31337 }), ctx: EventContext { id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), causation_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), origin_id: EventId(0xe678a08e70903a2aee9401242c7c82a88b2954983e95f744a8f8af62d2aaa44e), seq: 26, ts: 32743911402335823606354821156314881, aggregate_id: AggregateId(0), block: Some(87), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:13.904496Z  INFO e3_sortition::sortition: Updated ticket balance operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc chain_id=31337 new_balance=1000000000 -[CIPHER] [cn4] 2026-04-01T13:43:13.904509Z  INFO e3_sortition::sortition: Updated operator active status operator=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc active=true -[CIPHER] Ticket balance added: 1000 USDC worth -[CIPHER] -[CIPHER] === Registration Complete === -[CIPHER] Ciphernode: 0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc -[CIPHER] Registered: true -[CIPHER] Active: true -[CIPHER] License Bond: 1000.0 ENCL -[CIPHER] Ticket Balance: 1000.0 USDC worth -[CIPHER] [cn5] 2026-04-01T13:43:14.862284Z  INFO enclave::start: CMD: {"name":null,"otel":null,"quiet":false,"config":null,"verbose":0,"command":{"PrintEnv":{"vite":false,"chain":"localhost"}}} -[CIPHER] [cn5] 2026-04-01T13:43:14.862514Z  INFO execute: enclave::cli: Config loaded from: "/Users/ctrlc03/Documents/zk/enclave/templates/default/enclave.config.yaml" -[PROGRAM] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.43s -[PROGRAM] Running `target/debug/e3-support-scripts-dev` -[SERVER] 📡 Setting up event listeners... -[SERVER] ✅ Event listeners set up successfully -[SERVER] 🚀 Enclave Server listening on port 8080 -[SERVER] 📡 Event listeners active -[SERVER] 📊 Sessions: http://localhost:8080/sessions -[PROGRAM] 🚀 E3 Program Server listening on http://0.0.0.0:13151 -[TEST] -[TEST] RUN v1.6.1 /Users/ctrlc03/Documents/zk/enclave/templates/default -[TEST] -[TEST] stdout | tests/integration.spec.ts:159:11 -[TEST] Testing... -[TEST] -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] E3 quote: 5193760n -[TEST] Approving fee token... -[TEST] -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] Fee token approved: 0x509176338bb946cbb3adb6b45967ff94acb29d1506315bc8df453cd21781e653 -[TEST] -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] Requested E3... -[TEST] -[CIPHER] [cn4] 2026-04-01T13:43:18.919867Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [cn4] 2026-04-01T13:43:18.920420Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494859619025461661935476481, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:18.920482Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494859803492902399030992641, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:18.920550Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494859840386390546450095873, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] E3 Sucessfully Requested! -[TEST] -[CIPHER] [cn1] 2026-04-01T13:43:18.920856Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [cn4] 2026-04-01T13:43:18.921050Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [cn4] 2026-04-01T13:43:18.921067Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [cn1] 2026-04-01T13:43:18.921285Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494877198772563904778369340, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:18.921344Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494877291006284273326127420, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:18.921419Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494877327899772420745230652, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:18.921516Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] -[CIPHER] [cn4] 2026-04-01T13:43:18.921524Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65 index=3 ticket_id=Some(66) -[CIPHER] [cn4] 2026-04-01T13:43:18.921562Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn4] 2026-04-01T13:43:18.921569Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" ticket_id=66 -[CIPHER] [cn1] 2026-04-01T13:43:18.921534Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [cn1] 2026-04-01T13:43:18.921544Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [ag] 2026-04-01T13:43:18.922035Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [cn1] 2026-04-01T13:43:18.922100Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] -[CIPHER] [cn1] 2026-04-01T13:43:18.922110Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x70997970C51812dc3A010C7d01b50e0d17dc79C8 index=1 ticket_id=Some(96) -[CIPHER] [cn1] 2026-04-01T13:43:18.922138Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn1] 2026-04-01T13:43:18.922143Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x70997970C51812dc3A010C7d01b50e0d17dc79C8" ticket_id=96 -[CIPHER] [cn3] 2026-04-01T13:43:18.922822Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [cn5] 2026-04-01T13:43:18.923171Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [cn2] 2026-04-01T13:43:18.927168Z  INFO e3_evm::enclave_sol_reader: Calculated error_size for E3 (threshold_n=3, threshold_m=1, lambda=2): 3 bytes -[CIPHER] [cn1] 2026-04-01T13:43:18.927459Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(96), node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8" }), ctx: EventContext { id: EventId(0x2f085fda8f06b3637b0d7264d4ad148204fa9ac7663471b640e8fafdf302d9a8), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 4, ts: 32743911494899316418708282530756924, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:18.927575Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract -[CIPHER] [cn1] 2026-04-01T13:43:18.927613Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 96 for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn1] 2026-04-01T13:43:18.927623Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) -[CIPHER] [cn4] 2026-04-01T13:43:18.930657Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(66), node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" }), ctx: EventContext { id: EventId(0x19c0cca9f33c619fbb1d40cf0635b7412f2569fc74019ec2e228815f9cca120c), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 4, ts: 32743911494888727987609975607926529, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } -[CIPHER] [cn4] 2026-04-01T13:43:18.930756Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract -[CIPHER] [cn4] 2026-04-01T13:43:18.930781Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 66 for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn4] 2026-04-01T13:43:18.930786Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) -[CIPHER] [cn3] 2026-04-01T13:43:18.933446Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494914055367223177879193441, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:18.933469Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494901290220324168095117661, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:18.933493Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494914147600943546426951521, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:18.933543Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494914184494431693846054753, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:18.933515Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494901419347532684061978973, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:18.933568Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494901437794276757771530589, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:18.933682Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [cn3] 2026-04-01T13:43:18.933695Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [cn3] 2026-04-01T13:43:18.934097Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] -[CIPHER] [cn3] 2026-04-01T13:43:18.934104Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x90F79bf6EB2c4f870365E785982E1f101E93b906 index=0 ticket_id=Some(47) -[CIPHER] [cn3] 2026-04-01T13:43:18.934128Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn3] 2026-04-01T13:43:18.934133Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x90F79bf6EB2c4f870365E785982E1f101E93b906" ticket_id=47 -[CIPHER] [cn5] 2026-04-01T13:43:18.936429Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494920382600440461227393093, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:18.936388Z  INFO e3_events::eventbus: >>> CommitteeRequested EnclaveEvent { payload: CommitteeRequested(CommitteeRequested { e3_id: E3id { id: "0", chain_id: 31337 }, seed: Seed(0xf5a974d720c1dbb638f9324fb452e38181c5103777ca3d2355fc99940a8e8729), threshold: [1, 3], request_block: 92, committee_deadline: 1775051008, chain_id: 31337 }), ctx: EventContext { id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 1, ts: 32743911494994003556038635267578085, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:18.936489Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494920474834160829775151173, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:18.936501Z  INFO e3_events::eventbus: >>> E3Requested EnclaveEvent { payload: E3Requested(E3Requested { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 2, ts: 32743911494994095789759003815336165, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:18.936592Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494994132683247151234439397, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:18.936603Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: None, new_stage: Requested }), ctx: EventContext { id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), causation_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), origin_id: EventId(0x98a06eebf29bec33485680c4a15f16425cab0fefd2c2c6f597d7b5bedeb3b374), seq: 3, ts: 32743911494920511727648977194254405, aggregate_id: AggregateId(31337), block: Some(92), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:18.936665Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [cn2] 2026-04-01T13:43:18.936673Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [cn5] 2026-04-01T13:43:18.936703Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [cn5] 2026-04-01T13:43:18.936712Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [cn2] 2026-04-01T13:43:18.937014Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] -[CIPHER] [cn2] 2026-04-01T13:43:18.937021Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC index=2 ticket_id=Some(40) -[CIPHER] [cn2] 2026-04-01T13:43:18.937037Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn2] 2026-04-01T13:43:18.937042Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" ticket_id=40 -[CIPHER] [cn5] 2026-04-01T13:43:18.937055Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] -[CIPHER] [cn5] 2026-04-01T13:43:18.937062Z  INFO e3_sortition::sortition: This node was SELECTED for sortition e3_id=31337:0 node=0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc index=4 ticket_id=Some(12) -[CIPHER] [cn5] 2026-04-01T13:43:18.937079Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn5] 2026-04-01T13:43:18.937084Z  INFO e3_sortition::ciphernode_selector: Ticket generated for score sortition node="0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" ticket_id=12 -[CIPHER] [ag] 2026-04-01T13:43:18.941674Z  INFO e3_sortition::sortition: Performing Sortition with buffer e3_id=31337:0 threshold_m=1 threshold_n=3 buffer=3 total_selection_size=6 -[CIPHER] [ag] 2026-04-01T13:43:18.941686Z  INFO e3_sortition::backends: Building nodes from state for score sortition chain_id=31337 registered_count=5 node_state_count=5 -[CIPHER] [ag] 2026-04-01T13:43:18.942037Z  INFO e3_sortition::backends: Sortition completed - selected nodes e3_id=31337:0 chain_id=31337 committee_size=6 selected_count=5 nodes=["0x90F79bf6EB2c4f870365E785982E1f101E93b906(ticket:47)", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8(ticket:96)", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC(ticket:40)", "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65(ticket:66)", "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc(ticket:12)"] -[CIPHER] [ag] 2026-04-01T13:43:18.942138Z  INFO e3_sortition::ciphernode_selector: Mutating e3_cache: appending data: E3id { id: "0", chain_id: 31337 } -[CIPHER] [ag] 2026-04-01T13:43:18.942145Z  INFO e3_sortition::ciphernode_selector: Ciphernode was not selected node="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" -[CIPHER] [ag] 2026-04-01T13:43:18.942083Z  INFO e3_sortition::sortition: This node was NOT selected for sortition e3_id=31337:0 node=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -[CIPHER] [ag] 2026-04-01T13:43:18.943329Z  INFO e3_aggregator::committee_finalizer: Scheduling committee finalization e3_id=31337:0 committee_deadline=1775051008 current_timestamp=1775050998 seconds_to_wait=11 -[CIPHER] [ag] 2026-04-01T13:43:18.943353Z  INFO alloy_pubsub::service: Pubsub service request channel closed. Shutting down. -[CIPHER] [cn2] 2026-04-01T13:43:18.945450Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(40), node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" }), ctx: EventContext { id: EventId(0x73f25d7aa499f1d07b6e8ddbb2e1060f06ad28f8255708f1da40b7ce1903e13d), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 4, ts: 32743911495174154458662482748659941, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:18.945514Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract -[CIPHER] [cn2] 2026-04-01T13:43:18.945539Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) -[CIPHER] [cn2] 2026-04-01T13:43:18.945534Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 40 for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn3] 2026-04-01T13:43:18.948389Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(47), node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906" }), ctx: EventContext { id: EventId(0xc9834cfbde2e3230ee3db3efe5e4149bd5bdc4ae66a89782053a7cf93bc36a95), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 4, ts: 32743911495120492880152061471328097, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } -[CIPHER] [cn5] 2026-04-01T13:43:18.948418Z  INFO e3_events::eventbus: >>> TicketGenerated EnclaveEvent { payload: TicketGenerated(TicketGenerated { e3_id: E3id { id: "0", chain_id: 31337 }, ticket_id: Score(12), node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" }), ctx: EventContext { id: EventId(0x5d59963842e6c236b56919fe6b03b587d5c55a3a78b9c315b37d086f819fa95b), causation_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), origin_id: EventId(0x0e613691249a61b40317a81f62afac14a530a817077c10673f6a46db43b8372b), seq: 4, ts: 32743911495174947668657653039693893, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:18.948435Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract -[CIPHER] [cn3] 2026-04-01T13:43:18.948453Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 47 for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [cn3] 2026-04-01T13:43:18.948456Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) -[CIPHER] [cn5] 2026-04-01T13:43:18.948455Z  INFO e3_evm::ciphernode_registry_sol: Score sortition ticket generated for E3 E3id { id: "0", chain_id: 31337 }, submitting to contract -[CIPHER] [cn5] 2026-04-01T13:43:18.948467Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.submitTicket(..) -[CIPHER] [cn5] 2026-04-01T13:43:18.948464Z  INFO e3_evm::ciphernode_registry_sol: Submitting ticket 12 for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [ag] 2026-04-01T13:43:19.904264Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 4, ts: 32743911513012561806309237805429085, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:19.904351Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 5, ts: 32743911513012672486773680062738781, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:19.904436Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 7, ts: 32743911513012764720494048610496861, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:19.904244Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 5, ts: 32743911513011621022361481392654177, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:19.904344Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 6, ts: 32743911513011750149569997359515489, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:19.904382Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 7, ts: 32743911513011787043058144778618721, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:19.904417Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 8, ts: 32743911513011823936546292197721953, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:19.904451Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 9, ts: 32743911513011860830034439616825185, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:19.904395Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 6, ts: 32743911513012727827005901191393629, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:19.904280Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 5, ts: 32743911513009702560977814182590780, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:19.904351Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 6, ts: 32743911513009960815394846116313404, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:19.904472Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 8, ts: 32743911513012801613982196029600093, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:19.904391Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 7, ts: 32743911513009997708882993535416636, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:19.904429Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 8, ts: 32743911513010034602371140954519868, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:19.904462Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 9, ts: 32743911513010071495859288373623100, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:19.904439Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 5, ts: 32743911513011750149569998302617345, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:19.904508Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 6, ts: 32743911513011860830034440559927041, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:19.904555Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 7, ts: 32743911513011897723522587979030273, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:19.904598Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 8, ts: 32743911513011934617010735398133505, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:19.904640Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 9, ts: 32743911513011971510498882817236737, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:19.918215Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 5, ts: 32743911513030621168757402422499557, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:19.918323Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 7, ts: 32743911513031008550382951103397957, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:19.918348Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 8, ts: 32743911513031045443871098522501189, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:19.918284Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 6, ts: 32743911513030750295965918389360869, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:19.918234Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", ticket_id: 96, score: "516398572267945631428648622837171524546456756872383616885245204563074537442", chain_id: 31337 }), ctx: EventContext { id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), causation_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), origin_id: EventId(0x068b39728a5b4c98c99db72ce864d59dc99ad3be939494b707c6fdf2bc06b91d), seq: 5, ts: 32743911513030860976430361426985029, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:19.918295Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", ticket_id: 66, score: "1846288069361858144119633866962742244966521373742888457733824612408590675469", chain_id: 31337 }), ctx: EventContext { id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), causation_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), origin_id: EventId(0x47582f67561934f0b2b20e5892559b8022c047a3a79f16f256b3af03a3022ed0), seq: 6, ts: 32743911513030971656894803684294725, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:19.918352Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", ticket_id: 40, score: "764651650591980511380310215462641772967853761737608735327536681889168160517", chain_id: 31337 }), ctx: EventContext { id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), causation_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), origin_id: EventId(0x89b4673e2feaed4ebcb659799495ddf9b663e9557529fd5be823570e4a129bfe), seq: 7, ts: 32743911513030787189454065808464101, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:19.918374Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 9, ts: 32743911513031063890615172232052805, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:19.918378Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", ticket_id: 47, score: "479627570027316565021517265730611003930357593198732149084807545200317406066", chain_id: 31337 }), ctx: EventContext { id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), causation_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), origin_id: EventId(0x995a9a3e703b56c49cf910dbae4f6b8534483c198638e4fba2b05b50f11d9374), seq: 8, ts: 32743911513030824082942213227567333, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:19.918410Z  INFO e3_events::eventbus: >>> TicketSubmitted EnclaveEvent { payload: TicketSubmitted(TicketSubmitted { e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc", ticket_id: 12, score: "2197452229429406207481585699356460069923868477938253613007782284046449214219", chain_id: 31337 }), ctx: EventContext { id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), causation_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), origin_id: EventId(0x2e9a894f586839fb7a9f1cd579c366b96c37f65c413c7c8502dee0f59e4299fe), seq: 9, ts: 32743911513030953210150729194428645, aggregate_id: AggregateId(31337), block: Some(93), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:25.933804Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0xbe18187c0ccb8f09ed50595a3cee536834c75df71b12e9e41e5ae96f126da118 -[CIPHER] [cn4] 2026-04-01T13:43:25.935124Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0xc07b8c7eb28816b85882d0bd0413621f63332cf0ddb726066c5d6445f8f65cb5 -[CIPHER] [cn2] 2026-04-01T13:43:25.949607Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x5163d058227884c10728acc152fc80045b17730121f12bbf6740fa28d67eaa4e -[CIPHER] [cn5] 2026-04-01T13:43:25.952281Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0x4b1a81dde4657072115067f4db7d27c0c96ebbccac8220eef810a4c09231c081 -[CIPHER] [cn3] 2026-04-01T13:43:25.952810Z  INFO e3_evm::ciphernode_registry_sol: Ticket submitted to registry tx=0xcf5899cce39cbcfef74419e27675f24c0a6e917b647daf3f470eb6271b0fcaec -[CIPHER] [ag] 2026-04-01T13:43:29.945396Z  INFO e3_aggregator::committee_finalizer: Dispatching CommitteeFinalizeRequested event e3_id=31337:0 -[CIPHER] [ag] 2026-04-01T13:43:29.945878Z  INFO e3_events::eventbus: >>> CommitteeFinalizeRequested EnclaveEvent { payload: CommitteeFinalizeRequested(CommitteeFinalizeRequested { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x03fa318dc6ec43edd2bbef83cf33e379c8c498207236842c76f050715c9d2dc4), causation_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), origin_id: EventId(0x7105bafa6996d5c348341840f49bde587f3932fe32ebbceb0d8b4a6a039bfbd0), seq: 9, ts: 32743911698243587067591887145021789, aggregate_id: AggregateId(31337), block: Some(92), source: Local } } -[CIPHER] [ag] 2026-04-01T13:43:29.946167Z  INFO e3_evm::ciphernode_registry_sol: Finalizing committee for E3 E3id { id: "0", chain_id: 31337 } -[CIPHER] [ag] 2026-04-01T13:43:29.946260Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.finalizeCommittee(..) -[CIPHER] [ag] 2026-04-01T13:43:30.902127Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715888801664554685033754973, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:30.902127Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715888820111298762489659461, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:30.902171Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715888930791763204746969157, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:30.902127Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715888930791763204718075649, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:43:30.902175Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715888967685251352137178881, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:30.902174Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715888930791763201000616285, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:43:30.902215Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715890369637800953311680741, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:30.902215Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715890849253146868151646524, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:43:30.902215Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: Requested, new_stage: CommitteeFinalized }), ctx: EventContext { id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), causation_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), origin_id: EventId(0x60fffffcf4e05e444381cb1838a69f54eabcb7a9a6d7de22bef79a96a67c115b), seq: 10, ts: 32743911715890185170360216024483681, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:43:30.902270Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn4] 2026-04-01T13:43:30.902277Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn5] 2026-04-01T13:43:30.902278Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn3] 2026-04-01T13:43:30.902278Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715890295850824658281793377, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:30.902395Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn4] 2026-04-01T13:43:30.902333Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn5] 2026-04-01T13:43:30.902340Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:30.902277Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715890443424777248149887205, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:43:30.902283Z  INFO e3_events::eventbus: >>> CommitteeFinalized EnclaveEvent { payload: CommitteeFinalized(CommitteeFinalized { e3_id: E3id { id: "0", chain_id: 31337 }, committee: ["0x90F79bf6EB2c4f870365E785982E1f101E93b906", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"], scores: ["479627570027316565021517265730611003930357593198732149084807545200317406066", "516398572267945631428648622837171524546456756872383616885245204563074537442", "764651650591980511380310215462641772967853761737608735327536681889168160517"], chain_id: 31337 }), ctx: EventContext { id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 11, ts: 32743911715890904593379089280301372, aggregate_id: AggregateId(31337), block: Some(104), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:43:30.902412Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [cn5] 2026-04-01T13:43:30.902430Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [ag] 2026-04-01T13:43:30.902333Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn5] 2026-04-01T13:43:30.902432Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn5] 2026-04-01T13:43:30.902434Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [cn5] 2026-04-01T13:43:30.902435Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc" -[CIPHER] [cn1] 2026-04-01T13:43:30.902413Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:30.902441Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [cn1] 2026-04-01T13:43:30.902451Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [cn1] 2026-04-01T13:43:30.902453Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn1] 2026-04-01T13:43:30.902457Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x70997970C51812dc3A010C7d01b50e0d17dc79C8" party_id=1 -[CIPHER] [cn1] 2026-04-01T13:43:30.902532Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [cn3] 2026-04-01T13:43:30.902400Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn3] 2026-04-01T13:43:30.902420Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:30.902455Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [cn3] 2026-04-01T13:43:30.902449Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [cn3] 2026-04-01T13:43:30.902458Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [cn3] 2026-04-01T13:43:30.902460Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn3] 2026-04-01T13:43:30.902462Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [cn3] 2026-04-01T13:43:30.902463Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x90F79bf6EB2c4f870365E785982E1f101E93b906" party_id=0 -[CIPHER] [cn3] 2026-04-01T13:43:30.902531Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [cn2] 2026-04-01T13:43:30.902403Z  INFO e3_zk_prover::actors::accusation_manager_ext: Starting AccusationManager for E3 31337:0 with 3 committee members, threshold=1 -[CIPHER] [cn2] 2026-04-01T13:43:30.902424Z  INFO e3_zk_prover::actors::commitment_consistency_checker_ext: Starting CommitmentConsistencyChecker for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:30.902461Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [cn2] 2026-04-01T13:43:30.902463Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn2] 2026-04-01T13:43:30.902465Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [cn2] 2026-04-01T13:43:30.902466Z  INFO e3_sortition::ciphernode_selector: Node is in finalized committee, emitting CiphernodeSelected node="0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" party_id=2 -[CIPHER] [cn2] 2026-04-01T13:43:30.902530Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [cn4] 2026-04-01T13:43:30.902437Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [cn4] 2026-04-01T13:43:30.902443Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [cn4] 2026-04-01T13:43:30.902446Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65" -[CIPHER] [ag] 2026-04-01T13:43:30.902477Z  INFO e3_sortition::ciphernode_selector: CiphernodeSelector received CommitteeFinalized. -[CIPHER] [ag] 2026-04-01T13:43:30.902479Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn2] 2026-04-01T13:43:30.902452Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [ag] 2026-04-01T13:43:30.902482Z  INFO e3_sortition::ciphernode_selector: Getting e3_meta... -[CIPHER] [ag] 2026-04-01T13:43:30.902484Z  INFO e3_sortition::ciphernode_selector: Node not in finalized committee node="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" -[CIPHER] [ag] 2026-04-01T13:43:30.902531Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [cn5] 2026-04-01T13:43:30.902584Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [cn4] 2026-04-01T13:43:30.902440Z  INFO e3_sortition::ciphernode_selector: Getting e3_cache... -[CIPHER] [cn4] 2026-04-01T13:43:30.902414Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [cn4] 2026-04-01T13:43:30.902537Z  INFO e3_zk_prover::actors::commitment_consistency_checker: CommitmentConsistencyChecker started for E3 31337:0 with 6 link(s) -[CIPHER] [ag] 2026-04-01T13:43:30.902453Z  INFO e3_sortition::sortition: Storing finalized committee e3_id=31337:0 committee_size=3 -[CIPHER] [cn1] 2026-04-01T13:43:30.904926Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 1 }), ctx: EventContext { id: EventId(0xb8c9d9ae5c125a2ee5bf93fd36ac48c5fec78993104471f17f8835ebf321ec42), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 12, ts: 32743911715897084252643781980092732, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:30.905501Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. -[CIPHER] [cn1] 2026-04-01T13:43:30.905519Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes -[CIPHER] [cn1] 2026-04-01T13:43:30.905538Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes -[CIPHER] [cn2] 2026-04-01T13:43:30.907906Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 2 }), ctx: EventContext { id: EventId(0x2086318ed05c479271c785aece14a0d0916110e6e07dee7f28eb5c477f752671), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 12, ts: 32743911715897250273340446974433509, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:30.907987Z  INFO e3_events::eventbus: >>> CiphernodeSelected EnclaveEvent { payload: CiphernodeSelected(CiphernodeSelected { e3_id: E3id { id: "0", chain_id: 31337 }, threshold_m: 1, threshold_n: 3, seed: Seed(0x29878e0a9499fc55233dca773710c58181e352b44f32f938b6dbc120d774a9f5), error_size: 0x0140c0, esi_per_ct: 3, params: , party_id: 0 }), ctx: EventContext { id: EventId(0xa0f2f9ed8f9e8b695be806d9b6dd4d7b7a425e4f7a7a27cafe3c5ec05abfdda8), causation_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 12, ts: 32743911715897194933108225654097761, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:30.908097Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. -[CIPHER] [cn2] 2026-04-01T13:43:30.908106Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes -[CIPHER] [cn2] 2026-04-01T13:43:30.908111Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes -[CIPHER] [cn3] 2026-04-01T13:43:30.908130Z  INFO e3_keyshare::threshold_keyshare: CiphernodeSelected received. -[CIPHER] [cn3] 2026-04-01T13:43:30.908134Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-04-01T13:43:30.908139Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn1] 2026-04-01T13:43:30.909417Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:30.909423Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:30.909616Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x04be1f1b8b08c205bdb97b42889271d5e5eba1c1f50104661da9edeec4a3c085), causation_id: EventId(0xb8c9d9ae5c125a2ee5bf93fd36ac48c5fec78993104471f17f8835ebf321ec42), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 13, ts: 32743911716024514360704967562656060, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:30.909840Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation -[CIPHER] [cn2] 2026-04-01T13:43:30.911031Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:30.911036Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 -[CIPHER] [cn3] 2026-04-01T13:43:30.911045Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector started, scheduling timeout in 800s e3_id=31337:0 -[CIPHER] [cn3] 2026-04-01T13:43:30.911052Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector started, scheduling timeout in 60s e3_id=31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:30.913014Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc0c1cc0833c0aeece05bfb4bcd28358cb42f6f47f2e7e93cf9f729ead723869f), causation_id: EventId(0x04be1f1b8b08c205bdb97b42889271d5e5eba1c1f50104661da9edeec4a3c085), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 27, ts: 32743911716033295010884053309225276, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:30.913279Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(55)` -[CIPHER] [cn2] 2026-04-01T13:43:30.916106Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0x02980a5e17e0206b64987e96d1eaf733dc2a64def7d1f86048645e0f21560ad1), causation_id: EventId(0x2086318ed05c479271c785aece14a0d0916110e6e07dee7f28eb5c477f752671), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 13, ts: 32743911716054859254706221383440613, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:30.916126Z  INFO e3_events::eventbus: >>> EncryptionKeyPending EnclaveEvent { payload: EncryptionKeyPending(EncryptionKeyPending { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: None, signed_payload: None }, params_preset: InsecureDkg512 }), ctx: EventContext { id: EventId(0xfdfac64c64448ba7a78329e0ffdaef3fec1e41d618f347d5defc0298b66ad054), causation_id: EventId(0xa0f2f9ed8f9e8b695be806d9b6dd4d7b7a425e4f7a7a27cafe3c5ec05abfdda8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 13, ts: 32743911716055099062379179415930721, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:30.916410Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation -[CIPHER] [cn2] 2026-04-01T13:43:30.916385Z  INFO e3_zk_prover::actors::proof_request: Requesting C0 proof generation -[CIPHER] [cn3] 2026-04-01T13:43:30.922109Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x812efc85dd386ef41c7a028b21e83cac70d951c3dd1f12d90d1943659896076a), causation_id: EventId(0xfdfac64c64448ba7a78329e0ffdaef3fec1e41d618f347d5defc0298b66ad054), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 27, ts: 32743911716154508566192400189589345, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:30.922355Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(154)` -[CIPHER] [cn2] 2026-04-01T13:43:30.923602Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkBfv(PkBfvProofRequest { pk_bfv: , params_preset: InsecureDkg512 })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xcf86b2e277d8fe1098dae124f6cf8886d6d213f42d637769f8e5825b3cb5db02), causation_id: EventId(0x02980a5e17e0206b64987e96d1eaf733dc2a64def7d1f86048645e0f21560ad1), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 27, ts: 32743911716154028950846483932928229, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:30.923825Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_bfv(56)` -[CIPHER] [cn2] 2026-04-01T13:43:31.218061Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:31.219597Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:43:31.235518Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk / 31337:0 -[CIPHER] [ag] 2026-04-01T13:43:36.954703Z  INFO e3_evm::ciphernode_registry_sol: Committee finalized on registry tx=0x6caed53585f72b9fec4061733e3fa9ee92165041c3149b31bb1e5bd73e360871 -[CIPHER] [cn1] 2026-04-01T13:43:38.570188Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:38.570399Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(55) in 7.65711075s -[CIPHER] [cn1] 2026-04-01T13:43:38.570933Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd63afef23eb5a1348fd73b9b40bcba1ad607e76153fefaa4b917fc6bc861c3f7), causation_id: EventId(0xc0c1cc0833c0aeece05bfb4bcd28358cb42f6f47f2e7e93cf9f729ead723869f), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 14, ts: 32743911857346976064265655705303356, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:38.572133Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 1 (signer: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8) -[CIPHER] [cn1] 2026-04-01T13:43:38.572368Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0xa2bddb65dbc82baecd0508da7380be0b8f060fe4f1f95118079dfa1a0df6ba99), causation_id: EventId(0xd63afef23eb5a1348fd73b9b40bcba1ad607e76153fefaa4b917fc6bc861c3f7), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 15, ts: 32743911857377726786636529527847228, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:38.573507Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C0PkBfv, data_hash: [209, 213, 78, 226, 15, 77, 135, 245, 86, 155, 138, 14, 182, 29, 44, 37, 130, 247, 50, 16, 210, 140, 61, 188, 234, 194, 213, 19, 70, 164, 164, 104], public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), ctx: EventContext { id: EventId(0x3691749795f3cbe4aa26fb9b0325d4804cda09b7819e1f8ba2be676d1d85b3c2), causation_id: EventId(0xd63afef23eb5a1348fd73b9b40bcba1ad607e76153fefaa4b917fc6bc861c3f7), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 16, ts: 32743911857378519996631699038566716, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:38.573612Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 -[CIPHER] [cn1] 2026-04-01T13:43:38.573644Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn1] 2026-04-01T13:43:38.573648Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes -[CIPHER] [cn1] 2026-04-01T13:43:38.573660Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 -[CIPHER] [cn1] 2026-04-01T13:43:38.573658Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn1] 2026-04-01T13:43:38.573661Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 -[CIPHER] [cn1] 2026-04-01T13:43:38.573664Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 5.459µs -[CIPHER] [cn1] 2026-04-01T13:43:38.575627Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38.573578Z }, value: }), ctx: EventContext { id: EventId(0x947b32aa9e23fcd6e2c68e9a4e6477454f3474bc8d2b63f2016ec48495131e51), causation_id: EventId(0xa2bddb65dbc82baecd0508da7380be0b8f060fe4f1f95118079dfa1a0df6ba99), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 28, ts: 32743911857404935734145251116480828, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.584779Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), causation_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 28, ts: 32743911857584496340958741308606305, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:43:38.584807Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), causation_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 28, ts: 32743911857589052686744947759536357, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:43:38.587472Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c } }, signature: }) } }), ctx: EventContext { id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), causation_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 14, ts: 32743911857633749147635545811421025, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:38.587540Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c } }, signature: }) } }), ctx: EventContext { id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), causation_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 14, ts: 32743911857633988955308504227272933, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.588744Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 for key from party 1 -[CIPHER] [cn2] 2026-04-01T13:43:38.588777Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 for key from party 1 -[CIPHER] [cn3] 2026-04-01T13:43:38.625855Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key -[CIPHER] [cn3] 2026-04-01T13:43:38.626284Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x96bc11d51ce58f23f201d60ccd1ffb3b08a1337d121ae6a4f4796d5e40bf48fe), causation_id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 15, ts: 32743911858368815005484724024215393, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.627348Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C0PkBfv, data_hash: [209, 213, 78, 226, 15, 77, 135, 245, 86, 155, 138, 14, 182, 29, 44, 37, 130, 247, 50, 16, 210, 140, 61, 188, 234, 194, 213, 19, 70, 164, 164, 104], public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), ctx: EventContext { id: EventId(0x3691749795f3cbe4aa26fb9b0325d4804cda09b7819e1f8ba2be676d1d85b3c2), causation_id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 16, ts: 32743911858370216958034325950138209, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.627432Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn3] 2026-04-01T13:43:38.627443Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn3] 2026-04-01T13:43:38.627445Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 -[CIPHER] [cn3] 2026-04-01T13:43:38.627436Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-04-01T13:43:38.627446Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 -[CIPHER] [cn3] 2026-04-01T13:43:38.627447Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.125µs -[CIPHER] [cn2] 2026-04-01T13:43:38.636161Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 1 - accepting key -[CIPHER] [cn2] 2026-04-01T13:43:38.640579Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 1, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x96bc11d51ce58f23f201d60ccd1ffb3b08a1337d121ae6a4f4796d5e40bf48fe), causation_id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 15, ts: 32743911858558945596652448564402405, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:38.641669Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C0PkBfv, data_hash: [209, 213, 78, 226, 15, 77, 135, 245, 86, 155, 138, 14, 182, 29, 44, 37, 130, 247, 50, 16, 210, 140, 61, 188, 234, 194, 213, 19, 70, 164, 164, 104], public_signals: 0x297bdd90b33671496d615584f3f9b9886a58d5ec590fce90ff5f31a8bddb428c }), ctx: EventContext { id: EventId(0x3691749795f3cbe4aa26fb9b0325d4804cda09b7819e1f8ba2be676d1d85b3c2), causation_id: EventId(0xf50e92ec615bdf142ef4a343cfd9ab4abb78b69fcbe6b7b7aeed345cce945825), origin_id: EventId(0x5e532e2ad3a6669f8ea76ef3296fc49d60257cc136800052628b80ed9f28d50b), seq: 16, ts: 32743911858560310655713903071221989, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:38.641759Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn2] 2026-04-01T13:43:38.641771Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 1 -[CIPHER] [cn2] 2026-04-01T13:43:38.641762Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes -[CIPHER] [cn2] 2026-04-01T13:43:38.641770Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn2] 2026-04-01T13:43:38.641772Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 2 -[CIPHER] [cn2] 2026-04-01T13:43:38.641774Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.417µs -[CIPHER] [cn2] 2026-04-01T13:43:38.909254Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:38.909360Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(56) in 7.985528417s -[CIPHER] [cn2] 2026-04-01T13:43:38.909488Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xef8cf1fec1373c318068e7fca6352e63f8d834495fe5c3015046594e06b5c03a), causation_id: EventId(0xcf86b2e277d8fe1098dae124f6cf8886d6d213f42d637769f8e5825b3cb5db02), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 17, ts: 32743911863598965012471372256925925, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:38.910574Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 2 (signer: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC) -[CIPHER] [cn2] 2026-04-01T13:43:38.910752Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0xdb18b52b231040c8fc5e1d0e032fd2278f8076b8af49817b8a9151c3d29e4a43), causation_id: EventId(0xef8cf1fec1373c318068e7fca6352e63f8d834495fe5c3015046594e06b5c03a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 18, ts: 32743911863620842850942791785142501, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:38.911977Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C0PkBfv, data_hash: [116, 110, 6, 104, 92, 112, 64, 220, 203, 203, 92, 164, 8, 124, 37, 39, 232, 67, 82, 125, 77, 39, 8, 206, 43, 200, 181, 22, 150, 251, 0, 162], public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), ctx: EventContext { id: EventId(0xafa40a69d88307972e48e190077ef859681a1837b4633c4fd0b95683be695dd7), causation_id: EventId(0xef8cf1fec1373c318068e7fca6352e63f8d834495fe5c3015046594e06b5c03a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 19, ts: 32743911863621562273961666457655525, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:38.912100Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 -[CIPHER] [cn2] 2026-04-01T13:43:38.912128Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn2] 2026-04-01T13:43:38.912138Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn2] 2026-04-01T13:43:38.912139Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 -[CIPHER] [cn2] 2026-04-01T13:43:38.912131Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes -[CIPHER] [cn2] 2026-04-01T13:43:38.912141Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 -[CIPHER] [cn2] 2026-04-01T13:43:38.912142Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.417µs -[CIPHER] [cn2] 2026-04-01T13:43:38.914570Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38.912078Z }, value: }), ctx: EventContext { id: EventId(0x8adeec98d7cd91d609e988405c055bbb3efe62d80d0d5e1211f946c8e1c1d91c), causation_id: EventId(0xdb18b52b231040c8fc5e1d0e032fd2278f8076b8af49817b8a9151c3d29e4a43), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 29, ts: 32743911863648918795422977722702053, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.922458Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:43:38.922543Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_bfv`(154) in 8.000179584s -[CIPHER] [cn1] 2026-04-01T13:43:38.922614Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), causation_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 29, ts: 32743911863820787109957728006732092, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:43:38.922623Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), causation_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 29, ts: 32743911863816968633934471546242913, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:43:38.923808Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 } }, signature: }) } }), ctx: EventContext { id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), causation_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 17, ts: 32743911863863731130161325259589473, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:38.923801Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 } }, signature: }) } }), ctx: EventContext { id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), causation_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 17, ts: 32743911863863343748535775942310204, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.925067Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC for key from party 2 -[CIPHER] [cn1] 2026-04-01T13:43:38.925068Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC for key from party 2 -[CIPHER] [cn1] 2026-04-01T13:43:38.956225Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key -[CIPHER] [cn3] 2026-04-01T13:43:38.956225Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 2 - accepting key -[CIPHER] [cn1] 2026-04-01T13:43:38.956743Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x7973a9a8ab6d3fe58c1a1b9b99eadced9a6a20493907b720928f41220dec36e2), causation_id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 18, ts: 32743911864462973611395778627139900, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:38.957948Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C0PkBfv, data_hash: [116, 110, 6, 104, 92, 112, 64, 220, 203, 203, 92, 164, 8, 124, 37, 39, 232, 67, 82, 125, 77, 39, 8, 206, 43, 200, 181, 22, 150, 251, 0, 162], public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), ctx: EventContext { id: EventId(0xafa40a69d88307972e48e190077ef859681a1837b4633c4fd0b95683be695dd7), causation_id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 19, ts: 32743911864463895948599464104720700, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:38.958019Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn1] 2026-04-01T13:43:38.958022Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes -[CIPHER] [cn1] 2026-04-01T13:43:38.958029Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn1] 2026-04-01T13:43:38.958030Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 -[CIPHER] [cn1] 2026-04-01T13:43:38.958032Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 -[CIPHER] [cn1] 2026-04-01T13:43:38.958033Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 4.375µs -[CIPHER] [cn3] 2026-04-01T13:43:38.959350Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkBfv(PkBfvProofResponse { proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }, wrapped_proof: Proof { circuit: PkBfv, data: , public_signals: } })), correlation_id: 78, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x568a15d8a60abefb6a7135835a9af9b1d7edf3498e19a9c972e6cd2f1fc32bce), causation_id: EventId(0x812efc85dd386ef41c7a028b21e83cac70d951c3dd1f12d90d1943659896076a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 18, ts: 32743911863888375980243801220548449, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.960386Z  INFO e3_zk_prover::actors::proof_request: Signed C0 proof for party 0 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) -[CIPHER] [cn3] 2026-04-01T13:43:38.960445Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 2, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x7973a9a8ab6d3fe58c1a1b9b99eadced9a6a20493907b720928f41220dec36e2), causation_id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 19, ts: 32743911864462973611395780043835233, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.961598Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C0PkBfv, data_hash: [116, 110, 6, 104, 92, 112, 64, 220, 203, 203, 92, 164, 8, 124, 37, 39, 232, 67, 82, 125, 77, 39, 8, 206, 43, 200, 181, 22, 150, 251, 0, 162], public_signals: 0x2d443a8078f1ea3cc3242d3de15563e7dc7d2089ddf6006ffb147882bffd9877 }), ctx: EventContext { id: EventId(0xafa40a69d88307972e48e190077ef859681a1837b4633c4fd0b95683be695dd7), causation_id: EventId(0xe4d00f947ca066bdf2a8f00fd681ce54a4050400485d159ad8dd40badba5f48a), origin_id: EventId(0x20f5d24e966352693a2eec868fad75347dcf9f97312510415b38198b064b45cc), seq: 20, ts: 32743911864463766821390949554554721, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.961911Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn3] 2026-04-01T13:43:38.961914Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-04-01T13:43:38.967893Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn3] 2026-04-01T13:43:38.967896Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 2 -[CIPHER] [cn3] 2026-04-01T13:43:38.967897Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 1 -[CIPHER] [cn3] 2026-04-01T13:43:38.967898Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 5.416µs -[CIPHER] [cn3] 2026-04-01T13:43:38.967951Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 } }, signature: }) }, external: false }), ctx: EventContext { id: EventId(0x7b399f8becb0ae08346ab17cec94977d2266663fdb71cb50bc06cfc9fd3921fe), causation_id: EventId(0x568a15d8a60abefb6a7135835a9af9b1d7edf3498e19a9c972e6cd2f1fc32bce), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 21, ts: 32743911864539675173254264359454561, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.969048Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [23, 242, 163, 134, 170, 194, 244, 36, 102, 93, 235, 162, 162, 24, 89, 241, 45, 15, 158, 239, 121, 208, 180, 192, 225, 186, 84, 103, 61, 196, 245, 132], public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), ctx: EventContext { id: EventId(0x87230adcae208da8bcd0448114130343bc18ba91eac3993281508f0f98dcc8ee), causation_id: EventId(0x568a15d8a60abefb6a7135835a9af9b1d7edf3498e19a9c972e6cd2f1fc32bce), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 22, ts: 32743911864540431489761286451070817, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.969140Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 36062 -[CIPHER] [cn3] 2026-04-01T13:43:38.969163Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn3] 2026-04-01T13:43:38.969165Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-04-01T13:43:38.969170Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn3] 2026-04-01T13:43:38.969171Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 -[CIPHER] [cn3] 2026-04-01T13:43:38.969172Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 -[CIPHER] [cn3] 2026-04-01T13:43:38.969173Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! -[CIPHER] [cn3] 2026-04-01T13:43:38.969175Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 5.333µs -[CIPHER] [cn3] 2026-04-01T13:43:38.969180Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received -[CIPHER] [cn3] 2026-04-01T13:43:38.969270Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare -[CIPHER] [cn3] 2026-04-01T13:43:38.975135Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38.969117Z }, value: }), ctx: EventContext { id: EventId(0x796953d1308eb6623eb7151817feb354f9a2ac204d0ae00bf2f9fbf9fa91866e), causation_id: EventId(0x7b399f8becb0ae08346ab17cec94977d2266663fdb71cb50bc06cfc9fd3921fe), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 30, ts: 32743911864701139524131444064749409, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.979354Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 81, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x60bf23503c31c074bd6964ea0a7e4944accca87c3b3336ce58302c6070133ee4), causation_id: EventId(0x7b399f8becb0ae08346ab17cec94977d2266663fdb71cb50bc06cfc9fd3921fe), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 31, ts: 32743911864770573068824886817032033, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.979598Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(45)` -[CIPHER] [cn3] 2026-04-01T13:43:38.979602Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss -[CIPHER] [cn1] 2026-04-01T13:43:38.982792Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), causation_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 30, ts: 32743911864947864726117307900918076, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:43:38.982795Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:43:38Z }, value: }), ctx: EventContext { id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), causation_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 30, ts: 32743911864947680258676572413778149, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:43:38.985590Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 } }, signature: }) } }), ctx: EventContext { id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), causation_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 20, ts: 32743911864973395019915323528730853, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:38.985590Z  INFO e3_events::eventbus: >>> EncryptionKeyReceived EnclaveEvent { payload: EncryptionKeyReceived(EncryptionKeyReceived { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 } }, signature: }) } }), ctx: EventContext { id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), causation_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 20, ts: 32743911864973450360147543049009468, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.986826Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 -[CIPHER] [cn2] 2026-04-01T13:43:38.986862Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x90F79bf6EB2c4f870365E785982E1f101E93b906 for key from party 0 -[CIPHER] [cn1] 2026-04-01T13:43:38.986888Z  INFO e3_zk_prover::actors::proof_verification: Recovered address 0x90F79bf6EB2c4f870365E785982E1f101E93b906 for key from party 0 -[CIPHER] [cn3] 2026-04-01T13:43:38.987100Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... -[CIPHER] [cn3] 2026-04-01T13:43:38.991438Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(45) in 11.835917ms -[CIPHER] [cn3] 2026-04-01T13:43:38.991551Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 81, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x192139e366fed334b34339c0f135115694526fc471a47e3e0e07aef0f8a2bb2a), causation_id: EventId(0x60bf23503c31c074bd6964ea0a7e4944accca87c3b3336ce58302c6070133ee4), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 23, ts: 32743911865112815511624420128163681, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.992983Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss -[CIPHER] [cn3] 2026-04-01T13:43:38.993073Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare -[CIPHER] [cn3] 2026-04-01T13:43:38.993148Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc2c41b0b9d7fe82d13a9b98005535a1efda47988c8d9fbef061302ddce0adc20), causation_id: EventId(0x192139e366fed334b34339c0f135115694526fc471a47e3e0e07aef0f8a2bb2a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 32, ts: 32743911865142643896791608473126753, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:38.993355Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(165)` -[CIPHER] [cn3] 2026-04-01T13:43:38.993359Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss -[CIPHER] [cn3] 2026-04-01T13:43:38.997006Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... -[CIPHER] [cn3] 2026-04-01T13:43:38.997018Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... -[CIPHER] [cn3] 2026-04-01T13:43:39.000770Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... -[CIPHER] [cn3] 2026-04-01T13:43:39.001045Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(165) in 7.686416ms -[CIPHER] [cn3] 2026-04-01T13:43:39.001152Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xff52b02a9e817aeeefc676af455041e99b249182b47425602980b7e0aab235f5), causation_id: EventId(0xc2c41b0b9d7fe82d13a9b98005535a1efda47988c8d9fbef061302ddce0adc20), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 24, ts: 32743911865289885807987958114125665, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.001968Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss -[CIPHER] [cn3] 2026-04-01T13:43:39.002059Z  INFO e3_keyshare::threshold_keyshare: esi stored -[CIPHER] [cn1] 2026-04-01T13:43:39.017974Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key -[CIPHER] [cn2] 2026-04-01T13:43:39.018170Z  INFO e3_zk_prover::actors::proof_verification: C0 proof verified for party 0 - accepting key -[CIPHER] [cn1] 2026-04-01T13:43:39.018121Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x500f5dae69940667110e54a5eb23114c5483d67b9c4cd090f0d0467a4e695003), causation_id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 21, ts: 32743911865602023164459196020324668, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.019323Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [23, 242, 163, 134, 170, 194, 244, 36, 102, 93, 235, 162, 162, 24, 89, 241, 45, 15, 158, 239, 121, 208, 180, 192, 225, 186, 84, 103, 61, 196, 245, 132], public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), ctx: EventContext { id: EventId(0x87230adcae208da8bcd0448114130343bc18ba91eac3993281508f0f98dcc8ee), causation_id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 22, ts: 32743911865602797927710291821492540, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.019394Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn1] 2026-04-01T13:43:39.019397Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes -[CIPHER] [cn1] 2026-04-01T13:43:39.019403Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn1] 2026-04-01T13:43:39.019404Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 -[CIPHER] [cn1] 2026-04-01T13:43:39.019405Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 -[CIPHER] [cn1] 2026-04-01T13:43:39.019407Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! -[CIPHER] [cn1] 2026-04-01T13:43:39.019409Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 6.458µs -[CIPHER] [cn1] 2026-04-01T13:43:39.019523Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received -[CIPHER] [cn1] 2026-04-01T13:43:39.019598Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare -[CIPHER] [cn3] 2026-04-01T13:43:39.020549Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) -[CIPHER] [cn2] 2026-04-01T13:43:39.024927Z  INFO e3_events::eventbus: >>> EncryptionKeyCreated EnclaveEvent { payload: EncryptionKeyCreated(EncryptionKeyCreated { e3_id: E3id { id: "0", chain_id: 31337 }, key: EncryptionKey { party_id: 0, pk_bfv: , proof: Some(Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), signed_payload: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C0PkBfv, proof: Proof { circuit: PkBfv, data: , public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 } }, signature: }) }, external: true }), ctx: EventContext { id: EventId(0x500f5dae69940667110e54a5eb23114c5483d67b9c4cd090f0d0467a4e695003), causation_id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 21, ts: 32743911865605601832809497281714405, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.025986Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C0PkBfv, data_hash: [23, 242, 163, 134, 170, 194, 244, 36, 102, 93, 235, 162, 162, 24, 89, 241, 45, 15, 158, 239, 121, 208, 180, 192, 225, 186, 84, 103, 61, 196, 245, 132], public_signals: 0x14e492c13de68c3d7285282b2854b8bc38e865bd727667218e72f4101a7a1322 }), ctx: EventContext { id: EventId(0x87230adcae208da8bcd0448114130343bc18ba91eac3993281508f0f98dcc8ee), causation_id: EventId(0x2c4ae553089e287b3ff78e5e7ebb6ef80aa5a0d70c7a9d0cd364d97a8ce0895f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 22, ts: 32743911865606376596060593082882277, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.026047Z  INFO e3_keyshare::threshold_keyshare: Received EncryptionKeyCreated forwarding to encryption key collector! -[CIPHER] [cn2] 2026-04-01T13:43:39.026049Z  INFO e3_keyshare::threshold_keyshare: Setting up encryption key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes -[CIPHER] [cn2] 2026-04-01T13:43:39.026054Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: EncryptionKeyCreated received -[CIPHER] [cn2] 2026-04-01T13:43:39.026055Z  INFO e3_keyshare::encryption_key_collector: EncryptionKeyCollector: party_id = 0 -[CIPHER] [cn2] 2026-04-01T13:43:39.026057Z  INFO e3_keyshare::encryption_key_collector: All encryption keys collected! -[CIPHER] [cn2] 2026-04-01T13:43:39.026058Z  INFO e3_keyshare::encryption_key_collector: Finished processing EncryptionKeyCreated in 5µs -[CIPHER] [cn2] 2026-04-01T13:43:39.026056Z  INFO e3_keyshare::encryption_key_collector: Inserting encryption key... waiting on: 0 -[CIPHER] [cn2] 2026-04-01T13:43:39.026185Z  INFO e3_keyshare::threshold_keyshare: AllEncryptionKeysCollected - 3 keys received -[CIPHER] [cn2] 2026-04-01T13:43:39.026242Z  INFO e3_keyshare::threshold_keyshare: GenPkShareAndSkSss on ThresholdKeyshare -[CIPHER] [cn1] 2026-04-01T13:43:39.027835Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), causation_id: EventId(0x500f5dae69940667110e54a5eb23114c5483d67b9c4cd090f0d0467a4e695003), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 31, ts: 32743911865699975375490593739405628, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.028055Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(65)` -[CIPHER] [cn1] 2026-04-01T13:43:39.028060Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss -[CIPHER] [cn2] 2026-04-01T13:43:39.032165Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, crp: , lambda: 2, num_ciphertexts: 100 })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), causation_id: EventId(0x500f5dae69940667110e54a5eb23114c5483d67b9c4cd090f0d0467a4e695003), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 31, ts: 32743911865823052051950385476163813, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.032372Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_pk_share_and_sk_sss(137)` -[CIPHER] [cn2] 2026-04-01T13:43:39.032376Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss -[CIPHER] [cn1] 2026-04-01T13:43:39.035215Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 -[CIPHER] [cn1] 2026-04-01T13:43:39.035436Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... -[CIPHER] [cn1] 2026-04-01T13:43:39.037820Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(65) in 9.760125ms -[CIPHER] [cn3] 2026-04-01T13:43:39.027881Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), causation_id: EventId(0xff52b02a9e817aeeefc676af455041e99b249182b47425602980b7e0aab235f5), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 25, ts: 32743911865649505083704925822879585, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.038764Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof -[CIPHER] [cn3] 2026-04-01T13:43:39.038774Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof -[CIPHER] [cn3] 2026-04-01T13:43:39.038786Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof -[CIPHER] [cn3] 2026-04-01T13:43:39.038809Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:43:39.038851Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:43:39.038893Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping -[CIPHER] [cn2] 2026-04-01T13:43:39.039312Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss: n=3, t=1 -[CIPHER] [cn2] 2026-04-01T13:43:39.039527Z  INFO e3_trbfv::gen_pk_share_and_sk_sss: gen_pk_share_and_sk_sss:generate_secret_shares_from_poly... -[CIPHER] [cn1] 2026-04-01T13:43:39.040831Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xcbe45a20878c5925995e2bf341fbd09a452c77d3e71df21bc72c9ed7fdbf7949), causation_id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 23, ts: 32743911865968246374554551748557116, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.042281Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss -[CIPHER] [cn1] 2026-04-01T13:43:39.042369Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare -[CIPHER] [cn2] 2026-04-01T13:43:39.043753Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_pk_share_and_sk_sss`(137) in 11.376083ms -[CIPHER] [cn1] 2026-04-01T13:43:39.045278Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc16150d54bd6eddd75a1cf03a5c7e6410328fbd898b9df21d1e639132895319c), causation_id: EventId(0xcbe45a20878c5925995e2bf341fbd09a452c77d3e71df21bc72c9ed7fdbf7949), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 32, ts: 32743911866052013039393266822445372, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.045479Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(163)` -[CIPHER] [cn1] 2026-04-01T13:43:39.045484Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss -[CIPHER] [cn1] 2026-04-01T13:43:39.049053Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... -[CIPHER] [cn1] 2026-04-01T13:43:39.049063Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... -[CIPHER] [cn1] 2026-04-01T13:43:39.052363Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... -[CIPHER] [cn1] 2026-04-01T13:43:39.052569Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(163) in 7.08525ms -[CIPHER] [cn2] 2026-04-01T13:43:39.051740Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenPkShareAndSkSss(GenPkShareAndSkSssResponse { pk_share: , sk_sss: Encrypted(SensitiveBytes { encrypted: }, PhantomData), pk0_share_raw: , sk_raw: SensitiveBytes { encrypted: }, eek_raw: SensitiveBytes { encrypted: }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 83, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1488fe06904f179c88b331ea1b399ccbc0711e0c3eaeeea4f2eea4f151ecb24e), causation_id: EventId(0xe623f4f271bab6196b65f1709a5e96304be5601b63bd2555327e2a14117b3149), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 23, ts: 32743911866077672460399798417119461, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.053170Z  INFO e3_keyshare::threshold_keyshare: try_store_pk_share_and_sk_sss -[CIPHER] [cn2] 2026-04-01T13:43:39.053260Z  INFO e3_keyshare::threshold_keyshare: GenEsiSss on ThresholdKeyshare -[CIPHER] [cn2] 2026-04-01T13:43:39.058036Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(GenEsiSss(GenEsiSssRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, e_sm_raw: SensitiveBytes { encrypted: } })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x219d9d89bb1b47aec10690270f5affff4d23d70f31f6f9acc566871298899c33), causation_id: EventId(0x1488fe06904f179c88b331ea1b399ccbc0711e0c3eaeeea4f2eea4f151ecb24e), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 32, ts: 32743911866252879635611891738368229, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.058232Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `gen_esi_sss(141)` -[CIPHER] [cn2] 2026-04-01T13:43:39.058235Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss -[CIPHER] [cn3] 2026-04-01T13:43:39.058123Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xde5359f28b57b1d31d34affa627d9cda753738ed33388299b05bda21228a0a7a), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 33, ts: 32743911865985457186775324176910177, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.058048Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4865ef0d30ce6cfd8bc3f89d97a06763a629d3df3de68827a11a316bfcc259ac), causation_id: EventId(0xc16150d54bd6eddd75a1cf03a5c7e6410328fbd898b9df21d1e639132895319c), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 24, ts: 32743911866240298956153620215789884, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.058806Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss -[CIPHER] [cn1] 2026-04-01T13:43:39.058900Z  INFO e3_keyshare::threshold_keyshare: esi stored -[CIPHER] [cn3] 2026-04-01T13:43:39.058675Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x648fe9ba2fd6e5f02cb5c3dcb0bb90875e4f4b0bc094dbb030a37c1dae387c57), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 34, ts: 32743911865985641654216061272426337, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.059590Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5a900a98094fa8463c94cdd4853a0a2622160f48077e399886863dcf07edd179), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 35, ts: 32743911865985844568400872077494113, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.060475Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x2258334a4d9b212353a9c2cca1f295581596713f2597188ecced454e584a5819), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 36, ts: 32743911865986287290258641106732897, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.061873Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:mapping... -[CIPHER] [cn2] 2026-04-01T13:43:39.061885Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:generate_secret_shares_from_poly... -[CIPHER] [cn3] 2026-04-01T13:43:39.061258Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc6d1ffae189103b35d2498ccc8e9cbf25d2d8ce20fa96ea6452bd4dbec163210), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 37, ts: 32743911865986416417467157073594209, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.061974Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5cfef5f2025a507e162babc77a8ca90bb2aff3146311488712944df3a0e272d3), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 38, ts: 32743911865986527097931599330903905, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.062693Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x578e959bb7a4a1fa5331dc8c5b81300811a5ac04397cc63da4605d27ec7f7099), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 39, ts: 32743911865986656225140115297765217, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.063399Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x72b8d7366d6eef29b0a23c57eccb993840935878da1aa97b15e9a120ea85f5b2), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 40, ts: 32743911865986785352348631264626529, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.064103Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xabfc7576461d0f3d05f257521b931a5d7c856d3aa2ef34344c3cffedf92b700b), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 41, ts: 32743911865986896032813073521936225, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.064808Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb459ae7cf3d461ed243a9ea613c3e1e11aca585201404a6b311d4d29874fc49c), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 42, ts: 32743911865987043606765663198349153, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.065518Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdfa9d1ca4c8043842ca7211dd2517aa308d376aec6ea566957c38730f41fcb8d), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 43, ts: 32743911865987154287230105455658849, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.066209Z  INFO e3_trbfv::gen_esi_sss: gen_esi_sss:returning... -[CIPHER] [cn2] 2026-04-01T13:43:39.066441Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `gen_esi_sss`(141) in 8.206333ms -[CIPHER] [cn3] 2026-04-01T13:43:39.066225Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb2338ca27aa51d87fe9eee66f99dbd3b7ffffb5021f1111c42dcc1beb2fd5693), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 44, ts: 32743911865987283414438621422520161, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.066533Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(GenEsiSss(GenEsiSssResponse { esi_sss: [Encrypted(SensitiveBytes { encrypted: }, PhantomData)] })), correlation_id: 84, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x838f707cb7f3e91469423f320027c6b22a074f91b72616658eb17390450cd1b1), causation_id: EventId(0x219d9d89bb1b47aec10690270f5affff4d23d70f31f6f9acc566871298899c33), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 24, ts: 32743911866496302870408562981492965, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.067296Z  INFO e3_keyshare::threshold_keyshare: try_store_esi_sss -[CIPHER] [cn2] 2026-04-01T13:43:39.067392Z  INFO e3_keyshare::threshold_keyshare: esi stored -[CIPHER] [cn3] 2026-04-01T13:43:39.066930Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa65fd2310c216c007cea2f574c0f8a8fa9ff994bafa8b2381569fb61103e6616), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 45, ts: 32743911865987394094903063679829857, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.067665Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3fbe10bd940d30ac6a84f2cf4cc6a35fbf4c4e399d0ef61629b333147515649c), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 46, ts: 32743911865987504775367505937139553, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.068369Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4023e023780b609f190ca2fe69a9136bc759d3715582c3e1e0fa1714b9b1a3fd), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 47, ts: 32743911865987633902576021904000865, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.069131Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 26, ts: 32743911865987836816760832709068641, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:39.069187Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete -[CIPHER] [cn3] 2026-04-01T13:43:39.069326Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(209)` -[CIPHER] [ag] 2026-04-01T13:43:39.069840Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 12, ts: 32743911866554280987032229136183645, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:43:39.069927Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 0 — buffering until GeneratingC5Proof -[CIPHER] [cn4] 2026-04-01T13:43:39.070162Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 12, ts: 32743911866559021800259176208408321, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-04-01T13:43:39.073078Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 12, ts: 32743911866557287806316247539449925, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:43:39.076679Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) -[CIPHER] [cn2] 2026-04-01T13:43:39.084966Z  INFO e3_keyshare::threshold_keyshare: Publishing ThresholdSharePending for E3 31337:0 (15 proofs: C1, C2a, C2b + 6 C3a + 6 C3b) -[CIPHER] [cn1] 2026-04-01T13:43:39.078793Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), causation_id: EventId(0x4865ef0d30ce6cfd8bc3f89d97a06763a629d3df3de68827a11a316bfcc259ac), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 25, ts: 32743911866684939275306315247941948, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.089238Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof -[CIPHER] [cn1] 2026-04-01T13:43:39.089261Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof -[CIPHER] [cn1] 2026-04-01T13:43:39.089251Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof -[CIPHER] [cn1] 2026-04-01T13:43:39.089275Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:39.089320Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:39.089369Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping -[CIPHER] [cn2] 2026-04-01T13:43:39.086121Z  INFO e3_events::eventbus: >>> ThresholdSharePending EnclaveEvent { payload: ThresholdSharePending(ThresholdSharePending { e3_id: E3id { id: "0", chain_id: 31337 }, full_share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }, BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, proof_request: PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro }, e_sm_share_computation_request: ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro }, sk_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], e_sm_share_encryption_requests: [ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 }, ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 }], recipient_party_ids: [0, 1, 2], proof_aggregation_enabled: false }), ctx: EventContext { id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), causation_id: EventId(0x838f707cb7f3e91469423f320027c6b22a074f91b72616658eb17390450cd1b1), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 25, ts: 32743911866837807443445147910559973, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.096425Z  INFO e3_zk_prover::actors::proof_request: Requesting C1 PkGeneration proof -[CIPHER] [cn2] 2026-04-01T13:43:39.096435Z  INFO e3_zk_prover::actors::proof_request: Requesting C2a SkShareComputation proof -[CIPHER] [cn2] 2026-04-01T13:43:39.096447Z  INFO e3_zk_prover::actors::proof_request: Requesting C2b ESmShareComputation proof -[CIPHER] [cn2] 2026-04-01T13:43:39.096459Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3a SkShareEncryption proofs for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:39.096502Z  INFO e3_zk_prover::actors::proof_request: Requesting 6 C3b ESmShareEncryption proofs for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:39.096543Z  INFO e3_zk_prover::actors::node_proof_aggregator: NodeProofAggregator: proof aggregation disabled for E3 31337:0 — skipping -[CIPHER] [cn1] 2026-04-01T13:43:39.101973Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1ac115ab88a7577fd5cb48545844fc33bcbc5360ba32740cafd95d236f69e305), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 33, ts: 32743911866916556593895812378032444, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.102538Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3da487e215f8f7ea7b61c661bd8e37f25b15d6285daba7205876ff79534ace66), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 34, ts: 32743911866916759508080623183100220, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.103165Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkGeneration(PkGenerationProofRequest { pk0_share: , sk: SensitiveBytes { encrypted: }, eek: SensitiveBytes { encrypted: }, e_sm: SensitiveBytes { encrypted: }, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x61cbaaefb5b3a7d910ca85d772de74e82613bed38931eb232ea5e14cb047c9ea), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 33, ts: 32743911867049133343553564533872869, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.103383Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x50379dbe76a5ac736b1322b33af7b6def4ec74109feb7bb3e1e3307f40721ea3), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 35, ts: 32743911866916943975521360278616380, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.103754Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8bd358c8277856492a8536325594432f869e659fb6b6c137bd53c5d4773dfc98), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 34, ts: 32743911867049299364250227919837413, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.104223Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9289e0576a62439e83ebe70d3075de815815b8baa26b033b7f2bc866dc8a507f), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 36, ts: 32743911866917220676682465921890620, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.104617Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareComputation(ShareComputationProofRequest { secret_raw: SensitiveBytes { encrypted: }, secret_sss_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9bd0daf6a87e47410c35b63a19161d3aa67558e35bdd9bc57c01d3d4533ee0bf), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 35, ts: 32743911867049520725179112434456805, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.104945Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x60bcee8764567c78cf1b8a32a6e0fa1226360c140de825cb544f1300560ddfe5), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 37, ts: 32743911866917386697379129307855164, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.105481Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd11a80a1c3c1e06d89ede339a047f8ec36098711b2e3a5a37ce421e9816ae940), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 36, ts: 32743911867049760532852070658627813, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.105654Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x59025577ff7020ef697f46b02f00f061a6db2c36b29364687a6bc271e53430b2), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 38, ts: 32743911866917515824587645274716476, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.106188Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x62ce5928c38f5b55429f17c2d695bd1ffcda3c169439ebffb07ce3fb0ffa2daf), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 37, ts: 32743911867049871213316512915937509, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.106366Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfff870d844622c0eac7344c0ca448bd6a74fb78aab9778acaa02b66439548e89), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 39, ts: 32743911866917644951796161241577788, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.106893Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xf720b0fa07cf8938e27ae783d8ec490fef090b5609e1db8c7ef601d1f7dc6e7b), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 38, ts: 32743911867050000340525028882798821, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.107075Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3e6075f95167e3232a5fb7525c073eb0b18aeba6b7703beb2c2e5fba5cc7fa5a), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 40, ts: 32743911866917774079004677208439100, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.107599Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x6f8d207ae43192e67380479c16bd09874bec46a5a987ede57b08fdfd01bdf050), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 39, ts: 32743911867050111020989471140108517, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.107787Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x774d69b3d3399b2805c8d01b28d38d56b1bda3bfaeb5cec2cd74404e4e6470af), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 41, ts: 32743911866917884759469119465748796, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.108304Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x878aafa8a8b3975290ae2e391dc2f9c64690892cd4246916cf90029a65935270), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 40, ts: 32743911867050258594942060816521445, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.108520Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x672ca65f7f222fa893f28e8cfb77747accf6f06da8123cb69c81b980b6034958), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 42, ts: 32743911866918069226909856561264956, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.109024Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SecretKey, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xde597a223990ce0d1970be50975be3ce743b4c2529db7a49d0215a51f7a18a0c), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 41, ts: 32743911867050369275406503073831141, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.109247Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe5270875992b7c14e8eb0c08dbb6880a2d56ca358a0325d0162accd37295d595), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 43, ts: 32743911866918216800862446237677884, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.109724Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x26daef1b7eee7f99bf89028c481a09c97a78e9cca5286e3433dec7debaaa082c), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 42, ts: 32743911867050516849359092750244069, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.109971Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc87b6508099ca2da14e863cd3ba71d8b0bf9e4abf22b8bb294e38afd43b30227), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 44, ts: 32743911866918345928070962204539196, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.110432Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x98ec1e1f756791b811993d44e745f4c489f806d951aaeb5930b537ba41f8d389), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 43, ts: 32743911867050645976567608717105381, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.110703Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbf3773bafb973453ce1673cbd8ea0050b3c6f99942655822bfb58f42d50ca0cd), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 45, ts: 32743911866918456608535404461848892, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.111141Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5049e528a391315bf4aba588dcb19c51657430d62e4c181f38744a42d73513ea), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 44, ts: 32743911867050756657032050974415077, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.111429Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa435eac8e4c240e6f5c2f28235736ac58638db7cc40056d1397d40ec5068073a), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 46, ts: 32743911866918567288999846719158588, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.111857Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9ae4667dcc5e3a571b69cb40ecbb5f4bb203fda6d7a584a0339dcea0bf40d977), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 45, ts: 32743911867050867337496493231724773, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.112155Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x192777e19edb77b3bfade6c3a715cc005afdcbebcc664d72a5e9765cd4e22a5e), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 47, ts: 32743911866918751756440583814674748, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.112885Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 26, ts: 32743911866918973117369468329294140, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.112947Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete -[CIPHER] [cn1] 2026-04-01T13:43:39.113068Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(68)` -[CIPHER] [cn2] 2026-04-01T13:43:39.112570Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7d01556f246976c989c3677204ed16d9b0198fde170ef4aab7f6db37f0ee9e80), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 46, ts: 32743911867050996464705009198586085, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:39.113523Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 27, ts: 32743911867362414398157372240591164, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-04-01T13:43:39.113529Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 13, ts: 32743911867362580418854037986352897, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:43:39.113538Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 13, ts: 32743911867359628939802240740634973, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:43:39.113602Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 1 — buffering until GeneratingC5Proof -[CIPHER] [cn2] 2026-04-01T13:43:39.113305Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ShareEncryption(ShareEncryptionProofRequest { share_row_raw: SensitiveBytes { encrypted: }, ciphertext_raw: , recipient_pk_raw: , u_rns_raw: SensitiveBytes { encrypted: }, e0_rns_raw: SensitiveBytes { encrypted: }, e1_rns_raw: SensitiveBytes { encrypted: }, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512, committee_size: Micro, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa4d48fd3bec779d893f6f2dbb7309b4a454c86e2e00cac790ab3af5e57220921), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 47, ts: 32743911867051125591913525165447397, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.114171Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 26, ts: 32743911867051291612610188551411941, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:39.114219Z  WARN e3_net::net_event_translator: GossipPublish event: DKGRecursiveAggregationComplete -[CIPHER] [cn2] 2026-04-01T13:43:39.114345Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_generation(192)` -[CIPHER] [cn5] 2026-04-01T13:43:39.114956Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 13, ts: 32743911867366140640460263958708293, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:43:39.116462Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 27, ts: 32743911867365771705578788795680609, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:43:39.119911Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 28, ts: 32743911867383296112448811453020476, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:43:39.119954Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 14, ts: 32743911867386579632893930395545949, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:43:39.120012Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: early DKG proof from party 2 — buffering until GeneratingC5Proof -[CIPHER] [cn4] 2026-04-01T13:43:39.120011Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 14, ts: 32743911867386800993822818627624705, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:43:39.122947Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 28, ts: 32743911867427642085202010631800673, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-04-01T13:43:39.123148Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, aggregated_proof: None }), ctx: EventContext { id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), causation_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), origin_id: EventId(0xec88ac9b49cfd66f4412135d63d67348f686b8524c46c2512e022fda6b32ab84), seq: 14, ts: 32743911867400543818157732272472133, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:43:39.126088Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, aggregated_proof: None }), ctx: EventContext { id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), causation_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), origin_id: EventId(0x05a36f92fd68e2a8450c6306864f80d74941469986782e1c9f68f0cceeec24a0), seq: 27, ts: 32743911867390232088220527852804325, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:43:39.126129Z  INFO e3_events::eventbus: >>> DKGRecursiveAggregationComplete EnclaveEvent { payload: DKGRecursiveAggregationComplete(DKGRecursiveAggregationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, aggregated_proof: None }), ctx: EventContext { id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), causation_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), origin_id: EventId(0x9e96c5b023ed7e15b873be152a9a41dc1f88e29f4cc3eab16f3d8ce0fb8883fd), seq: 28, ts: 32743911867390453449149412367423717, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:43:40.076585Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:40.171750Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:40.180460Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for pk_generation / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:47.237900Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:47.238064Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(68) in 8.124991708s -[CIPHER] [cn1] 2026-04-01T13:43:47.238466Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x09dc09daa2ca06b5db87fbb4b3a6dae7a9a66d73c4547651c3b0fabc29f9f2d7), causation_id: EventId(0x1ac115ab88a7577fd5cb48545844fc33bcbc5360ba32740cafd95d236f69e305), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 29, ts: 32743912017236417719408334321383740, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:47.239479Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) -[CIPHER] [cn1] 2026-04-01T13:43:47.248105Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(22)` -[CIPHER] [cn3] 2026-04-01T13:43:47.303327Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:43:47.303514Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(209) in 8.234183208s -[CIPHER] [cn3] 2026-04-01T13:43:47.303804Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(169)` -[CIPHER] [cn3] 2026-04-01T13:43:47.303987Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x49b5196ac58cbe7330a3f59d729b05237cf3bab8b0e31bb563650e130bbb39a3), causation_id: EventId(0xde5359f28b57b1d31d34affa627d9cda753738ed33388299b05bda21228a0a7a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 29, ts: 32743912018444015373449657825068897, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:47.304955Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) -[CIPHER] [cn2] 2026-04-01T13:43:47.350387Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for pk_generation / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:47.350496Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_generation`(192) in 8.236145375s -[CIPHER] [cn2] 2026-04-01T13:43:47.350585Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(130)` -[CIPHER] [cn2] 2026-04-01T13:43:47.350840Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkGeneration(PkGenerationProofResponse { proof: Proof { circuit: PkGeneration, data: , public_signals: }, wrapped_proof: Proof { circuit: PkGeneration, data: , public_signals: } })), correlation_id: 85, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3a8ffca56faba4422cc6ceb600ccec61bd3e375d480fac6b2820ce97f07db988), causation_id: EventId(0x61cbaaefb5b3a7d910ca85d772de74e82613bed38931eb232ea5e14cb047c9ea), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 29, ts: 32743912019310551176312164203911397, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:47.351804Z  INFO e3_zk_prover::actors::proof_request: Received PkGeneration proof for E3 31337:0 (1/15) -[CIPHER] [cn1] 2026-04-01T13:43:49.098269Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:43:49.137144Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:49.199511Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:43:57.020917Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:43:57.021124Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(169) in 9.71731125s -[CIPHER] [cn3] 2026-04-01T13:43:57.021412Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(234)` -[CIPHER] [cn3] 2026-04-01T13:43:57.021574Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7ffa704dd7abc8c505457a817d5fc46ed03124c3ff54366d8b9774ad176b90d3), causation_id: EventId(0x4023e023780b609f190ca2fe69a9136bc759d3715582c3e1e0fa1714b9b1a3fd), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 30, ts: 32743912197702077137385522899158881, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:43:57.023553Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) -[CIPHER] [cn1] 2026-04-01T13:43:57.068769Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:57.068888Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(22) in 9.820766583s -[CIPHER] [cn1] 2026-04-01T13:43:57.068978Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(249)` -[CIPHER] [cn1] 2026-04-01T13:43:57.069283Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfad9ec73a13bc681878fdf04c28440c7f61ab396fb362a9af70545056e5cb0cf), causation_id: EventId(0x192777e19edb77b3bfade6c3a715cc005afdcbebcc664d72a5e9765cd4e22a5e), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 30, ts: 32743912198583130527834037086746940, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:43:57.071210Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) -[CIPHER] [cn2] 2026-04-01T13:43:57.130783Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:57.130885Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(130) in 9.780294917s -[CIPHER] [cn2] 2026-04-01T13:43:57.130993Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(148)` -[CIPHER] [cn2] 2026-04-01T13:43:57.131268Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 99, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xba984caa1b986f8e6571febfd4fc62bb46b8dbca0a8c1b0ea264fec0f667f75c), causation_id: EventId(0xa4d48fd3bec779d893f6f2dbb7309b4a454c86e2e00cac790ab3af5e57220921), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 30, ts: 32743912199726976234356620571728101, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:43:57.133220Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (2/15) -[CIPHER] [cn3] 2026-04-01T13:43:58.893800Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:43:59.048481Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:43:59.075017Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:06.399643Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:06.399809Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(234) in 9.378389792s -[CIPHER] [cn3] 2026-04-01T13:44:06.400180Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(38)` -[CIPHER] [cn3] 2026-04-01T13:44:06.400233Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa99c52d12b799e2c80d1d2a5fb3adc299e9aa761c0cf0879056d2502922149e0), causation_id: EventId(0x3fbe10bd940d30ac6a84f2cf4cc6a35fbf4c4e399d0ef61629b333147515649c), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 31, ts: 32743912370708149953115673030002529, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:44:06.402188Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) -[CIPHER] [cn1] 2026-04-01T13:44:06.986762Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:06.986908Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(249) in 9.917923958s -[CIPHER] [cn1] 2026-04-01T13:44:06.986992Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(243)` -[CIPHER] [cn1] 2026-04-01T13:44:06.987401Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9c354c8dd99d3021c8d0ff685bd4c264a1a792eead561a6ea6d9d914d0d2673c), causation_id: EventId(0xa435eac8e4c240e6f5c2f28235736ac58638db7cc40056d1397d40ec5068073a), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 31, ts: 32743912381538251845534623076612412, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:44:06.989408Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) -[CIPHER] [cn2] 2026-04-01T13:44:07.025861Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:44:07.026019Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(148) in 9.89501475s -[CIPHER] [cn2] 2026-04-01T13:44:07.026342Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(87)` -[CIPHER] [cn2] 2026-04-01T13:44:07.026499Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 98, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x069f0f11c5417fba19ddd1d93e68577746a2bc5146a710f14de93a2ded3e1fc8), causation_id: EventId(0x7d01556f246976c989c3677204ed16d9b0198fde170ef4aab7f6db37f0ee9e80), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 31, ts: 32743912382259722453001478958242021, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:44:07.028404Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (3/15) -[CIPHER] [cn3] 2026-04-01T13:44:08.143705Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:08.694293Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:44:08.708975Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:15.317259Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:15.317422Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(38) in 8.917235292s -[CIPHER] [cn3] 2026-04-01T13:44:15.318622Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(192)` -[CIPHER] [cn3] 2026-04-01T13:44:15.317930Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x9d5480f926324a1821db4e9eb9a165d4696dbcd55648e710497a7ad8b8aaa8e7), causation_id: EventId(0xa65fd2310c216c007cea2f574c0f8a8fa9ff994bafa8b2381569fb61103e6616), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 32, ts: 32743912535209111605989076164118369, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:44:15.319824Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) -[CIPHER] [cn2] 2026-04-01T13:44:16.907181Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:44:16.907662Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(87) in 9.881313583s -[CIPHER] [cn2] 2026-04-01T13:44:16.907751Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(21)` -[CIPHER] [cn2] 2026-04-01T13:44:16.909285Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7f8de9fcdcf08f442eec505a67cdaa4251c25174eff7ec5298512b7a491c9ca3), causation_id: EventId(0x9ae4667dcc5e3a571b69cb40ecbb5f4bb203fda6d7a584a0339dcea0bf40d977), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 32, ts: 32743912564544138602926059360901349, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:44:16.911176Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) -[CIPHER] [cn1] 2026-04-01T13:44:16.944209Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:16.945231Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(243) in 9.958230625s -[CIPHER] [cn1] 2026-04-01T13:44:16.947106Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(133)` -[CIPHER] [cn1] 2026-04-01T13:44:16.945565Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 97, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x80ec4d08e5c8650a42c19b91a0003ed01c967c4a8e7e5281b9435193dc3c1689), causation_id: EventId(0xbf3773bafb973453ce1673cbd8ea0050b3c6f99942655822bfb58f42d50ca0cd), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 32, ts: 32743912565236795396149777706154300, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:44:16.947433Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (4/15) -[CIPHER] [cn3] 2026-04-01T13:44:17.148288Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:44:18.492907Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:18.665944Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:25.654634Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:25.654713Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(192) in 10.336082875s -[CIPHER] [cn3] 2026-04-01T13:44:25.656851Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(108)` -[CIPHER] [cn3] 2026-04-01T13:44:25.655207Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7fe99a7a1e2fb0aa1e2920c4887eb0ca78566b5a7e77c3efed4b50fa4685b797), causation_id: EventId(0xb2338ca27aa51d87fe9eee66f99dbd3b7ffffb5021f1111c42dcc1beb2fd5693), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 33, ts: 32743912725898878926819782308366177, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:44:25.657150Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) -[CIPHER] [cn2] 2026-04-01T13:44:27.317977Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:44:27.318902Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(21) in 10.411137917s -[CIPHER] [cn2] 2026-04-01T13:44:27.319251Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(241)` -[CIPHER] [cn2] 2026-04-01T13:44:27.319372Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xed43ad3fc50175f071fe0317c3443bb5ea1a7a3b1a819b95a5f23b12dd8f2c55), causation_id: EventId(0x5049e528a391315bf4aba588dcb19c51657430d62e4c181f38744a42d73513ea), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 33, ts: 32743912756597397011965007012845797, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:44:27.321279Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) -[CIPHER] [cn3] 2026-04-01T13:44:27.768896Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:27.817542Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:27.818511Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(133) in 10.871389291s -[CIPHER] [cn1] 2026-04-01T13:44:27.818910Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(160)` -[CIPHER] [cn1] 2026-04-01T13:44:27.819106Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 96, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8a0cf85e68e387160a8e029ff884ee7590aead3a35a41092c16d5e6b410184a2), causation_id: EventId(0xc87b6508099ca2da14e863cd3ba71d8b0bf9e4abf22b8bb294e38afd43b30227), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 33, ts: 32743912765813593265375108196890940, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:44:27.821022Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (5/15) -[CIPHER] [cn2] 2026-04-01T13:44:28.821965Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:29.297041Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:36.150664Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:36.150833Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(108) in 10.493964208s -[CIPHER] [cn3] 2026-04-01T13:44:36.151168Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(225)` -[CIPHER] [cn3] 2026-04-01T13:44:36.151249Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7a4fb24ba3b6e91408a93f78947a1600fdd1e9969924e2cbc220c96eaec133ac), causation_id: EventId(0xdfa9d1ca4c8043842ca7211dd2517aa308d376aec6ea566957c38730f41fcb8d), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 34, ts: 32743912919517749398882607025063777, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:44:36.153293Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) -[CIPHER] [cn2] 2026-04-01T13:44:37.650123Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:44:37.651520Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(241) in 10.332258125s -[CIPHER] [cn2] 2026-04-01T13:44:37.651621Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(134)` -[CIPHER] [cn2] 2026-04-01T13:44:37.651950Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x34d2bfdb5ae7c4eca685f934e9047cc22f1a752ce080a4902931001e6f2be9f8), causation_id: EventId(0x98ec1e1f756791b811993d44e745f4c489f806d951aaeb5930b537ba41f8d389), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 34, ts: 32743912947200815123786678745979109, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:44:37.653820Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) -[CIPHER] [cn3] 2026-04-01T13:44:38.327096Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:38.430948Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:38.432491Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(160) in 10.613568s -[CIPHER] [cn1] 2026-04-01T13:44:38.432598Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(164)` -[CIPHER] [cn1] 2026-04-01T13:44:38.433016Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 95, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbad1cf2eda75b0b11f05447f0103733120c277549313fd4c251a9e11cbff78cf), causation_id: EventId(0xe5270875992b7c14e8eb0c08dbb6880a2d56ca358a0325d0162accd37295d595), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 34, ts: 32743912961607168843031625663150396, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:44:38.436885Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (6/15) -[CIPHER] [cn2] 2026-04-01T13:44:39.336826Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:39.811668Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:46.000963Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:46.001143Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(225) in 9.849968042s -[CIPHER] [cn3] 2026-04-01T13:44:46.001609Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(189)` -[CIPHER] [cn3] 2026-04-01T13:44:46.001907Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xf60676cf5a82423e791a2a777f40a2a76416eb9518c7372aa91d18cb108ba13a), causation_id: EventId(0xb459ae7cf3d461ed243a9ea613c3e1e11aca585201404a6b311d4d29874fc49c), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 35, ts: 32743913101224081483025277499180897, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:44:46.003970Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) -[CIPHER] [cn2] 2026-04-01T13:44:47.530798Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:44:47.530961Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(134) in 9.879333292s -[CIPHER] [cn2] 2026-04-01T13:44:47.531534Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(236)` -[CIPHER] [cn2] 2026-04-01T13:44:47.531571Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x91b927a6521c62743e6c36f75f2444cd6ba2b4a21cf4a9e0ecc666e0a648b3f4), causation_id: EventId(0x26daef1b7eee7f99bf89028c481a09c97a78e9cca5286e3433dec7debaaa082c), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 35, ts: 32743913129444095034426886848534757, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:44:47.533520Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) -[CIPHER] [cn3] 2026-04-01T13:44:48.019363Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:48.354278Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:48.354495Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(164) in 9.92188875s -[CIPHER] [cn1] 2026-04-01T13:44:48.354705Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(137)` -[CIPHER] [cn1] 2026-04-01T13:44:48.355222Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SmudgingNoise, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 94, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x687e75b0302ee0501c9ec79d4160e4b9310324704e258b6dfb4b4e2cb1c779c1), causation_id: EventId(0x672ca65f7f222fa893f28e8cfb77747accf6f06da8123cb69c81b980b6034958), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 35, ts: 32743913144636851900278145660647740, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:44:48.357246Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareEncryption { esi_index: 0, recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (7/15) -[CIPHER] [cn2] 2026-04-01T13:44:49.113985Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:49.834411Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:55.860488Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:44:55.860724Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(189) in 9.859101125s -[CIPHER] [cn3] 2026-04-01T13:44:55.861091Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(29)` -[CIPHER] [cn3] 2026-04-01T13:44:55.861288Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5832eddc70b77cff1c8c5f9d61c4040cfd83254b83fcb18aef525f0169747784), causation_id: EventId(0xabfc7576461d0f3d05f257521b931a5d7c856d3aa2ef34344c3cffedf92b700b), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 36, ts: 32743913283101304204266793259468641, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:44:55.863375Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) -[CIPHER] [cn2] 2026-04-01T13:44:58.483409Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:44:58.484851Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(236) in 10.953304958s -[CIPHER] [cn2] 2026-04-01T13:44:58.484944Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(152)` -[CIPHER] [cn2] 2026-04-01T13:44:58.485523Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x907a2ea149b09cfa116e067945195bdfd460705d569627bebcd1663ef129653a), causation_id: EventId(0xde597a223990ce0d1970be50975be3ce743b4c2529db7a49d0215a51f7a18a0c), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 36, ts: 32743913331507866496689870585485541, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:44:58.488914Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) -[CIPHER] [cn3] 2026-04-01T13:44:58.816899Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:59.635865Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:44:59.636515Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(137) in 11.281802791s -[CIPHER] [cn1] 2026-04-01T13:44:59.636571Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(227)` -[CIPHER] [cn1] 2026-04-01T13:44:59.636890Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 1, esi_index: 0 })), correlation_id: 93, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0e469fced2a9ae4a30bdf477bf0ca9bf55c226ed3500e1063ed04e5bea5aa115), causation_id: EventId(0x774d69b3d3399b2805c8d01b28d38d56b1bda3bfaeb5cec2cd74404e4e6470af), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 36, ts: 32743913352751948628713031838366012, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:44:59.638846Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 1 } proof for E3 31337:0 (8/15) -[CIPHER] [cn2] 2026-04-01T13:45:00.176588Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:01.172468Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:45:06.885839Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:45:06.886001Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(29) in 11.024900625s -[CIPHER] [cn3] 2026-04-01T13:45:06.886136Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(129)` -[CIPHER] [cn3] 2026-04-01T13:45:06.886406Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5e7443df6b11ff9a3ac8aea60e1e9f0cf4966e7014730b137f27da144ba9db83), causation_id: EventId(0x72b8d7366d6eef29b0a23c57eccb993840935878da1aa97b15e9a120ea85f5b2), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 37, ts: 32743913486481878045487459628975969, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:45:06.888986Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) -[CIPHER] [cn2] 2026-04-01T13:45:08.751331Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:45:08.752312Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(152) in 10.267359084s -[CIPHER] [cn2] 2026-04-01T13:45:08.752649Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(117)` -[CIPHER] [cn2] 2026-04-01T13:45:08.752824Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe227f48cded04319df38103bbe8dd40a5da7a5d9d7dee286805cba98860b253a), causation_id: EventId(0x878aafa8a8b3975290ae2e391dc2f9c64690892cd4246916cf90029a65935270), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 37, ts: 32743913520909313211412701644871909, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:45:08.754694Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) -[CIPHER] [cn3] 2026-04-01T13:45:09.106686Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:10.155924Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:10.156766Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(227) in 10.520187542s -[CIPHER] [cn1] 2026-04-01T13:45:10.157269Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(189)` -[CIPHER] [cn1] 2026-04-01T13:45:10.157319Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 2, row_index: 0, esi_index: 0 })), correlation_id: 92, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5af80d7043a205676cd785eb7e5a18c17fb31eef3c9c715ad6b0719e42a56935), causation_id: EventId(0x3e6075f95167e3232a5fb7525c073eb0b18aeba6b7703beb2c2e5fba5cc7fa5a), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 37, ts: 32743913546817267200847775123274044, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:45:10.159255Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 2, row_index: 0 } proof for E3 31337:0 (9/15) -[CIPHER] [cn2] 2026-04-01T13:45:10.328146Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:11.740600Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:45:17.164843Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:45:17.165498Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(129) in 10.279357042s -[CIPHER] [cn3] 2026-04-01T13:45:17.165613Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(141)` -[CIPHER] [cn3] 2026-04-01T13:45:17.165953Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4804ccefbd4f51b39f5892956966071cef3d98cb5f64533e7cc083c65d10bdf6), causation_id: EventId(0x578e959bb7a4a1fa5331dc8c5b81300811a5ac04397cc63da4605d27ec7f7099), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 38, ts: 32743913676104870156535542403270497, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:45:17.167834Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) -[CIPHER] [cn2] 2026-04-01T13:45:19.026827Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:45:19.028259Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(117) in 10.275601292s -[CIPHER] [cn2] 2026-04-01T13:45:19.028532Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(115)` -[CIPHER] [cn2] 2026-04-01T13:45:19.028718Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x39b743fc63126fa6f89dbfaeffc5beebfc17397f000d5b63f0601e6a75e04312), causation_id: EventId(0x6f8d207ae43192e67380479c16bd09874bec46a5a987ede57b08fdfd01bdf050), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 38, ts: 32743913710466764040766894382274789, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:45:19.030602Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) -[CIPHER] [cn3] 2026-04-01T13:45:19.337146Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:20.776598Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:20.777218Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(189) in 10.619936459s -[CIPHER] [cn1] 2026-04-01T13:45:20.777348Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(248)` -[CIPHER] [cn1] 2026-04-01T13:45:20.777672Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 1, esi_index: 0 })), correlation_id: 91, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa08cb290f6e99795516155a21483ad4aa39faaf0f85bb512d7e99f7760d49969), causation_id: EventId(0xfff870d844622c0eac7344c0ca448bd6a74fb78aab9778acaa02b66439548e89), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 38, ts: 32743913742729252428713434201356604, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:45:20.779817Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 1 } proof for E3 31337:0 (10/15) -[CIPHER] [cn2] 2026-04-01T13:45:20.784008Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:22.516964Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:45:27.305398Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:45:27.306655Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(141) in 10.141029875s -[CIPHER] [cn3] 2026-04-01T13:45:27.306750Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(207)` -[CIPHER] [cn3] 2026-04-01T13:45:27.306936Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xff646c1605c3c808d192f8030f32baefad60e5f2e26fbfc93b2b473b0e2f6655), causation_id: EventId(0x5cfef5f2025a507e162babc77a8ca90bb2aff3146311488712944df3a0e272d3), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 39, ts: 32743913863176197946843677740730209, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:45:27.311117Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) -[CIPHER] [cn2] 2026-04-01T13:45:29.433431Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:45:29.434565Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(115) in 10.406023875s -[CIPHER] [cn2] 2026-04-01T13:45:29.434712Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(226)` -[CIPHER] [cn2] 2026-04-01T13:45:29.434821Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x78caddd9d2049a1025a2ecb09323820305bece713b3db14001198f33c33929bb), causation_id: EventId(0xf720b0fa07cf8938e27ae783d8ec490fef090b5609e1db8c7ef601d1f7dc6e7b), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 39, ts: 32743913902429227575475043621165285, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:45:29.438967Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) -[CIPHER] [cn3] 2026-04-01T13:45:29.461071Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:45:31.078998Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:31.312811Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:31.313414Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(248) in 10.536060292s -[CIPHER] [cn1] 2026-04-01T13:45:31.313503Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(45)` -[CIPHER] [cn1] 2026-04-01T13:45:31.313581Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 1, row_index: 0, esi_index: 0 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x826da0010d76cf5786bbf9604855041a658567a66f01b4c9d12b9c4fc5507523), causation_id: EventId(0x59025577ff7020ef697f46b02f00f061a6db2c36b29364687a6bc271e53430b2), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 39, ts: 32743913937087948018596454195165500, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:45:31.315497Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 1, row_index: 0 } proof for E3 31337:0 (11/15) -[CIPHER] [cn1] 2026-04-01T13:45:33.139776Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:45:37.429771Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:45:37.430848Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(207) in 10.1240895s -[CIPHER] [cn3] 2026-04-01T13:45:37.431235Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(20)` -[CIPHER] [cn3] 2026-04-01T13:45:37.431278Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xae5e060d88924038937a892a2113ab0f7daaa466ed284a80b8071fc47029938a), causation_id: EventId(0xc6d1ffae189103b35d2498ccc8e9cbf25d2d8ce20fa96ea6452bd4dbec163210), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 40, ts: 32743914049934466043476888277714785, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:45:37.433222Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) -[CIPHER] [cn2] 2026-04-01T13:45:39.370599Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:45:39.370683Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(226) in 9.935963s -[CIPHER] [cn2] 2026-04-01T13:45:39.370746Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(231)` -[CIPHER] [cn2] 2026-04-01T13:45:39.371067Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x18d9f4454fecfec0a52448c8605c9ca54408641deded9c7dfa39a10c2c8c48d1), causation_id: EventId(0x62ce5928c38f5b55429f17c2d695bd1ffcda3c169439ebffb07ce3fb0ffa2daf), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 40, ts: 32743914085717958259748666852006117, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:45:39.373065Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) -[CIPHER] [cn3] 2026-04-01T13:45:39.504078Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:45:41.075526Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:41.389823Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:41.389907Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(45) in 10.076364s -[CIPHER] [cn1] 2026-04-01T13:45:41.389997Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_encryption(93)` -[CIPHER] [cn1] 2026-04-01T13:45:41.390329Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 1, esi_index: 0 })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb37d55e369edd2f9c7dcb207c53c56ec681893e9cc8723eb07a4b3aac25d6430), causation_id: EventId(0x60bcee8764567c78cf1b8a32a6e0fa1226360c140de825cb544f1300560ddfe5), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 40, ts: 32743914122966601570818898472892732, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:45:41.392228Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 1 } proof for E3 31337:0 (12/15) -[CIPHER] [cn1] 2026-04-01T13:45:43.007369Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:45:47.071603Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:45:47.071771Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(20) in 9.640529667s -[CIPHER] [cn3] 2026-04-01T13:45:47.072850Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(128)` -[CIPHER] [cn3] 2026-04-01T13:45:47.072243Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb33c2fd166d95f8d3e409580b34e4557c8276835275774568546bdad8c87fefe), causation_id: EventId(0x2258334a4d9b212353a9c2cca1f295581596713f2597188ecced454e584a5819), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 41, ts: 32743914227778289726257736867612513, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:45:47.075269Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) -[CIPHER] [cn3] 2026-04-01T13:45:48.837368Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base -[CIPHER] [cn2] 2026-04-01T13:45:49.618735Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:45:49.619647Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(231) in 10.248887166s -[CIPHER] [cn2] 2026-04-01T13:45:49.619748Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(107)` -[CIPHER] [cn2] 2026-04-01T13:45:49.619907Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa78567cf7ea445b267123cf3c2b49fa30bf9b6ca1171278d19b0f4323e8ec65c), causation_id: EventId(0xd11a80a1c3c1e06d89ede339a047f8ec36098711b2e3a5a37ce421e9816ae940), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 41, ts: 32743914274778250889572313463806181, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:45:49.623985Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) -[CIPHER] [cn3] 2026-04-01T13:45:50.664353Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn2] 2026-04-01T13:45:51.360452Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base -[CIPHER] [cn1] 2026-04-01T13:45:51.615919Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_encryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:45:51.616777Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_encryption`(93) in 10.226772792s -[CIPHER] [cn1] 2026-04-01T13:45:51.616866Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(243)` -[CIPHER] [cn1] 2026-04-01T13:45:51.617254Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareEncryption(ShareEncryptionProofResponse { proof: Proof { circuit: ShareEncryption, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareEncryption, data: , public_signals: }, dkg_input_type: SecretKey, recipient_party_id: 0, row_index: 0, esi_index: 0 })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xda84e0bf3cb84fee4f9b6d2e92224954ab3e8e3e8d2fc94e849118f28d891328), causation_id: EventId(0x9289e0576a62439e83ebe70d3075de815815b8baa26b033b7f2bc866dc8a507f), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 41, ts: 32743914311618870668476163512498492, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:45:51.619412Z  INFO e3_zk_prover::actors::proof_request: Received SkShareEncryption { recipient_party_id: 0, row_index: 0 } proof for E3 31337:0 (13/15) -[CIPHER] [cn2] 2026-04-01T13:45:52.706923Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn1] 2026-04-01T13:45:52.961897Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for e_sm_share_computation_base / 31337:0_base -[CIPHER] [cn1] 2026-04-01T13:45:54.000467Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn3] 2026-04-01T13:46:11.912337Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn2] 2026-04-01T13:46:14.235614Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn3] 2026-04-01T13:46:17.077657Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn1] 2026-04-01T13:46:18.422942Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn2] 2026-04-01T13:46:19.625942Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn1] 2026-04-01T13:46:21.621157Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn3] 2026-04-01T13:46:23.112350Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn2] 2026-04-01T13:46:25.118300Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn1] 2026-04-01T13:46:28.427913Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn3] 2026-04-01T13:46:30.267003Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:46:30.267872Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(128) in 43.195009833s -[CIPHER] [cn3] 2026-04-01T13:46:30.268371Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(139)` -[CIPHER] [cn3] 2026-04-01T13:46:30.268452Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x09b6dadabba1329aec49a9bd0a8af90043e340cc3ce67abf68c358209832415c), causation_id: EventId(0x5a900a98094fa8463c94cdd4853a0a2622160f48077e399886863dcf07edd179), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 42, ts: 32743915024606244810945110714058593, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:46:30.269453Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) -[CIPHER] [cn3] 2026-04-01T13:46:32.115565Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base -[CIPHER] [cn2] 2026-04-01T13:46:32.868389Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:46:32.869302Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(107) in 43.249542125s -[CIPHER] [cn2] 2026-04-01T13:46:32.869819Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(117)` -[CIPHER] [cn2] 2026-04-01T13:46:32.869996Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe938991f5b886b33a2dc775a2cce2ca8357f42a4d9cd4f3a34db9940a0f4cf4b), causation_id: EventId(0x9bd0daf6a87e47410c35b63a19161d3aa67558e35bdd9bc57c01d3d4533ee0bf), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 42, ts: 32743915072594010672662760089737445, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:46:32.870989Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) -[CIPHER] [cn3] 2026-04-01T13:46:33.918492Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn2] 2026-04-01T13:46:34.620573Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base -[CIPHER] [cn1] 2026-04-01T13:46:35.932797Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:46:35.933994Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(243) in 44.317118584s -[CIPHER] [cn1] 2026-04-01T13:46:35.934126Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_share_computation(53)` -[CIPHER] [cn1] 2026-04-01T13:46:35.934526Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 87, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x60c90491d496f886f976d28a8994231410866839c3313e20b8b8cff2ea27f5b6), causation_id: EventId(0x50379dbe76a5ac736b1322b33af7b6def4ec74109feb7bb3e1e3307f40721ea3), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 42, ts: 32743915129127544321175610513848636, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:46:35.935557Z  INFO e3_zk_prover::actors::proof_request: Received ESmShareComputation proof for E3 31337:0 (14/15) -[CIPHER] [cn2] 2026-04-01T13:46:36.044286Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn1] 2026-04-01T13:46:36.882866Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for sk_share_computation_base / 31337:0_base -[CIPHER] [cn1] 2026-04-01T13:46:37.887182Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation_chunk / 31337:0_chunk_0 -[CIPHER] [cn3] 2026-04-01T13:46:52.068762Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn2] 2026-04-01T13:46:54.653321Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn1] 2026-04-01T13:46:59.023663Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation_chunk_batch / 31337:0_batch_0 -[CIPHER] [cn3] 2026-04-01T13:47:00.271931Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn3] 2026-04-01T13:47:01.833870Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn2] 2026-04-01T13:47:02.883202Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn2] 2026-04-01T13:47:03.759514Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn1] 2026-04-01T13:47:05.936405Z  INFO e3_multithread::pool: msg="Job 'ZkShareComputation' has been running for 30s" -[CIPHER] [cn1] 2026-04-01T13:47:08.395712Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_computation / 31337:0_c2 -[CIPHER] [cn3] 2026-04-01T13:47:09.171464Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.172210Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(139) in 38.903830917s -[CIPHER] [cn3] 2026-04-01T13:47:09.174868Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8bd580b0ff621cc53052b7c7d0303a997f43523eb9d9723e683a88b088f01213), causation_id: EventId(0x648fe9ba2fd6e5f02cb5c3dcb0bb90875e4f4b0bc094dbb030a37c1dae387c57), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 43, ts: 32743915742303017375199883897833313, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.175857Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) -[CIPHER] [cn3] 2026-04-01T13:47:09.175860Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.177350Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 0 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) -[CIPHER] [cn3] 2026-04-01T13:47:09.177521Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties -[CIPHER] [cn3] 2026-04-01T13:47:09.178767Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd0fcc05f7fae71a4dd2746ac8ab346bf34725e2924a585c23ea5d1c71238cdfb), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 44, ts: 32743915742358173139980275457165153, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.179285Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x8249cd88eb3ea3ebd22868f6f985c9e0616a762b29a82e5d3cdda5fccf9a6db0), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 45, ts: 32743915742358283820444717714474849, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.179790Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xda23c7747295f71955c7672efc7872b08cc06f589222a4741ec1f34cdacf6a98), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 46, ts: 32743915742358376054165086262232929, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.180293Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xc0a4b3cc3ac0ea74e28a6f91e7a36757f95996874af30dff70a3c0e189d59ad7), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 47, ts: 32743915742358468287885454809991009, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.181730Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x53e00fced5e08d863172fcb6d9be82c5f0218e8af3a65068bf3e36a835fced84), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 48, ts: 32743915742358708095558413034162017, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.183155Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x42d067edc502ecaffb5a3ef6cbadc9640677727147e6d6bed0c58030e26d4f32), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 49, ts: 32743915742358929456487297548781409, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.184573Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9f3658aa931d2c6f84f59eeb133d9a551fbbdd2f824af922b0a135280ab0033a), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 50, ts: 32743915742359169264160255772952417, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.194241Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb4f24cee009199af2f93b459ef748ab6551bb39cf809582aefa2c4fd9be31556), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 55, ts: 32743915742360331409036899474704225, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.186623Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xf47cd453c89c6918cf8228cd44559f3f3d05c8373c83531b0a527ee27da81655), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 51, ts: 32743915742359390625089140287571809, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.188031Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4c2efb2fc4e81e1376a18dcf1cdcd340f55faaec67287a54ff2851d3f3732770), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 52, ts: 32743915742359630432762098511742817, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.195667Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x49fde9e4b9bea0ec82ddba02898a4a9b4eb0f6107d282c53ea0456658e056097), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 56, ts: 32743915742360571216709857698875233, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.197094Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6c63402b757390ea6c19b5bfda3fa00017a2933bcf7e8ab0c3cfa5a0639c29ca), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 57, ts: 32743915742360792577638742213494625, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.198513Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x072ceda5a33adfec042fa5e9fd57125ea42e937e3e5c3c7abdc89a288212e3d7), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 58, ts: 32743915742361032385311700437665633, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.190566Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x712e1ae452c9d0b755db302f4d8e77542c81338a9ae43a2683c68ab3cb689c45), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 53, ts: 32743915742359870240435056735913825, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.192818Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x01c48091cffafe421a547225af2dff9176d617511065e8d8764191fe728a37e7), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 54, ts: 32743915742360091601363941250533217, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.199937Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xee05cf156588c2727455d0a2cceba18d33d402c8b0be1bd0741e56320cea34c4), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 59, ts: 32743915742361382873449100919146337, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.209991Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xc44c1140a4d1b33dff494353b895ce39b0b5989c5beb2ed8bdffe5d44bb4036a), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 60, ts: 32743915742362858612974997683275617, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.217576Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x6592b64bc1b0759e8e2de6c04dffe94745cd5ac5bcf6fea9363c3f909a5282fc), causation_id: EventId(0xc1000ef9f5f921fff1f1d973e47f1ecf1f61415146d81ba5537c7cc4ec6272b8), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 61, ts: 32743915742364205225292378480543585, aggregate_id: AggregateId(31337), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.224479Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 0 (E3 31337:0) -[CIPHER] [cn3] 2026-04-01T13:47:09.224611Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn3] 2026-04-01T13:47:09.224685Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 1 (E3 31337:0) -[CIPHER] [cn3] 2026-04-01T13:47:09.224817Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn3] 2026-04-01T13:47:09.224886Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 0 for target party 2 (E3 31337:0) -[CIPHER] [cn3] 2026-04-01T13:47:09.225019Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn3] 2026-04-01T13:47:09.225133Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.225175Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.225200Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.225227Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.225276Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.225354Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.225455Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.225577Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.225766Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.226006Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.226262Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.226553Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.226874Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.227230Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.227615Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 0 E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:09.228031Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 0), forwarding to collector! -[CIPHER] [cn3] 2026-04-01T13:47:09.228034Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-04-01T13:47:09.228035Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn3] 2026-04-01T13:47:09.228057Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn3] 2026-04-01T13:47:09.228058Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 -[CIPHER] [cn3] 2026-04-01T13:47:09.228060Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 -[CIPHER] [cn3] 2026-04-01T13:47:09.228063Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 6.084µs -[CIPHER] [cn3] 2026-04-01T13:47:09.252629Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-05-01T13:47:09.224609Z }, value: }), ctx: EventContext { id: EventId(0x10734e27a97d70bfb672658808f4f878d1340503fba976d992d750be59072869), causation_id: EventId(0xee05cf156588c2727455d0a2cceba18d33d402c8b0be1bd0741e56320cea34c4), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 48, ts: 32743915743230021605136009995192161, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.260083Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-05-01T13:47:09.224817Z }, value: }), ctx: EventContext { id: EventId(0x11c466d6ac7a8b17e93d8bf09783ab57d41bd51a2d75d2ebafffe139b0313ac7), causation_id: EventId(0xc44c1140a4d1b33dff494353b895ce39b0b5989c5beb2ed8bdffe5d44bb4036a), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 49, ts: 32743915743233766294182973034170209, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:09.270945Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-05-01T13:47:09.225019Z }, value: }), ctx: EventContext { id: EventId(0x271e858e8f03938506f72a5fcbb11a469d07b0fddc97e27bb48242aaa069f008), causation_id: EventId(0x6592b64bc1b0759e8e2de6c04dffe94745cd5ac5bcf6fea9363c3f909a5282fc), origin_id: EventId(0xf3b78fb80900dacfb815ad57220aff2e3ccae63761dc393be8778fa203f6e5f3), seq: 50, ts: 32743915743237492536485862363596641, aggregate_id: AggregateId(0), block: Some(104), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:09.347922Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-05-01T13:47:09Z }, value: }), ctx: EventContext { id: EventId(0x96f7da0f38f8753a0eb80e49058beceb98314b328aede7225bb2fab361954509), causation_id: EventId(0x96f7da0f38f8753a0eb80e49058beceb98314b328aede7225bb2fab361954509), origin_id: EventId(0x96f7da0f38f8753a0eb80e49058beceb98314b328aede7225bb2fab361954509), seq: 48, ts: 32743915745492717679961297497643237, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:47:09.348657Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-05-01T13:47:09Z }, value: }), ctx: EventContext { id: EventId(0x5b74d1ba36d2fdee1b8457179dca62fbab52ecdd0263eeedd1c3e899d2e8163b), causation_id: EventId(0x5b74d1ba36d2fdee1b8457179dca62fbab52ecdd0263eeedd1c3e899d2e8163b), origin_id: EventId(0x5b74d1ba36d2fdee1b8457179dca62fbab52ecdd0263eeedd1c3e899d2e8163b), seq: 48, ts: 32743915745508803240793570618276156, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:47:09.355972Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x4fd103a81a20f00042c3af53cf7329ae3afcd62199b4a25e5e71951e482243f6), causation_id: EventId(0x96f7da0f38f8753a0eb80e49058beceb98314b328aede7225bb2fab361954509), origin_id: EventId(0x96f7da0f38f8753a0eb80e49058beceb98314b328aede7225bb2fab361954509), seq: 43, ts: 32743915745645272253450875489507557, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:09.362879Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 2), forwarding to collector! -[CIPHER] [cn2] 2026-04-01T13:47:09.362887Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn2] 2026-04-01T13:47:09.362884Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes -[CIPHER] [cn2] 2026-04-01T13:47:09.362898Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn2] 2026-04-01T13:47:09.362899Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 -[CIPHER] [cn2] 2026-04-01T13:47:09.362900Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 -[CIPHER] [cn2] 2026-04-01T13:47:09.362903Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 5.083µs -[CIPHER] [cn1] 2026-04-01T13:47:09.356778Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 0, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xf12d096e1e51664e45053aa64a3c086b1476b4bddc7c411c97eb4b27e3c0654b), causation_id: EventId(0x5b74d1ba36d2fdee1b8457179dca62fbab52ecdd0263eeedd1c3e899d2e8163b), origin_id: EventId(0x5b74d1ba36d2fdee1b8457179dca62fbab52ecdd0263eeedd1c3e899d2e8163b), seq: 43, ts: 32743915745660066542197988941527356, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:09.363570Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 0 for us (party 1), forwarding to collector! -[CIPHER] [cn1] 2026-04-01T13:47:09.363574Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes -[CIPHER] [cn1] 2026-04-01T13:47:09.363575Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn1] 2026-04-01T13:47:09.363581Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn1] 2026-04-01T13:47:09.363582Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 0 -[CIPHER] [cn1] 2026-04-01T13:47:09.363583Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 2 -[CIPHER] [cn1] 2026-04-01T13:47:09.363585Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 3.584µs -[CIPHER] [cn2] 2026-04-01T13:47:10.449862Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.450725Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(117) in 37.580892875s -[CIPHER] [cn2] 2026-04-01T13:47:10.450986Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x99ef829b6303c05a88d03dff79ff615e2d5b48e3d2ebb71af9ed1166c7c27399), causation_id: EventId(0x8bd358c8277856492a8536325594432f869e659fb6b6c137bd53c5d4773dfc98), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 44, ts: 32743915765848718212043861415450853, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.453098Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) -[CIPHER] [cn2] 2026-04-01T13:47:10.453109Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.456134Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 2 (signer: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC) -[CIPHER] [cn2] 2026-04-01T13:47:10.456399Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties -[CIPHER] [cn2] 2026-04-01T13:47:10.463624Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6b20978dcd4825ab7de1206f38175350665a3e4d1c003a67811f3cff8636d370), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 45, ts: 32743915765947740334231534288525541, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.464147Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd78dc9d9ba26986a4622fc5771339d707528b662e8fc01058fa486cd7f939c4f), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 46, ts: 32743915765947943248416345093593317, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.464642Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe14d6cfc2a7e587a384c094b6f8289083f0b9594d39cce08a4e390b1bdc8f56b), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 47, ts: 32743915765948072375624861060454629, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.465136Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x17a7f149c2c2eb55fa69dbe24fa1231485a7954301f1d2c4e22ac60e4dbc280b), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 48, ts: 32743915765948219949577450736867557, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.466557Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa5c0265006a36e1df07fa9388f28aab72d1f7986684f8d54f9a010e8820b4c5c), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 49, ts: 32743915765948551990970777508796645, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.467986Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6cd9e7f8b20d89e1f7afb54581203e37e5f0d9ff6cb2e74275a4746be986e42e), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 50, ts: 32743915765948920925852251699828965, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.469405Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x3dbf57d3492dec7446994da2d5e2dd6eaaf7821a71c3430405c7628adc002201), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 51, ts: 32743915765949271413989652181309669, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.470807Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x14804250f5e648c443f199f819e5e0b37523a98d757b01e007ddf74c56c28605), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 52, ts: 32743915765949621902127052662790373, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.472218Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa42089b3617474c7b4910e60e02c617a8631b6cc9845574e288356149dc28d28), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 53, ts: 32743915765949972390264453144271077, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.473632Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xbbe5bdf35800651032ce180f6b13165f7b3aeec77724742d20fd184f4c70caa9), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 54, ts: 32743915765950322878401853625751781, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.475028Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x4f4948c88f20bce35a4a90f4270a48055005edbc586bdd08f6e3cd09225c0f7f), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 55, ts: 32743915765950673366539254107232485, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.476427Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x1e545484ba299f7632b0d54ce7c24a89225b962e7f9d60e60e94565203261db6), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 56, ts: 32743915765951023854676654588713189, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.477829Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xe5bb945cb018815a03be39cf9e9fb0b0454bd806bfdb21e7b5124933356220f4), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 57, ts: 32743915765951374342814055070193893, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.479232Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa551e235a3397b7a1c8ab1bbb53a03892f6b899b8e0cf3b4f8989d11993364ff), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 58, ts: 32743915765951724830951455551674597, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.481484Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xa652f6364c0db07ea5697be5f40390c351979f5bf166245ddaa4d6daf58e6890), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 59, ts: 32743915765952075319088856033155301, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.484630Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x195c3e49614c2fa5632632a7e0e9ec9c65e852a7273d06b31b58aa121c531c44), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 60, ts: 32743915765952554934434772481497317, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.494386Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x7fd23b38479a2bb5d14eeb26d6fae0144c210b27be205ba08b3a5d9c1a3543c7), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 61, ts: 32743915765954879224188059885000933, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.501205Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xa07eabfd9b59ebc6f8301718a474e525ab1462c3a644727f9fec91ed77abb9e3), causation_id: EventId(0xb5a2ac42dfaff072b0fa3cd83d380f835858a18f380df70ae7f2a18b082917ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 62, ts: 32743915765956816132315799387920613, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.508571Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 0 (E3 31337:0) -[CIPHER] [cn2] 2026-04-01T13:47:10.508700Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn2] 2026-04-01T13:47:10.508770Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 1 (E3 31337:0) -[CIPHER] [cn2] 2026-04-01T13:47:10.508888Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn2] 2026-04-01T13:47:10.508956Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 2 for target party 2 (E3 31337:0) -[CIPHER] [cn2] 2026-04-01T13:47:10.509084Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn2] 2026-04-01T13:47:10.509177Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.509198Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.509223Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.509250Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.509298Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.509385Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.509498Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.509651Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.509866Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.510102Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.510366Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.510664Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.510950Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.511262Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.511601Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 2 E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:10.511971Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 2), forwarding to collector! -[CIPHER] [cn2] 2026-04-01T13:47:10.511974Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes -[CIPHER] [cn2] 2026-04-01T13:47:10.511975Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn2] 2026-04-01T13:47:10.512002Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn2] 2026-04-01T13:47:10.512003Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 -[CIPHER] [cn2] 2026-04-01T13:47:10.512004Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 -[CIPHER] [cn2] 2026-04-01T13:47:10.512005Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 3.959µs -[CIPHER] [cn2] 2026-04-01T13:47:10.521778Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-05-01T13:47:10.508699Z }, value: }), ctx: EventContext { id: EventId(0x91a4a180523cd130027fea59f0dedae9da05d82108124c1b698e761cb6ea38b3), causation_id: EventId(0x195c3e49614c2fa5632632a7e0e9ec9c65e852a7273d06b31b58aa121c531c44), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 49, ts: 32743915766917227415769413483256037, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.531535Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-05-01T13:47:10.508888Z }, value: }), ctx: EventContext { id: EventId(0x4ca27290ced4010f2765a36c10719178a21736824a219f773ae4989f2308ebae), causation_id: EventId(0x7fd23b38479a2bb5d14eeb26d6fae0144c210b27be205ba08b3a5d9c1a3543c7), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 50, ts: 32743915766920713850399344588511461, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:10.539796Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-05-01T13:47:10.509084Z }, value: }), ctx: EventContext { id: EventId(0x8f0604cb16b8930fb8895bd85d58a4d25a0a3081bee8e322b0752de8462632f7), causation_id: EventId(0xa07eabfd9b59ebc6f8301718a474e525ab1462c3a644727f9fec91ed77abb9e3), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 51, ts: 32743915766924310965493717951076581, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:10.601643Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-05-01T13:47:10Z }, value: }), ctx: EventContext { id: EventId(0xe90ecc41ba28f4bebaee0ce302bda608f7305e2cd8f55d87a47fbbc91678a148), causation_id: EventId(0xe90ecc41ba28f4bebaee0ce302bda608f7305e2cd8f55d87a47fbbc91678a148), origin_id: EventId(0xe90ecc41ba28f4bebaee0ce302bda608f7305e2cd8f55d87a47fbbc91678a148), seq: 49, ts: 32743915768626705635824149732686140, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:47:10.600578Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-05-01T13:47:10Z }, value: }), ctx: EventContext { id: EventId(0xc6128994cc779773e1bbf757dba7569b12a9d3d4c0720357349b7233ee13c157), causation_id: EventId(0xc6128994cc779773e1bbf757dba7569b12a9d3d4c0720357349b7233ee13c157), origin_id: EventId(0xc6128994cc779773e1bbf757dba7569b12a9d3d4c0720357349b7233ee13c157), seq: 51, ts: 32743915768607225874082313862874977, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:47:10.609720Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x716659aa3257a72086df984135dd4f8d590bbe9ace1e8cfc3b4556ac54cebfec), causation_id: EventId(0xe90ecc41ba28f4bebaee0ce302bda608f7305e2cd8f55d87a47fbbc91678a148), origin_id: EventId(0xe90ecc41ba28f4bebaee0ce302bda608f7305e2cd8f55d87a47fbbc91678a148), seq: 44, ts: 32743915768775552413754912104675644, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:10.616396Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 1), forwarding to collector! -[CIPHER] [cn1] 2026-04-01T13:47:10.616415Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 -[CIPHER] [cn1] 2026-04-01T13:47:10.616417Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 5.417µs -[CIPHER] [cn1] 2026-04-01T13:47:10.616400Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes -[CIPHER] [cn1] 2026-04-01T13:47:10.616402Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn1] 2026-04-01T13:47:10.616412Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn1] 2026-04-01T13:47:10.616414Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 -[CIPHER] [cn3] 2026-04-01T13:47:10.610062Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 2, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xb132cbbc2ec5f7407c50b468cbb1bb9aa6e5922f6e5a64b370c0069c26a65f6e), causation_id: EventId(0xc6128994cc779773e1bbf757dba7569b12a9d3d4c0720357349b7233ee13c157), origin_id: EventId(0xc6128994cc779773e1bbf757dba7569b12a9d3d4c0720357349b7233ee13c157), seq: 62, ts: 32743915768782433049294407184123745, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:10.616807Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 2 for us (party 0), forwarding to collector! -[CIPHER] [cn3] 2026-04-01T13:47:10.616812Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-04-01T13:47:10.616813Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn3] 2026-04-01T13:47:10.616823Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn3] 2026-04-01T13:47:10.616824Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 2 -[CIPHER] [cn3] 2026-04-01T13:47:10.616825Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 1 -[CIPHER] [cn3] 2026-04-01T13:47:10.616826Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 3.167µs -[CIPHER] [cn1] 2026-04-01T13:47:12.768591Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_computation / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.769141Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_share_computation`(53) in 36.835006041s -[CIPHER] [cn1] 2026-04-01T13:47:12.769302Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ShareComputation(ShareComputationProofResponse { proof: Proof { circuit: ShareComputation, data: , public_signals: }, wrapped_proof: Proof { circuit: ShareComputation, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 86, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x72ec4baee92da8242fb2fb6b874ca1df1ff2f9e3a2c39ebeb3e13426e66077d7), causation_id: EventId(0x3da487e215f8f7ea7b61c661bd8e37f25b15d6285daba7205876ff79534ace66), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 45, ts: 32743915808615668119276157983160636, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.770277Z  INFO e3_zk_prover::actors::proof_request: Received SkShareComputation proof for E3 31337:0 (15/15) -[CIPHER] [cn1] 2026-04-01T13:47:12.770281Z  INFO e3_zk_prover::actors::proof_request: All 15 threshold proofs complete for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.771786Z  INFO e3_zk_prover::actors::proof_request: All proofs signed for E3 31337:0 party 1 (signer: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8) -[CIPHER] [cn1] 2026-04-01T13:47:12.771959Z  INFO e3_zk_prover::actors::proof_request: Publishing ThresholdShareCreated for E3 31337:0 to 3 parties -[CIPHER] [cn1] 2026-04-01T13:47:12.780244Z  INFO e3_events::eventbus: >>> PkGenerationProofSigned EnclaveEvent { payload: PkGenerationProofSigned(PkGenerationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x8c0de814555ea380ed668d6698e79dec1c7626e4645edd912a474c05f1fc0231), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 46, ts: 32743915808663814121308539912878396, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.780748Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xb791b568406f6eec546162a8675f09acea8f60e603eccda9adfc409ebcacee7a), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 47, ts: 32743915808663943248517055879739708, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.781265Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xf49de7179b409dba6c7ca741fe422c5b66642f5a567ebbd0da71d1740d2d1ea7), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 48, ts: 32743915808664053928981498137049404, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.781777Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd6f47e95aa77788d4aa0f8e12e6d0ce78de7396cac3be1b4b2d319b78bde1df2), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 49, ts: 32743915808664146162701866684807484, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.783221Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x2526a81a2ba4b58ead9d3ac4cd711afa9c28df11667392b2c749de30d530131e), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 50, ts: 32743915808664441310607046037633340, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.784692Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x6023c9c1ee73fc353ef3fd955dceb0bc45edbfa0c02615517aa6332ef8751f74), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 51, ts: 32743915808664681118280004261804348, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.786091Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xde843aa2923041ee57a565e825b82b4c74d114b387efb742b4ae8ad9b843f94b), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 52, ts: 32743915808664920925952962485975356, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.787562Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x886b51b30099077817f00c1bb466d003740a3ed1afbc5440ba5395edd709d50f), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 53, ts: 32743915808665142286881847000594748, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.788995Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xf9e1536d32e4beee49a29da8f7780324e1d38b9963f02fc49d29b8a6d776d338), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 54, ts: 32743915808665363647810731515214140, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.790425Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xee1850f861c85c3f2f2d04e3e6de720a32d0193755bb2a2beb1aaf9cdbf6deaf), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 55, ts: 32743915808665640348971837158488380, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.791864Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x03c40f2e6ee0432f13b97001cd24f569c2eeb228886a1d00da74970e8f9178b6), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 56, ts: 32743915808665861709900721673107772, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.793352Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0xd87171060cea9d9fc25512f1ffe135790796452972e1d37bfe4596380d045795), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 57, ts: 32743915808666083070829606187727164, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.794802Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x0069eff3d4ad91981b3a6668a072e62a3cb895729f67e7ff81f991e6cad039bd), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 58, ts: 32743915808666304431758490702346556, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.796243Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x702c0fe8894c920b87aa20e39359dfe4b2fd7aa5a7f80400c65405384f57ba3c), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 59, ts: 32743915808666525792687375216965948, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.797712Z  INFO e3_events::eventbus: >>> DkgProofSigned EnclaveEvent { payload: DkgProofSigned(DkgProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x5613cfdb21b9979dae044195dfab8af753ac9ca1c5f7b019b305b27e87179c54), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 60, ts: 32743915808666747153616259731585340, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.799181Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x7641cb089d25de1fa6a94017f034abbfc8d0059f6cf0b9d6d3d667652cbe34a1), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 61, ts: 32743915808667023854777365374859580, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.806060Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 1, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x0254047e492a660190b489cfdec2ceb2f6e95ea81521cd9f9cd48e75412b1f53), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 62, ts: 32743915808668628721511778105850172, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.812758Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: false, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0x4c40e89046a6f332d2e5625275850c82c4dfca986a78c9c6246f50d6e2739115), causation_id: EventId(0xf4a8a3f9e77f353cf26ede720a73bb1ac541664cd941ff8864693f5e61993a38), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 63, ts: 32743915808669919993596937774463292, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.819508Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 0 (E3 31337:0) -[CIPHER] [cn1] 2026-04-01T13:47:12.819641Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn1] 2026-04-01T13:47:12.819718Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 1 (E3 31337:0) -[CIPHER] [cn1] 2026-04-01T13:47:12.819843Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn1] 2026-04-01T13:47:12.819916Z  INFO e3_net::document_publisher: Publishing ThresholdShare from party 1 for target party 2 (E3 31337:0) -[CIPHER] [cn1] 2026-04-01T13:47:12.820041Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 260710 -[CIPHER] [cn1] 2026-04-01T13:47:12.820146Z  INFO e3_keyshare::threshold_keyshare: Received PkGenerationProofSigned for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.820173Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2aSkShareComputation) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.820205Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C2bESmShareComputation) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.820237Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.820296Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.820399Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.820499Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.820628Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.820782Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3aSkShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.820970Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.821167Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.821392Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.821801Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.822173Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.822577Z  INFO e3_keyshare::threshold_keyshare: Received DkgProofSigned (C3bESmShareEncryption) for party 1 E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:12.823021Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 1), forwarding to collector! -[CIPHER] [cn1] 2026-04-01T13:47:12.823025Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8 and 3 nodes -[CIPHER] [cn1] 2026-04-01T13:47:12.823027Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn1] 2026-04-01T13:47:12.823066Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn1] 2026-04-01T13:47:12.823068Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 -[CIPHER] [cn1] 2026-04-01T13:47:12.823070Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 -[CIPHER] [cn1] 2026-04-01T13:47:12.823079Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares -[CIPHER] [cn1] 2026-04-01T13:47:12.823090Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 23.417µs -[CIPHER] [cn1] 2026-04-01T13:47:12.823121Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected -[CIPHER] [cn1] 2026-04-01T13:47:12.823148Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn1] 2026-04-01T13:47:12.830476Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-05-01T13:47:12.819640Z }, value: }), ctx: EventContext { id: EventId(0xea273492928ccf41981110a157ad3f7397aca6e230361efde4bd99f5a3e98dfc), causation_id: EventId(0x7641cb089d25de1fa6a94017f034abbfc8d0059f6cf0b9d6d3d667652cbe34a1), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 50, ts: 32743915809546583058955910505462076, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.837897Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(1)], expires_at: 2026-05-01T13:47:12.819843Z }, value: }), ctx: EventContext { id: EventId(0xec0031b852cb7d490def9daa685e3d96ad9444af6f5515b27c9eca4b9fbefa2d), causation_id: EventId(0x0254047e492a660190b489cfdec2ceb2f6e95ea81521cd9f9cd48e75412b1f53), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 51, ts: 32743915809550290854514726125336892, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.845449Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-05-01T13:47:12.820041Z }, value: }), ctx: EventContext { id: EventId(0x0846408e842c67b037d60883d1700c3f9e23ab7c7fddbc9ca81a1400dfe474d8), causation_id: EventId(0x4c40e89046a6f332d2e5625275850c82c4dfca986a78c9c6246f50d6e2739115), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 52, ts: 32743915809553943309841320616556860, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.879543Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), causation_id: EventId(0x0254047e492a660190b489cfdec2ceb2f6e95ea81521cd9f9cd48e75412b1f53), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 64, ts: 32743915809611294237166483612531004, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:12.988272Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs -[CIPHER] [cn1] 2026-04-01T13:47:12.995675Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 106, party_proofs: [PartyProofData { party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C2aSkShareComputation, , [187, 168, 91, 125, 116, 251, 65, 110, 194, 99, 89, 78, 7, 49, 187, 237, 104, 17, 74, 239, 126, 52, 176, 236, 100, 177, 246, 41, 113, 135, 112, 42]), (C2bESmShareComputation, , [48, 225, 210, 246, 52, 160, 89, 252, 189, 190, 202, 30, 247, 107, 198, 244, 42, 209, 145, 111, 231, 172, 163, 192, 32, 68, 68, 56, 15, 235, 29, 51]), (C3aSkShareEncryption, , [10, 21, 92, 215, 185, 194, 120, 43, 132, 111, 125, 13, 138, 194, 34, 90, 75, 219, 198, 129, 253, 30, 255, 64, 6, 114, 26, 23, 191, 62, 215, 212]), (C3aSkShareEncryption, , [67, 31, 233, 4, 17, 180, 120, 0, 7, 168, 223, 77, 239, 215, 135, 199, 138, 22, 196, 210, 105, 189, 239, 10, 97, 56, 171, 145, 197, 93, 142, 70]), (C3bESmShareEncryption, , [193, 185, 47, 253, 76, 198, 59, 221, 120, 164, 129, 75, 161, 158, 124, 9, 115, 86, 56, 198, 70, 215, 57, 25, 121, 64, 221, 227, 72, 191, 175, 234]), (C3bESmShareEncryption, , [39, 243, 127, 155, 53, 189, 87, 201, 112, 46, 180, 221, 112, 61, 36, 32, 123, 226, 247, 92, 239, 22, 227, 53, 12, 20, 47, 103, 190, 191, 218, 93])] }, PartyProofData { party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C2aSkShareComputation, , [76, 20, 255, 19, 114, 115, 83, 133, 96, 65, 232, 109, 84, 213, 169, 86, 134, 105, 86, 187, 188, 80, 220, 12, 189, 70, 18, 150, 177, 75, 120, 10]), (C2bESmShareComputation, , [122, 6, 66, 77, 87, 68, 118, 91, 121, 151, 122, 113, 188, 140, 87, 9, 204, 61, 38, 157, 0, 28, 125, 21, 194, 116, 27, 211, 188, 72, 170, 192]), (C3aSkShareEncryption, , [55, 39, 54, 208, 85, 251, 82, 85, 48, 113, 201, 91, 192, 64, 79, 211, 190, 139, 28, 146, 218, 51, 63, 11, 75, 172, 203, 241, 96, 99, 90, 193]), (C3aSkShareEncryption, , [109, 216, 144, 114, 189, 20, 106, 243, 54, 82, 155, 13, 165, 13, 229, 59, 130, 236, 22, 127, 130, 180, 150, 117, 112, 184, 178, 162, 60, 150, 140, 179]), (C3bESmShareEncryption, , [238, 208, 153, 21, 254, 190, 137, 238, 23, 242, 31, 118, 41, 14, 247, 166, 88, 237, 135, 91, 146, 17, 128, 177, 226, 91, 115, 1, 145, 212, 156, 225]), (C3bESmShareEncryption, , [246, 173, 200, 190, 186, 245, 198, 117, 214, 12, 10, 78, 144, 88, 239, 88, 211, 167, 130, 214, 32, 213, 210, 27, 213, 84, 67, 196, 237, 101, 152, 173])] }] }), ctx: EventContext { id: EventId(0x4dcb4bb778286ffd1e9d898db5af3ed213f22991095e0f0c8ba698a3e6a5ae2c), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 65, ts: 32743915812727779414699343810296124, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.005273Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 106, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x15e8f287acd7aaa4332bbb781d4297a70bdf8be8bb873df01cdb76967623a2b1), causation_id: EventId(0x4dcb4bb778286ffd1e9d898db5af3ed213f22991095e0f0c8ba698a3e6a5ae2c), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 66, ts: 32743915812969653122993823451085116, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.009159Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 107, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdcc243257d6ba77922c57e1774674e4f6767879e4fd50be00fede820b66774d8), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 53, ts: 32743915812971940519258963435485500, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.024092Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(53)` -[CIPHER] [cn3] 2026-04-01T13:47:13.038941Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(0)], expires_at: 2026-05-01T13:47:12Z }, value: }), ctx: EventContext { id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), causation_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 52, ts: 32743915813586844286211999045748577, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:47:13.047503Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 0, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xcc424bf389c3ef77ffbe962d39f7404bd16f0f4d9da9089131458347f65b0382), causation_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 63, ts: 32743915813743420249909645719865185, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.054526Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 0), forwarding to collector! -[CIPHER] [cn3] 2026-04-01T13:47:13.054539Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x90F79bf6EB2c4f870365E785982E1f101E93b906 and 3 nodes -[CIPHER] [cn3] 2026-04-01T13:47:13.054639Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn3] 2026-04-01T13:47:13.054641Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 -[CIPHER] [cn3] 2026-04-01T13:47:13.054642Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 -[CIPHER] [cn3] 2026-04-01T13:47:13.054644Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares -[CIPHER] [cn3] 2026-04-01T13:47:13.054668Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 36.333µs -[CIPHER] [cn3] 2026-04-01T13:47:13.054742Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected -[CIPHER] [cn3] 2026-04-01T13:47:13.054753Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn3] 2026-04-01T13:47:13.054554Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn2] 2026-04-01T13:47:13.049893Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [Item(2)], expires_at: 2026-05-01T13:47:12Z }, value: }), ctx: EventContext { id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), causation_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 52, ts: 32743915813789112834980224470898917, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:47:13.061722Z  INFO e3_events::eventbus: >>> ThresholdShareCreated EnclaveEvent { payload: ThresholdShareCreated(ThresholdShareCreated { e3_id: E3id { id: "0", chain_id: 31337 }, share: ThresholdShare { party_id: 1, pk_share: , sk_sss: BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }, esi_sss: [BfvEncryptedShares { shares: [BfvEncryptedShare { ciphertexts: [2 ciphertexts, total 13108 bytes] }] }] }, target_party_id: 2, external: true, signed_c2a_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c2b_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }), signed_c3a_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }], signed_c3b_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xcb09854f586e3596f77cade9cdfdd37b6995974f38b921319ce49da4c3dcac6b), causation_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 63, ts: 32743915813963157865315674090395877, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.068587Z  INFO e3_keyshare::threshold_keyshare: Received ThresholdShareCreated from party 1 for us (party 2), forwarding to collector! -[CIPHER] [cn2] 2026-04-01T13:47:13.068592Z  INFO e3_keyshare::threshold_keyshare: Setting up key collector for addr: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC and 3 nodes -[CIPHER] [cn2] 2026-04-01T13:47:13.068595Z  INFO e3_keyshare::threshold_keyshare: got collector address! -[CIPHER] [cn2] 2026-04-01T13:47:13.068615Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector party id: 1 -[CIPHER] [cn2] 2026-04-01T13:47:13.068628Z  INFO e3_keyshare::threshold_share_collector: Finished processing ThresholdShareCreated in 23.666µs -[CIPHER] [cn2] 2026-04-01T13:47:13.068605Z  INFO e3_keyshare::threshold_share_collector: ThresholdShareCollector: ThresholdShareCreated received by collector -[CIPHER] [cn2] 2026-04-01T13:47:13.068616Z  INFO e3_keyshare::threshold_share_collector: Inserting... waiting on: 0 -[CIPHER] [cn2] 2026-04-01T13:47:13.068635Z  INFO e3_keyshare::threshold_keyshare: AllThresholdSharesCollected -[CIPHER] [cn2] 2026-04-01T13:47:13.068642Z  INFO e3_keyshare::threshold_keyshare: Dispatching C2/C3 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn2] 2026-04-01T13:47:13.068624Z  INFO e3_keyshare::threshold_share_collector: We have received all threshold shares -[CIPHER] [cn3] 2026-04-01T13:47:13.055744Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), causation_id: EventId(0xcc424bf389c3ef77ffbe962d39f7404bd16f0f4d9da9089131458347f65b0382), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 64, ts: 32743915813883615504869838312146785, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.069249Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs -[CIPHER] [cn3] 2026-04-01T13:47:13.074570Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, party_proofs: [PartyProofData { party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C2aSkShareComputation, , [208, 148, 13, 111, 197, 116, 2, 238, 38, 75, 31, 201, 237, 103, 173, 184, 118, 66, 118, 134, 119, 133, 176, 138, 100, 166, 78, 222, 75, 112, 12, 153]), (C2bESmShareComputation, , [168, 239, 149, 198, 25, 115, 247, 228, 138, 166, 248, 230, 242, 6, 58, 90, 95, 94, 119, 15, 66, 198, 218, 223, 57, 76, 146, 189, 247, 123, 56, 53]), (C3aSkShareEncryption, , [193, 158, 47, 174, 228, 176, 79, 85, 182, 214, 114, 167, 75, 176, 114, 98, 134, 9, 2, 3, 60, 47, 32, 35, 117, 47, 231, 44, 170, 77, 152, 66]), (C3aSkShareEncryption, , [168, 176, 127, 215, 164, 125, 124, 232, 203, 37, 170, 166, 216, 232, 145, 35, 5, 60, 50, 228, 176, 32, 25, 75, 24, 23, 73, 173, 50, 71, 254, 160]), (C3bESmShareEncryption, , [48, 44, 176, 167, 207, 148, 10, 140, 119, 9, 239, 72, 235, 157, 103, 125, 20, 30, 179, 219, 2, 13, 218, 159, 111, 213, 47, 116, 92, 174, 50, 205]), (C3bESmShareEncryption, , [112, 50, 125, 159, 253, 72, 215, 249, 82, 224, 160, 138, 103, 255, 202, 201, 95, 234, 179, 1, 93, 109, 215, 198, 63, 4, 116, 226, 209, 11, 212, 168])] }, PartyProofData { party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C2aSkShareComputation, , [76, 20, 255, 19, 114, 115, 83, 133, 96, 65, 232, 109, 84, 213, 169, 86, 134, 105, 86, 187, 188, 80, 220, 12, 189, 70, 18, 150, 177, 75, 120, 10]), (C2bESmShareComputation, , [122, 6, 66, 77, 87, 68, 118, 91, 121, 151, 122, 113, 188, 140, 87, 9, 204, 61, 38, 157, 0, 28, 125, 21, 194, 116, 27, 211, 188, 72, 170, 192]), (C3aSkShareEncryption, , [80, 56, 79, 204, 130, 27, 57, 225, 19, 157, 244, 47, 86, 112, 179, 138, 255, 7, 128, 110, 141, 87, 59, 75, 91, 75, 98, 42, 100, 114, 86, 241]), (C3aSkShareEncryption, , [26, 240, 231, 43, 225, 189, 84, 83, 209, 74, 239, 44, 232, 97, 133, 192, 33, 241, 55, 163, 216, 38, 147, 64, 54, 47, 128, 196, 153, 80, 92, 105]), (C3bESmShareEncryption, , [253, 133, 211, 129, 216, 234, 253, 149, 48, 128, 69, 217, 254, 215, 33, 197, 37, 54, 122, 32, 17, 247, 23, 115, 66, 1, 79, 31, 35, 136, 170, 175]), (C3bESmShareEncryption, , [115, 111, 235, 253, 15, 194, 12, 227, 94, 255, 79, 71, 176, 19, 159, 16, 10, 71, 189, 224, 4, 227, 70, 177, 94, 51, 63, 151, 20, 74, 231, 82])] }] }), ctx: EventContext { id: EventId(0x9e78b26e55a560df0ed97bb22e016298fc60979c499822a5bee0cb99c5f46042), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 65, ts: 32743915814206433526159755465426785, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.082533Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xd8ed120dea44fad426acb40e2f8232759d7aa0029b40588dfc8d346f600347b1), causation_id: EventId(0x9e78b26e55a560df0ed97bb22e016298fc60979c499822a5bee0cb99c5f46042), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 66, ts: 32743915814391233008290177753515873, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.071550Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), causation_id: EventId(0xcb09854f586e3596f77cade9cdfdd37b6995974f38b921319ce49da4c3dcac6b), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 64, ts: 32743915814139840780053664175773925, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.085038Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ShareProofs -[CIPHER] [cn3] 2026-04-01T13:47:13.083965Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x67330d9d69ab935c16e96cb055130851a009d2e7519fd8be8e0f7d04553b37b1), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 53, ts: 32743915814397265093602280776894305, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.097408Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(66)` -[CIPHER] [cn2] 2026-04-01T13:47:13.089824Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, party_proofs: [PartyProofData { party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C2aSkShareComputation, , [187, 168, 91, 125, 116, 251, 65, 110, 194, 99, 89, 78, 7, 49, 187, 237, 104, 17, 74, 239, 126, 52, 176, 236, 100, 177, 246, 41, 113, 135, 112, 42]), (C2bESmShareComputation, , [48, 225, 210, 246, 52, 160, 89, 252, 189, 190, 202, 30, 247, 107, 198, 244, 42, 209, 145, 111, 231, 172, 163, 192, 32, 68, 68, 56, 15, 235, 29, 51]), (C3aSkShareEncryption, , [229, 18, 57, 73, 222, 66, 154, 237, 34, 193, 47, 96, 19, 160, 136, 175, 107, 174, 120, 169, 5, 228, 217, 126, 115, 65, 163, 129, 212, 115, 157, 15]), (C3aSkShareEncryption, , [131, 143, 129, 66, 46, 145, 68, 218, 54, 73, 42, 33, 121, 62, 209, 253, 41, 224, 189, 157, 159, 129, 12, 113, 38, 16, 98, 208, 202, 118, 158, 174]), (C3bESmShareEncryption, , [124, 178, 131, 231, 81, 3, 240, 120, 206, 168, 177, 143, 201, 216, 23, 139, 16, 56, 192, 69, 92, 122, 51, 202, 85, 12, 92, 97, 92, 155, 12, 128]), (C3bESmShareEncryption, , [64, 13, 216, 210, 252, 209, 125, 231, 19, 213, 144, 86, 38, 190, 208, 98, 161, 200, 116, 34, 107, 181, 243, 192, 22, 92, 94, 137, 177, 148, 162, 191])] }, PartyProofData { party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C2aSkShareComputation, , [208, 148, 13, 111, 197, 116, 2, 238, 38, 75, 31, 201, 237, 103, 173, 184, 118, 66, 118, 134, 119, 133, 176, 138, 100, 166, 78, 222, 75, 112, 12, 153]), (C2bESmShareComputation, , [168, 239, 149, 198, 25, 115, 247, 228, 138, 166, 248, 230, 242, 6, 58, 90, 95, 94, 119, 15, 66, 198, 218, 223, 57, 76, 146, 189, 247, 123, 56, 53]), (C3aSkShareEncryption, , [205, 130, 213, 224, 87, 126, 196, 124, 135, 243, 227, 170, 45, 211, 253, 86, 128, 143, 241, 177, 23, 223, 69, 255, 81, 112, 186, 35, 245, 207, 28, 34]), (C3aSkShareEncryption, , [11, 134, 203, 164, 191, 209, 215, 78, 90, 138, 63, 133, 81, 50, 188, 144, 61, 119, 18, 144, 18, 106, 127, 115, 23, 4, 155, 94, 72, 63, 65, 192]), (C3bESmShareEncryption, , [210, 213, 89, 233, 81, 159, 62, 174, 36, 20, 92, 44, 212, 25, 22, 169, 73, 230, 51, 155, 169, 160, 182, 118, 176, 21, 2, 197, 11, 89, 106, 251]), (C3bESmShareEncryption, , [15, 228, 96, 246, 10, 52, 68, 182, 179, 191, 197, 94, 113, 45, 159, 236, 2, 17, 149, 97, 14, 195, 73, 200, 43, 119, 80, 237, 97, 147, 29, 177])] }] }), ctx: EventContext { id: EventId(0x91cd28cb8bf17a326c07c5a02756b32f50643c76868ecaefd30d903fc21868c3), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 65, ts: 32743915814496803724624017709095141, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.098496Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, correlation_id: 109, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xd8ed120dea44fad426acb40e2f8232759d7aa0029b40588dfc8d346f600347b1), causation_id: EventId(0x91cd28cb8bf17a326c07c5a02756b32f50643c76868ecaefd30d903fc21868c3), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 66, ts: 32743915814680053680252248394848485, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.099215Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2aSkShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C2bESmShareComputation, proof: Proof { circuit: ShareComputation, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3aSkShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }, SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C3bESmShareEncryption, proof: Proof { circuit: ShareEncryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x654e58cda33ca1f71a379f0cfdf5a77504fcbf70d31656f6eef346c824538236), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 53, ts: 32743915814691638235530537993263333, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.113075Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(150)` -[CIPHER] [cn1] 2026-04-01T13:47:13.420877Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(53) in 396.776ms -[CIPHER] [cn1] 2026-04-01T13:47:13.420962Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 107, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x76fbfa175192e66056048d065a0ee19ebcc60c23e1f17c7f8a7b0b05ff2faa08), causation_id: EventId(0xdcc243257d6ba77922c57e1774674e4f6767879e4fd50be00fede820b66774d8), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 68, ts: 32743915820637946187690810348304700, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.426452Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2aSkShareComputation, data_hash: [187, 168, 91, 125, 116, 251, 65, 110, 194, 99, 89, 78, 7, 49, 187, 237, 104, 17, 74, 239, 126, 52, 176, 236, 100, 177, 246, 41, 113, 135, 112, 42], public_signals: }), ctx: EventContext { id: EventId(0x5e15c4843ffca7d0214ba90e3f7dddc96c2df925636f0bd0d3f98c79a929a840), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 69, ts: 32743915820640528731861129685530940, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.426503Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2bESmShareComputation, data_hash: [48, 225, 210, 246, 52, 160, 89, 252, 189, 190, 202, 30, 247, 107, 198, 244, 42, 209, 145, 111, 231, 172, 163, 192, 32, 68, 68, 56, 15, 235, 29, 51], public_signals: }), ctx: EventContext { id: EventId(0x635c8b238fd29e63146bbfe17f4f8eb4e8518409fb57e327ed476160f4e7d8d9), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 70, ts: 32743915820640565625349277104634172, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.426536Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [10, 21, 92, 215, 185, 194, 120, 43, 132, 111, 125, 13, 138, 194, 34, 90, 75, 219, 198, 129, 253, 30, 255, 64, 6, 114, 26, 23, 191, 62, 215, 212], public_signals: }), ctx: EventContext { id: EventId(0x2b6b2787d3bda8c7f06078143c77f2dca4b005efab3c857cb332e746bd9ab317), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 71, ts: 32743915820640565625349281399601468, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.427600Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [67, 31, 233, 4, 17, 180, 120, 0, 7, 168, 223, 77, 239, 215, 135, 199, 138, 22, 196, 210, 105, 189, 239, 10, 97, 56, 171, 145, 197, 93, 142, 70], public_signals: }), ctx: EventContext { id: EventId(0xa6231ec3035c460938d4d81be8c917baecd6dfe65cceb164e7938722f82595f0), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 72, ts: 32743915820640731646045940490598716, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.428673Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [193, 185, 47, 253, 76, 198, 59, 221, 120, 164, 129, 75, 161, 158, 124, 9, 115, 86, 56, 198, 70, 215, 57, 25, 121, 64, 221, 227, 72, 191, 175, 234], public_signals: }), ctx: EventContext { id: EventId(0xa875b0b31aaf065f911caa3d344bc788d22ce2ae0cd1d646287a93604de8cd47), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 73, ts: 32743915820640897666742603876563260, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.429745Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [39, 243, 127, 155, 53, 189, 87, 201, 112, 46, 180, 221, 112, 61, 36, 32, 123, 226, 247, 92, 239, 22, 227, 53, 12, 20, 47, 103, 190, 191, 218, 93], public_signals: }), ctx: EventContext { id: EventId(0x5c2cfd107e3607e3a1965640022c58bd326bc1e0542d37c8f9c5cf94d576c44e), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 74, ts: 32743915820641045240695193552976188, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.430758Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C2aSkShareComputation, data_hash: [76, 20, 255, 19, 114, 115, 83, 133, 96, 65, 232, 109, 84, 213, 169, 86, 134, 105, 86, 187, 188, 80, 220, 12, 189, 70, 18, 150, 177, 75, 120, 10], public_signals: }), ctx: EventContext { id: EventId(0xe2dffad7a346eca22519c647f9ef25f3738acb6339ba967674726bda8e8b5c64), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 75, ts: 32743915820641211261391856938940732, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.430791Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C2bESmShareComputation, data_hash: [122, 6, 66, 77, 87, 68, 118, 91, 121, 151, 122, 113, 188, 140, 87, 9, 204, 61, 38, 157, 0, 28, 125, 21, 194, 116, 27, 211, 188, 72, 170, 192], public_signals: }), ctx: EventContext { id: EventId(0x1253e4429ff7773865e8e532ee9f52fa3cd99541de86ed65ef8e3b59578005b9), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 76, ts: 32743915820641229708135930648492348, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.430827Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3aSkShareEncryption, data_hash: [55, 39, 54, 208, 85, 251, 82, 85, 48, 113, 201, 91, 192, 64, 79, 211, 190, 139, 28, 146, 218, 51, 63, 11, 75, 172, 203, 241, 96, 99, 90, 193], public_signals: }), ctx: EventContext { id: EventId(0x7ed4bc2240e828707d3979a7a0a53b3198bcc7d2d5f3024cca9719ee6da95a48), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 77, ts: 32743915820641229708135934943459644, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.431860Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3aSkShareEncryption, data_hash: [109, 216, 144, 114, 189, 20, 106, 243, 54, 82, 155, 13, 165, 13, 229, 59, 130, 236, 22, 127, 130, 180, 150, 117, 112, 184, 178, 162, 60, 150, 140, 179], public_signals: }), ctx: EventContext { id: EventId(0xaae067f55d94d27b39e2ab0c690094cc14fba00a5be70e729dc8b9ff1eed207b), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 78, ts: 32743915820641395728832594034456892, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.432844Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3bESmShareEncryption, data_hash: [238, 208, 153, 21, 254, 190, 137, 238, 23, 242, 31, 118, 41, 14, 247, 166, 88, 237, 135, 91, 146, 17, 128, 177, 226, 91, 115, 1, 145, 212, 156, 225], public_signals: }), ctx: EventContext { id: EventId(0x410c3445e80ddb6588cf0800c7a18067f2eff6662d9bc7cc763d9a46e5754faf), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 79, ts: 32743915820641561749529257420421436, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.433818Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3bESmShareEncryption, data_hash: [246, 173, 200, 190, 186, 245, 198, 117, 214, 12, 10, 78, 144, 88, 239, 88, 211, 167, 130, 214, 32, 213, 210, 27, 213, 84, 67, 196, 237, 101, 152, 173], public_signals: }), ctx: EventContext { id: EventId(0x3c457dba4b17e3847c5f2efe41d0e5bb03d659be2315d36a2e4e88802d960f0c), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 80, ts: 32743915820641709323481847096834364, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.434783Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0x6ad2076099f4a44ff203e093beba8ce7b9fa0007088347844eb5122ac7322c69), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 81, ts: 32743915820641875344178510482798908, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.434917Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding -[CIPHER] [cn1] 2026-04-01T13:47:13.436334Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:13.437991Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x20d5b2b2593bb86ee65fc3e678b48d97d9ae05ff711db4b39dd50f76bb2b1359), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 54, ts: 32743915820936764994940831374932284, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.439484Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(64)` -[CIPHER] [cn1] 2026-04-01T13:47:13.439489Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... -[CIPHER] [cn1] 2026-04-01T13:47:13.439487Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... -[CIPHER] [cn1] 2026-04-01T13:47:13.443447Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... -[CIPHER] [cn1] 2026-04-01T13:47:13.443482Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... -[CIPHER] [cn1] 2026-04-01T13:47:13.443491Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... -[CIPHER] [cn1] 2026-04-01T13:47:13.443588Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(64) in 4.101542ms -[CIPHER] [cn1] 2026-04-01T13:47:13.445047Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x20bc4e9994168af0786638ae49d006ce0de0ecbd627e110d93b688c6bce2f5ec), causation_id: EventId(0x20d5b2b2593bb86ee65fc3e678b48d97d9ae05ff711db4b39dd50f76bb2b1359), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 82, ts: 32743915821056687278164017169987900, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.445387Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key -[CIPHER] [cn1] 2026-04-01T13:47:13.445831Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 1 (1 SK + 1 ESM requests) -[CIPHER] [cn1] 2026-04-01T13:47:13.445879Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:13.447833Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0xb2de49e26967e4f1ec523076dc2e57daef51aa9f35ade5ccde1905502a58d068), causation_id: EventId(0x20bc4e9994168af0786638ae49d006ce0de0ecbd627e110d93b688c6bce2f5ec), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 83, ts: 32743915821097749730472094631885116, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.450551Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:13.450567Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:13.450900Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa275998e47d7a5269220962bd122b383727dbf3019ac5dae593167ff25ba9fef), causation_id: EventId(0xb2de49e26967e4f1ec523076dc2e57daef51aa9f35ade5ccde1905502a58d068), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 55, ts: 32743915821184836809244077425064252, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.452143Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x6a0c7606ca5a7f34e58a593a8eb970d1f0f64586279b68f5c9e0f14aaa1aede7), causation_id: EventId(0xb2de49e26967e4f1ec523076dc2e57daef51aa9f35ade5ccde1905502a58d068), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 56, ts: 32743915821185113510405183068338492, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:13.453448Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(201)` -[CIPHER] [cn3] 2026-04-01T13:47:13.497403Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(66) in 399.988459ms -[CIPHER] [cn2] 2026-04-01T13:47:13.497484Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(150) in 384.391417ms -[CIPHER] [cn3] 2026-04-01T13:47:13.497494Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x589ed8b7e33aca66c12e91b28b95ac546061f5eade2298401939d031e6b4fe1a), causation_id: EventId(0x67330d9d69ab935c16e96cb055130851a009d2e7519fd8be8e0f7d04553b37b1), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 68, ts: 32743915822049527937699214073759585, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.497554Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 110, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x793bfbbe74bf4b0b0dc45591939b123a93a4a8727bcd96f4d69f81268dcef12a), causation_id: EventId(0x654e58cda33ca1f71a379f0cfdf5a77504fcbf70d31656f6eef346c824538236), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 68, ts: 32743915822051132804433626996431077, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.503913Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C2aSkShareComputation, data_hash: [208, 148, 13, 111, 197, 116, 2, 238, 38, 75, 31, 201, 237, 103, 173, 184, 118, 66, 118, 134, 119, 133, 176, 138, 100, 166, 78, 222, 75, 112, 12, 153], public_signals: }), ctx: EventContext { id: EventId(0x2a50bd6f543d5e71a59a8a1eb1d63d3bc6c14278384ec23c7e93695a4c26a6d1), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 69, ts: 32743915822052092035125459701434209, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.503930Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2aSkShareComputation, data_hash: [187, 168, 91, 125, 116, 251, 65, 110, 194, 99, 89, 78, 7, 49, 187, 237, 104, 17, 74, 239, 126, 52, 176, 236, 100, 177, 246, 41, 113, 135, 112, 42], public_signals: }), ctx: EventContext { id: EventId(0x5e15c4843ffca7d0214ba90e3f7dddc96c2df925636f0bd0d3f98c79a929a840), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 69, ts: 32743915822052848351632481984731365, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.503966Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C2bESmShareComputation, data_hash: [168, 239, 149, 198, 25, 115, 247, 228, 138, 166, 248, 230, 242, 6, 58, 90, 95, 94, 119, 15, 66, 198, 218, 223, 57, 76, 146, 189, 247, 123, 56, 53], public_signals: }), ctx: EventContext { id: EventId(0x6e6cec419da3bf1cb5f807ead813daeca8e05b2bcfc11cb0716b31886201f470), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 70, ts: 32743915822052110481869533410985825, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.503975Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C2bESmShareComputation, data_hash: [48, 225, 210, 246, 52, 160, 89, 252, 189, 190, 202, 30, 247, 107, 198, 244, 42, 209, 145, 111, 231, 172, 163, 192, 32, 68, 68, 56, 15, 235, 29, 51], public_signals: }), ctx: EventContext { id: EventId(0x635c8b238fd29e63146bbfe17f4f8eb4e8518409fb57e327ed476160f4e7d8d9), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 70, ts: 32743915822052866798376555694282981, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.503998Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [229, 18, 57, 73, 222, 66, 154, 237, 34, 193, 47, 96, 19, 160, 136, 175, 107, 174, 120, 169, 5, 228, 217, 126, 115, 65, 163, 129, 212, 115, 157, 15], public_signals: }), ctx: EventContext { id: EventId(0x76ca72668031305027212591d7533f70df5a71102e82080642aa21dd73c3c764), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 71, ts: 32743915822052885245120629403834597, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.503993Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3aSkShareEncryption, data_hash: [193, 158, 47, 174, 228, 176, 79, 85, 182, 214, 114, 167, 75, 176, 114, 98, 134, 9, 2, 3, 60, 47, 32, 35, 117, 47, 231, 44, 170, 77, 152, 66], public_signals: }), ctx: EventContext { id: EventId(0x9d689de13fd08c21dc8353f2dbdec7968969f0b16b20a686ea4daf12598c1c79), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 71, ts: 32743915822052128928613607120537441, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.504939Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3aSkShareEncryption, data_hash: [131, 143, 129, 66, 46, 145, 68, 218, 54, 73, 42, 33, 121, 62, 209, 253, 41, 224, 189, 157, 159, 129, 12, 113, 38, 16, 98, 208, 202, 118, 158, 174], public_signals: }), ctx: EventContext { id: EventId(0x0c49c6a9122252cea4f5dd6cfe6fcaef3452aafe87c1cc469f131082e7f44cab), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 72, ts: 32743915822053051265817292789799141, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.504951Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3aSkShareEncryption, data_hash: [168, 176, 127, 215, 164, 125, 124, 232, 203, 37, 170, 166, 216, 232, 145, 35, 5, 60, 50, 228, 176, 32, 25, 75, 24, 23, 73, 173, 50, 71, 254, 160], public_signals: }), ctx: EventContext { id: EventId(0xe3166964d48ac745d2cb8fca4053028f1573018b2ea5e09b4aa67f73d6d47423), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 72, ts: 32743915822052294949310270506501985, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.505882Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [124, 178, 131, 231, 81, 3, 240, 120, 206, 168, 177, 143, 201, 216, 23, 139, 16, 56, 192, 69, 92, 122, 51, 202, 85, 12, 92, 97, 92, 155, 12, 128], public_signals: }), ctx: EventContext { id: EventId(0x21403d863f8281be3f444048731de6a60bf92c6c18f0fe949fda46f00046fa87), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 73, ts: 32743915822053217286513956175763685, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.505903Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3bESmShareEncryption, data_hash: [48, 44, 176, 167, 207, 148, 10, 140, 119, 9, 239, 72, 235, 157, 103, 125, 20, 30, 179, 219, 2, 13, 218, 159, 111, 213, 47, 116, 92, 174, 50, 205], public_signals: }), ctx: EventContext { id: EventId(0x517ac3abd086f4ab88e1439cb9d8de9513ec453cb06ae229818252df162ee6dc), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 73, ts: 32743915822052442523262860182914913, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.506828Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C3bESmShareEncryption, data_hash: [64, 13, 216, 210, 252, 209, 125, 231, 19, 213, 144, 86, 38, 190, 208, 98, 161, 200, 116, 34, 107, 181, 243, 192, 22, 92, 94, 137, 177, 148, 162, 191], public_signals: }), ctx: EventContext { id: EventId(0x7cff487cd392e6dfba6afb68ecb32e4fec89a267d875244204a032823d60a729), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 74, ts: 32743915822053364860466545852176613, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.507780Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C2aSkShareComputation, data_hash: [208, 148, 13, 111, 197, 116, 2, 238, 38, 75, 31, 201, 237, 103, 173, 184, 118, 66, 118, 134, 119, 133, 176, 138, 100, 166, 78, 222, 75, 112, 12, 153], public_signals: }), ctx: EventContext { id: EventId(0x2a50bd6f543d5e71a59a8a1eb1d63d3bc6c14278384ec23c7e93695a4c26a6d1), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 75, ts: 32743915822053530881163209238141157, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.506871Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3bESmShareEncryption, data_hash: [112, 50, 125, 159, 253, 72, 215, 249, 82, 224, 160, 138, 103, 255, 202, 201, 95, 234, 179, 1, 93, 109, 215, 198, 63, 4, 116, 226, 209, 11, 212, 168], public_signals: }), ctx: EventContext { id: EventId(0xf6bdc1a1b612b50b81edef6587cb66c806f9787016f656418e62fdbdd32fffb3), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 74, ts: 32743915822052608543959523568879457, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.507821Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C2aSkShareComputation, data_hash: [76, 20, 255, 19, 114, 115, 83, 133, 96, 65, 232, 109, 84, 213, 169, 86, 134, 105, 86, 187, 188, 80, 220, 12, 189, 70, 18, 150, 177, 75, 120, 10], public_signals: }), ctx: EventContext { id: EventId(0xe2dffad7a346eca22519c647f9ef25f3738acb6339ba967674726bda8e8b5c64), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 75, ts: 32743915822052774564656186954844001, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.507807Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C2bESmShareComputation, data_hash: [168, 239, 149, 198, 25, 115, 247, 228, 138, 166, 248, 230, 242, 6, 58, 90, 95, 94, 119, 15, 66, 198, 218, 223, 57, 76, 146, 189, 247, 123, 56, 53], public_signals: }), ctx: EventContext { id: EventId(0x6e6cec419da3bf1cb5f807ead813daeca8e05b2bcfc11cb0716b31886201f470), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 76, ts: 32743915822053549327907282947692773, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.507853Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C2bESmShareComputation, data_hash: [122, 6, 66, 77, 87, 68, 118, 91, 121, 151, 122, 113, 188, 140, 87, 9, 204, 61, 38, 157, 0, 28, 125, 21, 194, 116, 27, 211, 188, 72, 170, 192], public_signals: }), ctx: EventContext { id: EventId(0x1253e4429ff7773865e8e532ee9f52fa3cd99541de86ed65ef8e3b59578005b9), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 76, ts: 32743915822052774564656191249811297, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.507835Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3aSkShareEncryption, data_hash: [205, 130, 213, 224, 87, 126, 196, 124, 135, 243, 227, 170, 45, 211, 253, 86, 128, 143, 241, 177, 23, 223, 69, 255, 81, 112, 186, 35, 245, 207, 28, 34], public_signals: }), ctx: EventContext { id: EventId(0xc8073f5f03f40870a41968dae36604f5465d430a6886e349e954815175264766), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 77, ts: 32743915822053549327907287242660069, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.507878Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3aSkShareEncryption, data_hash: [80, 56, 79, 204, 130, 27, 57, 225, 19, 157, 244, 47, 86, 112, 179, 138, 255, 7, 128, 110, 141, 87, 59, 75, 91, 75, 98, 42, 100, 114, 86, 241], public_signals: }), ctx: EventContext { id: EventId(0x77dfd42d0b11333f2dc8384b49007ed0e3c3c1c35a05558c163cf30be4a2f1db), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 77, ts: 32743915822052793011400260664395617, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.508779Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3aSkShareEncryption, data_hash: [11, 134, 203, 164, 191, 209, 215, 78, 90, 138, 63, 133, 81, 50, 188, 144, 61, 119, 18, 144, 18, 106, 127, 115, 23, 4, 155, 94, 72, 63, 65, 192], public_signals: }), ctx: EventContext { id: EventId(0xba27620d5aae9d24cffaebe8c9f279fd138be823f49ff23124a412ade8bac8e1), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 78, ts: 32743915822053715348603946333657317, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.508825Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3aSkShareEncryption, data_hash: [26, 240, 231, 43, 225, 189, 84, 83, 209, 74, 239, 44, 232, 97, 133, 192, 33, 241, 55, 163, 216, 38, 147, 64, 54, 47, 128, 196, 153, 80, 92, 105], public_signals: }), ctx: EventContext { id: EventId(0x342efc03aa78cb8c7b195a47870f91dea6d5e450d5902f0bdab60ff591aafd40), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 78, ts: 32743915822052940585352850340808545, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.509724Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3bESmShareEncryption, data_hash: [210, 213, 89, 233, 81, 159, 62, 174, 36, 20, 92, 44, 212, 25, 22, 169, 73, 230, 51, 155, 169, 160, 182, 118, 176, 21, 2, 197, 11, 89, 106, 251], public_signals: }), ctx: EventContext { id: EventId(0x22a95e24e72b20efd4519f3bee799fb0c1b36a6641dd9ff4ab8d26be00793fc7), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 79, ts: 32743915822053881369300609719621861, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.509766Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3bESmShareEncryption, data_hash: [253, 133, 211, 129, 216, 234, 253, 149, 48, 128, 69, 217, 254, 215, 33, 197, 37, 54, 122, 32, 17, 247, 23, 115, 66, 1, 79, 31, 35, 136, 170, 175], public_signals: }), ctx: EventContext { id: EventId(0xc4a6ebdff25c81e3b22ef87ec640d4e3a6b1622b2297f464d6f213775caec1fe), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 79, ts: 32743915822053143499537661145876321, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.510685Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C3bESmShareEncryption, data_hash: [15, 228, 96, 246, 10, 52, 68, 182, 179, 191, 197, 94, 113, 45, 159, 236, 2, 17, 149, 97, 14, 195, 73, 200, 43, 119, 80, 237, 97, 147, 29, 177], public_signals: }), ctx: EventContext { id: EventId(0xa9e9e900a78b9fa88bba16ff413e2a642722f7d087a81283ff6238582e7c5a59), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 80, ts: 32743915822054047389997273105586405, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.511685Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0xfe5c4b0d9812851d5e4f1d66e7d9dfb90299d5cd360764ee50fc0fef0f372ed6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 81, ts: 32743915822054194963949862781999333, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.510721Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C3bESmShareEncryption, data_hash: [115, 111, 235, 253, 15, 194, 12, 227, 94, 255, 79, 71, 176, 19, 159, 16, 10, 71, 189, 224, 4, 227, 70, 177, 94, 51, 63, 151, 20, 74, 231, 82], public_signals: }), ctx: EventContext { id: EventId(0xc11a93ddbabf6afa76d5173c7bf957fb88cdab48c76ada812f623a5f241478ad), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 80, ts: 32743915822053291073490250822289249, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.511738Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ShareProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), causation_id: EventId(0x4344e04fb9bf06d89048408c5eb9ad5363e82475e0c87f53494721c8680c08bb), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 81, ts: 32743915822053457094186914208253793, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.511839Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding -[CIPHER] [cn3] 2026-04-01T13:47:13.511844Z  INFO e3_keyshare::threshold_keyshare: All parties passed C2/C3 verification for E3 31337:0 — proceeding -[CIPHER] [cn2] 2026-04-01T13:47:13.513311Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:13.513314Z  INFO e3_keyshare::threshold_keyshare: Decrypting shares from 3 honest parties for E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:13.514892Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5adf9d404fc665ab652808a97a21bb8f68906bf7a9a22e862f2e9329f4337648), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 54, ts: 32743915822356979821175731170543457, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.514864Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, sk_sss_collected: [Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)], esi_sss_collected: [[Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData), Encrypted(SensitiveBytes { encrypted: }, PhantomData)]] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb76207d8ffb6a5492b7d5e9d3d3373d6bbcf148ac083f5c667df5bb646ae827e), causation_id: EventId(0x4f603d00e6844bcbf8dfc03813ddad70c174077a30ef0bf4cd3a70a669cf28b6), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 54, ts: 32743915822356979821175731362224357, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.516403Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(196)` -[CIPHER] [cn2] 2026-04-01T13:47:13.516409Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... -[CIPHER] [cn3] 2026-04-01T13:47:13.516403Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_key(184)` -[CIPHER] [cn3] 2026-04-01T13:47:13.516408Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... -[CIPHER] [cn3] 2026-04-01T13:47:13.516409Z  INFO e3_trbfv::calculate_decryption_key: Converting sk_sss to collected... -[CIPHER] [cn2] 2026-04-01T13:47:13.516408Z  INFO e3_trbfv::calculate_decryption_key: Calculating decryption key... -[CIPHER] [cn3] 2026-04-01T13:47:13.520512Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... -[CIPHER] [cn3] 2026-04-01T13:47:13.520571Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... -[CIPHER] [cn3] 2026-04-01T13:47:13.520586Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... -[CIPHER] [cn2] 2026-04-01T13:47:13.520620Z  INFO e3_trbfv::calculate_decryption_key: Calculating sk_poly_sum... -[CIPHER] [cn2] 2026-04-01T13:47:13.520673Z  INFO e3_trbfv::calculate_decryption_key: Calculating es_poly_sum... -[CIPHER] [cn2] 2026-04-01T13:47:13.520689Z  INFO e3_trbfv::calculate_decryption_key: Returning successful result! Encrypting for transit... -[CIPHER] [cn2] 2026-04-01T13:47:13.520895Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(196) in 4.487541ms -[CIPHER] [cn3] 2026-04-01T13:47:13.520784Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_key`(184) in 4.375667ms -[CIPHER] [cn3] 2026-04-01T13:47:13.535692Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc578334f81a7f54a4687ce40f9b1530b77c3223f3d93f8bdcb85ac1381333365), causation_id: EventId(0x5adf9d404fc665ab652808a97a21bb8f68906bf7a9a22e862f2e9329f4337648), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 82, ts: 32743915822482841955990651441219425, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.536442Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key -[CIPHER] [cn2] 2026-04-01T13:47:13.535731Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionKey(CalculateDecryptionKeyResponse { sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 111, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x39af7241971b9bca15c6949873cce9e788061a947ae3dfb8d188be274c60b428), causation_id: EventId(0xb76207d8ffb6a5492b7d5e9d3d3373d6bbcf148ac083f5c667df5bb646ae827e), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 82, ts: 32743915822485055565279496779094245, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.537135Z  INFO e3_keyshare::threshold_keyshare: Try store decryption key -[CIPHER] [cn2] 2026-04-01T13:47:13.538633Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 2 (1 SK + 1 ESM requests) -[CIPHER] [cn2] 2026-04-01T13:47:13.538739Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:13.537947Z  INFO e3_keyshare::threshold_keyshare: Publishing DecryptionShareProofsPending for E3 31337:0 party 0 (1 SK + 1 ESM requests) -[CIPHER] [cn3] 2026-04-01T13:47:13.538030Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector started, expecting 2 parties, timeout 1200s e3_id=31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:13.547811Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0xcba059c7fc831f31eeb4a8c38bb0a2506a90c92709c8df651e9195a643a29655), causation_id: EventId(0xc578334f81a7f54a4687ce40f9b1530b77c3223f3d93f8bdcb85ac1381333365), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 83, ts: 32743915822797119134774441072101217, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.550623Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:13.550641Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:13.547811Z  INFO e3_events::eventbus: >>> DecryptionShareProofsPending EnclaveEvent { payload: DecryptionShareProofsPending(DecryptionShareProofsPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", sk_poly_sum: , es_poly_sum: [], sk_request: DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 }, esm_requests: [DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 }] }), ctx: EventContext { id: EventId(0xa9b8a49e66207b9e3b28cfe8a642041be7bb5df2ea27da26d6a4b8d67bae82b4), causation_id: EventId(0x39af7241971b9bca15c6949873cce9e788061a947ae3dfb8d188be274c60b428), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 83, ts: 32743915822809736707720858597087461, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.550873Z  INFO e3_zk_prover::actors::proof_request: Requesting C4a DkgShareDecryption proof (SecretKey) for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:13.550888Z  INFO e3_zk_prover::actors::proof_request: Requesting C4b DkgShareDecryption proof (SmudgingNoise[0]) for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:13.551848Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x5228d8b26f4e051be6a7e3a4b56e615323cbeff5633b22567e79554fca499d2a), causation_id: EventId(0xa9b8a49e66207b9e3b28cfe8a642041be7bb5df2ea27da26d6a4b8d67bae82b4), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 55, ts: 32743915823035432621462694961109221, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.553090Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xbd3b891c9744b30effb784d8c3abd29e74367f0aedd52afa86099796c4357a75), causation_id: EventId(0xa9b8a49e66207b9e3b28cfe8a642041be7bb5df2ea27da26d6a4b8d67bae82b4), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 56, ts: 32743915823035709322623800604383461, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.554791Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SecretKey, params_preset: InsecureThreshold512 })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xceb26c0eddc411df96922d6f29d2a1ec20c57ad81d582326133ce3e5e3fe6022), causation_id: EventId(0xcba059c7fc831f31eeb4a8c38bb0a2506a90c92709c8df651e9195a643a29655), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 55, ts: 32743915823030839382188341091075937, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:13.556040Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DkgShareDecryption(DkgShareDecryptionProofRequest { sk_bfv: SensitiveBytes { encrypted: }, honest_ciphertexts_raw: [, , , , , ], num_honest_parties: 3, num_moduli: 2, dkg_input_type: SmudgingNoise, params_preset: InsecureThreshold512 })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdee7fad37d245f6b037064fff03c86b9e51c911eaf37e746028918ace444ccb3), causation_id: EventId(0xcba059c7fc831f31eeb4a8c38bb0a2506a90c92709c8df651e9195a643a29655), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 56, ts: 32743915823031171423581667863005025, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:13.564306Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(231)` -[CIPHER] [cn3] 2026-04-01T13:47:13.564560Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(101)` -[CIPHER] [cn1] 2026-04-01T13:47:13.946062Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:14.135374Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:14.149620Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:20.937579Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:20.937713Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(201) in 7.484261125s -[CIPHER] [cn1] 2026-04-01T13:47:20.938934Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(129)` -[CIPHER] [cn1] 2026-04-01T13:47:20.937895Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfa747e5876f41671be1ac29f5b6e8ad62667e80235755c79edf3d48ff3e5ec5e), causation_id: EventId(0xa275998e47d7a5269220962bd122b383727dbf3019ac5dae593167ff25ba9fef), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 84, ts: 32743915959299059230249274060208444, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:20.940016Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:21.324256Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:21.324380Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(101) in 7.759815458s -[CIPHER] [cn3] 2026-04-01T13:47:21.325044Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(55)` -[CIPHER] [cn3] 2026-04-01T13:47:21.324561Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa4d8e1bb266a9195fe03d14c101a12bf0c0d2845e436bc8349c9b44c12466557), causation_id: EventId(0xceb26c0eddc411df96922d6f29d2a1ec20c57ad81d582326133ce3e5e3fe6022), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 84, ts: 32743915966431880207974621509814113, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:21.326670Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:21.438779Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:21.438839Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(231) in 7.874522292s -[CIPHER] [cn2] 2026-04-01T13:47:21.439616Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_dkg_share_decryption(34)` -[CIPHER] [cn2] 2026-04-01T13:47:21.439246Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SecretKey })), correlation_id: 112, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x8b6777a6dada2782630d96d9d70e8f42d902d2116905123ca5a035ca259c22fb), causation_id: EventId(0x5228d8b26f4e051be6a7e3a4b56e615323cbeff5633b22567e79554fca499d2a), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 84, ts: 32743915968547113010674674856646885, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:21.441639Z  INFO e3_zk_prover::actors::proof_request: Received C4a SK decryption proof for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:21.442950Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:21.775520Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:21.887620Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:28.368067Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:28.368190Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(129) in 7.429248542s -[CIPHER] [cn1] 2026-04-01T13:47:28.368354Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7c2eeef3792dfcadfb930017d5a6cbc0e077137a31fc8635ce59b6a0a4faf4fc), causation_id: EventId(0x6a0c7606ca5a7f34e58a593a8eb970d1f0f64586279b68f5c9e0f14aaa1aede7), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 85, ts: 32743916096367148348090328313657660, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:28.370464Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:28.370473Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared -[CIPHER] [cn1] 2026-04-01T13:47:28.370608Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 1 (signer: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8) -[CIPHER] [cn1] 2026-04-01T13:47:28.370762Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0x04e998748171dfe239b86087365f19cb498380e29c33fbab7e386c16128681ff), causation_id: EventId(0xb2de49e26967e4f1ec523076dc2e57daef51aa9f35ade5ccde1905502a58d068), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 86, ts: 32743916096411346746890936399329596, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:28.372044Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 -[CIPHER] [cn1] 2026-04-01T13:47:28.373634Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28.372021Z }, value: }), ctx: EventContext { id: EventId(0xfc9bfe5419ce252f9980c21fe1a9cbf4935202874ac48b549079148ac294a31f), causation_id: EventId(0x04e998748171dfe239b86087365f19cb498380e29c33fbab7e386c16128681ff), origin_id: EventId(0x1e56c9bc84638a9f42769627188d00afc471129a4beb8a3dbbebddfc47af656f), seq: 57, ts: 32743916096437799377892635896346940, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:28.381671Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), causation_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), origin_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), seq: 57, ts: 32743916096611401686370317903300449, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:47:28.381674Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), causation_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), origin_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), seq: 57, ts: 32743916096611364792882170675878117, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:47:28.384711Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x71d27f8c8b2ed17cacf0cb1824934ad63cb9a4f402ec3317bf2daaa43c30599a), causation_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), origin_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), seq: 85, ts: 32743916096666502110918488525658341, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:28.384715Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x71d27f8c8b2ed17cacf0cb1824934ad63cb9a4f402ec3317bf2daaa43c30599a), causation_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), origin_id: EventId(0x85f54612d62ef751a3ca04493a031642186fb0fe62d9cdc4f9c109b9723cd91b), seq: 85, ts: 32743916096666502110918488333977441, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:28.386002Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 1, waiting on 1 -[CIPHER] [cn3] 2026-04-01T13:47:28.386007Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 5.917µs -[CIPHER] [cn2] 2026-04-01T13:47:28.386002Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 1, waiting on 1 -[CIPHER] [cn2] 2026-04-01T13:47:28.386007Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 5.833µs -[CIPHER] [cn3] 2026-04-01T13:47:28.762123Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:28.762278Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(55) in 7.437224209s -[CIPHER] [cn3] 2026-04-01T13:47:28.762480Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x27229bfeaee223812b435c762f75c21ab90d15436962a07eb66956ef6475a511), causation_id: EventId(0xdee7fad37d245f6b037064fff03c86b9e51c911eaf37e746028918ace444ccb3), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 86, ts: 32743916103636917953818895474460513, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:28.764538Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:47:28.764547Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared -[CIPHER] [cn3] 2026-04-01T13:47:28.764811Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 0 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) -[CIPHER] [cn3] 2026-04-01T13:47:28.765317Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0xe9765066226f1f1d8c36d77375b573985188acbd9a2d1498af40d6ea280acbea), causation_id: EventId(0xcba059c7fc831f31eeb4a8c38bb0a2506a90c92709c8df651e9195a643a29655), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 87, ts: 32743916103683127047723537901258593, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:28.766634Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 -[CIPHER] [cn3] 2026-04-01T13:47:28.767832Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28.766606Z }, value: }), ctx: EventContext { id: EventId(0x49daaf6f56851e2438c1eb271b68ed23d3c790107eaf19b2037cf61936783c39), causation_id: EventId(0xe9765066226f1f1d8c36d77375b573985188acbd9a2d1498af40d6ea280acbea), origin_id: EventId(0xefe2fb578c0f5fc99ef1e53b9298642e33b7572b7c0f4961f2a7e0149419911e), seq: 58, ts: 32743916103716718568681762994751329, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:28.775554Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), causation_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 58, ts: 32743916103878109132582646445144380, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:47:28.776291Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), causation_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 58, ts: 32743916103891741276453119412164837, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:47:28.778530Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x96a2172f1242665dbd0d15c04946bffdcec4015817f4c48737302a17ef9f363d), causation_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 87, ts: 32743916103932951302713784942098748, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:28.781320Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 0, waiting on 1 -[CIPHER] [cn1] 2026-04-01T13:47:28.781331Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 14.333µs -[CIPHER] [cn2] 2026-04-01T13:47:28.779244Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0x96a2172f1242665dbd0d15c04946bffdcec4015817f4c48737302a17ef9f363d), causation_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 86, ts: 32743916103946288298679078556293349, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:28.781561Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 0, waiting on 0 -[CIPHER] [cn2] 2026-04-01T13:47:28.781569Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 9µs -[CIPHER] [cn2] 2026-04-01T13:47:28.781579Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) -[CIPHER] [cn2] 2026-04-01T13:47:28.781582Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn2] 2026-04-01T13:47:28.781567Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected -[CIPHER] [cn2] 2026-04-01T13:47:28.781779Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), causation_id: EventId(0x96a2172f1242665dbd0d15c04946bffdcec4015817f4c48737302a17ef9f363d), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 87, ts: 32743916103992405158863352435333349, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:28.783719Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs -[CIPHER] [cn2] 2026-04-01T13:47:28.784962Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 116, party_proofs: [PartyProofData { party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C4aSkShareDecryption, , [100, 189, 55, 218, 19, 127, 249, 110, 20, 87, 169, 197, 138, 205, 100, 3, 179, 194, 24, 47, 164, 65, 143, 114, 174, 230, 81, 153, 116, 251, 53, 140]), (C4bESmShareDecryption, , [205, 89, 207, 42, 199, 139, 186, 157, 147, 147, 156, 92, 127, 106, 27, 242, 151, 241, 56, 34, 84, 189, 151, 137, 52, 250, 230, 223, 253, 90, 38, 148])] }, PartyProofData { party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C4aSkShareDecryption, , [49, 88, 112, 71, 156, 103, 201, 84, 92, 137, 130, 188, 25, 151, 12, 81, 127, 68, 159, 54, 230, 94, 116, 139, 202, 229, 128, 248, 84, 172, 192, 91]), (C4bESmShareDecryption, , [247, 249, 83, 72, 71, 110, 246, 144, 56, 115, 197, 80, 242, 99, 23, 208, 142, 209, 30, 122, 101, 36, 85, 119, 28, 86, 37, 188, 147, 128, 235, 198])] }] }), ctx: EventContext { id: EventId(0x362f8a0133b8df8a9e260a6dbdc7fa4af6ea6e5897cbe270cd4dd704f54fcbed), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 88, ts: 32743916104049737639444441721755877, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:28.808007Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 116, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x10b8ee4c4c98459b51a6001280102d1c70b2a9952fa1a14d1de35e25dd54e98b), causation_id: EventId(0x362f8a0133b8df8a9e260a6dbdc7fa4af6ea6e5897cbe270cd4dd704f54fcbed), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 89, ts: 32743916104056378467310977160337637, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:28.811010Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 117, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xdcea13e382c225696a3e55108646796ba5473eb30490c44e85844b0c665e7358), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 59, ts: 32743916104482332234717004416702693, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:28.923467Z  INFO e3_zk_prover::prover: generated proof (14624 bytes) for share_decryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:28.923530Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_dkg_share_decryption`(34) in 7.483906916s -[CIPHER] [cn2] 2026-04-01T13:47:28.923588Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(19)` -[CIPHER] [cn2] 2026-04-01T13:47:28.923653Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DkgShareDecryption(DkgShareDecryptionProofResponse { proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, wrapped_proof: Proof { circuit: DkgShareDecryption, data: , public_signals: }, dkg_input_type: SmudgingNoise })), correlation_id: 113, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x962514d53e9ef37c4fe15660f97509ebfe62e1424048aff950bc5122af0f3562), causation_id: EventId(0xbd3b891c9744b30effb784d8c3abd29e74367f0aedd52afa86099796c4357a75), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 91, ts: 32743916106611326308496044897360101, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:28.924619Z  INFO e3_zk_prover::actors::proof_request: Received C4b ESM decryption proof [0] for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:28.924622Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs complete for E3 31337:0 — signing and publishing DecryptionKeyShared -[CIPHER] [cn2] 2026-04-01T13:47:28.924751Z  INFO e3_zk_prover::actors::proof_request: All C4 proofs signed for E3 31337:0 party 2 (signer: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC) -[CIPHER] [cn2] 2026-04-01T13:47:28.924848Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: false }), ctx: EventContext { id: EventId(0xde75f4c046ddd75d0f91396cf6f1f5514740e628108bbb966af32886441ec5c4), causation_id: EventId(0xa9b8a49e66207b9e3b28cfe8a642041be7bb5df2ea27da26d6a4b8d67bae82b4), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 92, ts: 32743916106633443954640422649747685, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:28.926099Z  WARN e3_events::enclave_event::publish_document: Publishing document that is 42532 -[CIPHER] [cn2] 2026-04-01T13:47:28.929248Z  INFO e3_events::eventbus: >>> PublishDocumentRequested EnclaveEvent { payload: PublishDocumentRequested(PublishDocumentRequested { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28.926077Z }, value: }), ctx: EventContext { id: EventId(0xcaf20a6ed1499096cdf5687d23b9beb6d99fe44d411da20bff218c2749dc257d), causation_id: EventId(0xde75f4c046ddd75d0f91396cf6f1f5514740e628108bbb966af32886441ec5c4), origin_id: EventId(0x8611ee9b8c2ebe2810028541605360fcca05eef50dfe3f9f988390881e9b8821), seq: 60, ts: 32743916106658291718907709415774437, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:28.935226Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), causation_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 59, ts: 32743916106825437666959591471286113, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:47:28.935264Z  INFO e3_events::eventbus: >>> DocumentReceived EnclaveEvent { payload: DocumentReceived(DocumentReceived { meta: DocumentMeta { e3_id: E3id { id: "0", chain_id: 31337 }, kind: TrBFV, filter: [], expires_at: 2026-05-01T13:47:28Z }, value: }), ctx: EventContext { id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), causation_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 59, ts: 32743916106826120196490317308000572, aggregate_id: AggregateId(0), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:47:28.938556Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xaa03f7418c5b2b7d84858fbcb7865aa2f876b161a50915a6da4def6bcdaecea5), causation_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 88, ts: 32743916106851927191449438387406689, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:28.938556Z  INFO e3_events::eventbus: >>> DecryptionKeyShared EnclaveEvent { payload: DecryptionKeyShared(DecryptionKeyShared { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", sk_poly_sum: , es_poly_sum: [], signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }], external: true }), ctx: EventContext { id: EventId(0xaa03f7418c5b2b7d84858fbcb7865aa2f876b161a50915a6da4def6bcdaecea5), causation_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 88, ts: 32743916106851761170752773584746812, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:28.939799Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 2, waiting on 0 -[CIPHER] [cn3] 2026-04-01T13:47:28.939802Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected -[CIPHER] [cn3] 2026-04-01T13:47:28.939812Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) -[CIPHER] [cn1] 2026-04-01T13:47:28.939817Z  INFO e3_keyshare::decryption_key_shared_collector: All DecryptionKeyShared events collected -[CIPHER] [cn1] 2026-04-01T13:47:28.939818Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 3.75µs -[CIPHER] [cn3] 2026-04-01T13:47:28.939804Z  INFO e3_keyshare::decryption_key_shared_collector: Finished processing DecryptionKeyShared in 4.958µs -[CIPHER] [cn1] 2026-04-01T13:47:28.939815Z  INFO e3_keyshare::decryption_key_shared_collector: DecryptionKeySharedCollector: received from party 2, waiting on 0 -[CIPHER] [cn1] 2026-04-01T13:47:28.939823Z  INFO e3_keyshare::threshold_keyshare: All DecryptionKeyShared collected for E3 31337:0 (2 shares) -[CIPHER] [cn1] 2026-04-01T13:47:28.939824Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn3] 2026-04-01T13:47:28.939814Z  INFO e3_keyshare::threshold_keyshare: Dispatching C4 share verification for E3 31337:0 (2 parties, 0 pre-dishonest) -[CIPHER] [cn3] 2026-04-01T13:47:28.939916Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), causation_id: EventId(0xaa03f7418c5b2b7d84858fbcb7865aa2f876b161a50915a6da4def6bcdaecea5), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 89, ts: 32743916106911270367134562014955361, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:28.941868Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs -[CIPHER] [cn1] 2026-04-01T13:47:28.939916Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, share_proofs: [], decryption_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), causation_id: EventId(0xaa03f7418c5b2b7d84858fbcb7865aa2f876b161a50915a6da4def6bcdaecea5), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 89, ts: 32743916106911454834575297693776188, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:28.941939Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, DecryptionProofs -[CIPHER] [cn3] 2026-04-01T13:47:28.946010Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, party_proofs: [PartyProofData { party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C4aSkShareDecryption, , [194, 226, 120, 236, 252, 147, 32, 210, 237, 243, 183, 220, 153, 105, 134, 133, 150, 153, 129, 87, 255, 28, 216, 101, 213, 245, 191, 175, 14, 155, 54, 245]), (C4bESmShareDecryption, , [245, 238, 247, 102, 150, 236, 218, 196, 211, 132, 161, 136, 234, 4, 162, 82, 54, 219, 178, 58, 161, 229, 141, 199, 138, 166, 30, 89, 134, 76, 163, 139])] }, PartyProofData { party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C4aSkShareDecryption, , [100, 189, 55, 218, 19, 127, 249, 110, 20, 87, 169, 197, 138, 205, 100, 3, 179, 194, 24, 47, 164, 65, 143, 114, 174, 230, 81, 153, 116, 251, 53, 140]), (C4bESmShareDecryption, , [205, 89, 207, 42, 199, 139, 186, 157, 147, 147, 156, 92, 127, 106, 27, 242, 151, 241, 56, 34, 84, 189, 151, 137, 52, 250, 230, 223, 253, 90, 38, 148])] }] }), ctx: EventContext { id: EventId(0xeb2e880d45fe24eee8b01ee56d087dc0a66bbdcde9cbe276cad6e4501ee71b1c), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 90, ts: 32743916106967164001677901956351841, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:28.946019Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, party_proofs: [PartyProofData { party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C4aSkShareDecryption, , [49, 88, 112, 71, 156, 103, 201, 84, 92, 137, 130, 188, 25, 151, 12, 81, 127, 68, 159, 54, 230, 94, 116, 139, 202, 229, 128, 248, 84, 172, 192, 91]), (C4bESmShareDecryption, , [247, 249, 83, 72, 71, 110, 246, 144, 56, 115, 197, 80, 242, 99, 23, 208, 142, 209, 30, 122, 101, 36, 85, 119, 28, 86, 37, 188, 147, 128, 235, 198])] }, PartyProofData { party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C4aSkShareDecryption, , [194, 226, 120, 236, 252, 147, 32, 210, 237, 243, 183, 220, 153, 105, 134, 133, 150, 153, 129, 87, 255, 28, 216, 101, 213, 245, 191, 175, 14, 155, 54, 245]), (C4bESmShareDecryption, , [245, 238, 247, 102, 150, 236, 218, 196, 211, 132, 161, 136, 234, 4, 162, 82, 54, 219, 178, 58, 161, 229, 141, 199, 138, 166, 30, 89, 134, 76, 163, 139])] }] }), ctx: EventContext { id: EventId(0x9361d1acfa2f68bd494861011057be0d8bc697bb0de1e567281d3e0b6db95c52), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 90, ts: 32743916106968676634691944722889020, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:28.950859Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x5e634e70829339b4324c1b7f9984a332726f8654b1397eac609e298f06468960), causation_id: EventId(0x9361d1acfa2f68bd494861011057be0d8bc697bb0de1e567281d3e0b6db95c52), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 91, ts: 32743916107029108168277417213983036, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:28.950856Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, correlation_id: 118, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x5e634e70829339b4324c1b7f9984a332726f8654b1397eac609e298f06468960), causation_id: EventId(0xeb2e880d45fe24eee8b01ee56d087dc0a66bbdcde9cbe276cad6e4501ee71b1c), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 91, ts: 32743916107028388745258543958165345, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:28.953904Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 0, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1e694fce5fceae627d22ed89b5c6f98f05181c2fd6117956eaae0318e08f3a8d), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 60, ts: 32743916107116195247049400007162172, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:28.955856Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(142)` -[CIPHER] [cn3] 2026-04-01T13:47:28.956823Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsRequest { party_proofs: [PartyShareDecryptionProofsToVerify { sender_party_id: 2, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }, PartyShareDecryptionProofsToVerify { sender_party_id: 1, signed_sk_decryption_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4aSkShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }, signed_e_sm_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C4bESmShareDecryption, proof: Proof { circuit: DkgShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x6eef9a9cb6f64e3ad5ae0f6078b15c9ca9656a18da55256146d70fdc13105060), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 60, ts: 32743916107116527288442728195786593, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:28.958744Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_decryption_proofs(208)` -[CIPHER] [cn2] 2026-04-01T13:47:29.063058Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(19) in 139.461667ms -[CIPHER] [cn2] 2026-04-01T13:47:29.063158Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 117, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x495840142e6ca0d642f38903ea7f39038e66977e669ebdb5a03439da16c11764), causation_id: EventId(0xdcea13e382c225696a3e55108646796ba5473eb30490c44e85844b0c665e7358), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 93, ts: 32743916109185255849332959762995429, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:29.063329Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C4aSkShareDecryption, data_hash: [100, 189, 55, 218, 19, 127, 249, 110, 20, 87, 169, 197, 138, 205, 100, 3, 179, 194, 24, 47, 164, 65, 143, 114, 174, 230, 81, 153, 116, 251, 53, 140], public_signals: }), ctx: EventContext { id: EventId(0xed051cea3b1015e8f0ac8d0b0b0332fc21f14cfd98b42b7d980fb952472ad16b), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 94, ts: 32743916109188133541408458453047525, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:29.063366Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C4bESmShareDecryption, data_hash: [205, 89, 207, 42, 199, 139, 186, 157, 147, 147, 156, 92, 127, 106, 27, 242, 151, 241, 56, 34, 84, 189, 151, 137, 52, 250, 230, 223, 253, 90, 38, 148], public_signals: }), ctx: EventContext { id: EventId(0x8be9fdb614759ba6efe46c3bf87028bc60e1844e432caeb343dc25de76e2af15), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 95, ts: 32743916109188151988152532162599141, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:29.063396Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4aSkShareDecryption, data_hash: [49, 88, 112, 71, 156, 103, 201, 84, 92, 137, 130, 188, 25, 151, 12, 81, 127, 68, 159, 54, 230, 94, 116, 139, 202, 229, 128, 248, 84, 172, 192, 91], public_signals: }), ctx: EventContext { id: EventId(0x4f9f3192ac7e783ecfd94c266b5273ce636a47d3d071c97bfc8f0cb3e35f0234), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 96, ts: 32743916109188170434896605872150757, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:29.063441Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4bESmShareDecryption, data_hash: [247, 249, 83, 72, 71, 110, 246, 144, 56, 115, 197, 80, 242, 99, 23, 208, 142, 209, 30, 122, 101, 36, 85, 119, 28, 86, 37, 188, 147, 128, 235, 198], public_signals: }), ctx: EventContext { id: EventId(0xe934f688de93e87c240a7d97d4093b3d44f352bf3fb8cc94e16b306eedf6881c), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 97, ts: 32743916109188188881640679581702373, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:29.063502Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0x27b6d1b7b6c2e13216dc38babf869fdb2f8ceb25dcd64fd09a4516b50a3c8785), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 98, ts: 32743916109188188881640683876669669, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:29.063584Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated -[CIPHER] [cn2] 2026-04-01T13:47:29.063589Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:47:29.064058Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0x07a2cd17b6552cf9843bb582734f5d93c0ff1463014821db7c1dab556f304618), seq: 99, ts: 32743916109194516114857961957906661, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:47:29.064901Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated -[CIPHER] [cn3] 2026-04-01T13:47:29.067297Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), origin_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), seq: 93, ts: 32743916109258138935168186009749345, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:47:29.067367Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), origin_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), seq: 93, ts: 32743916109238806747378936982960444, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-04-01T13:47:29.067613Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), origin_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), seq: 15, ts: 32743916109245466021989548490891009, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:47:29.067675Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), origin_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), seq: 15, ts: 32743916109238640726682272239333725, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:47:29.068858Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 1/3 -[CIPHER] [cn5] 2026-04-01T13:47:29.067650Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), causation_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), origin_id: EventId(0xdfd949411a590d805bb832f4fda05c20b9766dc99c4ff2793d31007858d3046d), seq: 15, ts: 32743916109247052441979887541223493, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:47:29.096120Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(208) in 137.370458ms -[CIPHER] [cn1] 2026-04-01T13:47:29.096206Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_decryption_proofs`(142) in 140.34425ms -[CIPHER] [cn3] 2026-04-01T13:47:29.096206Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd4d41e675403506718aeedaef322f63b2e97eaf22f18b10b5926ea5d8eb421ac), causation_id: EventId(0x6eef9a9cb6f64e3ad5ae0f6078b15c9ca9656a18da55256146d70fdc13105060), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 94, ts: 32743916109794957634457207671326561, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:29.096421Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C4aSkShareDecryption, data_hash: [194, 226, 120, 236, 252, 147, 32, 210, 237, 243, 183, 220, 153, 105, 134, 133, 150, 153, 129, 87, 255, 28, 216, 101, 213, 245, 191, 175, 14, 155, 54, 245], public_signals: }), ctx: EventContext { id: EventId(0x5a6738cc1f82ad7d2a71a92c1d13349de66a832743ff0d2716645aacacdec634), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 95, ts: 32743916109797798433044558942275425, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:29.096424Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareDecryptionProofs(VerifyShareDecryptionProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 119, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xd0710ddfaa9e436eeb1e500e3a597843b598d23ecd0ab1db1fd8c7eed81cb0fa), causation_id: EventId(0x1e694fce5fceae627d22ed89b5c6f98f05181c2fd6117956eaae0318e08f3a8d), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 94, ts: 32743916109796580947935692695173436, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:29.096471Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C4bESmShareDecryption, data_hash: [245, 238, 247, 102, 150, 236, 218, 196, 211, 132, 161, 136, 234, 4, 162, 82, 54, 219, 178, 58, 161, 229, 141, 199, 138, 166, 30, 89, 134, 76, 163, 139], public_signals: }), ctx: EventContext { id: EventId(0xf648acd21bd0ac175bbc5380cec4ab48a2ff454766a810c3dfbe71ec8cbf0a2b), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 96, ts: 32743916109797816879788632651827041, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:29.096505Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C4aSkShareDecryption, data_hash: [100, 189, 55, 218, 19, 127, 249, 110, 20, 87, 169, 197, 138, 205, 100, 3, 179, 194, 24, 47, 164, 65, 143, 114, 174, 230, 81, 153, 116, 251, 53, 140], public_signals: }), ctx: EventContext { id: EventId(0xed051cea3b1015e8f0ac8d0b0b0332fc21f14cfd98b42b7d980fb952472ad16b), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 97, ts: 32743916109797835326532706361378657, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:29.096537Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C4bESmShareDecryption, data_hash: [205, 89, 207, 42, 199, 139, 186, 157, 147, 147, 156, 92, 127, 106, 27, 242, 151, 241, 56, 34, 84, 189, 151, 137, 52, 250, 230, 223, 253, 90, 38, 148], public_signals: }), ctx: EventContext { id: EventId(0x8be9fdb614759ba6efe46c3bf87028bc60e1844e432caeb343dc25de76e2af15), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 98, ts: 32743916109797835326532710656345953, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:29.096569Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0x2113a76d436574cd8660f65fcb6945cc27ecb3a68674ea4ab6676ac2f51185ce), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 99, ts: 32743916109797853773276780070930273, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:29.096646Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated -[CIPHER] [cn3] 2026-04-01T13:47:29.096652Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:29.096666Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4aSkShareDecryption, data_hash: [49, 88, 112, 71, 156, 103, 201, 84, 92, 137, 130, 188, 25, 151, 12, 81, 127, 68, 159, 54, 230, 94, 116, 139, 202, 229, 128, 248, 84, 172, 192, 91], public_signals: }), ctx: EventContext { id: EventId(0x4f9f3192ac7e783ecfd94c266b5273ce636a47d3d071c97bfc8f0cb3e35f0234), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 95, ts: 32743916109801801376508552498280764, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:29.096711Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C4bESmShareDecryption, data_hash: [247, 249, 83, 72, 71, 110, 246, 144, 56, 115, 197, 80, 242, 99, 23, 208, 142, 209, 30, 122, 101, 36, 85, 119, 28, 86, 37, 188, 147, 128, 235, 198], public_signals: }), ctx: EventContext { id: EventId(0xe934f688de93e87c240a7d97d4093b3d44f352bf3fb8cc94e16b306eedf6881c), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 96, ts: 32743916109801819823252626207832380, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:29.096759Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C4aSkShareDecryption, data_hash: [194, 226, 120, 236, 252, 147, 32, 210, 237, 243, 183, 220, 153, 105, 134, 133, 150, 153, 129, 87, 255, 28, 216, 101, 213, 245, 191, 175, 14, 155, 54, 245], public_signals: }), ctx: EventContext { id: EventId(0x5a6738cc1f82ad7d2a71a92c1d13349de66a832743ff0d2716645aacacdec634), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 97, ts: 32743916109801838269996699917383996, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:29.096816Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C4bESmShareDecryption, data_hash: [245, 238, 247, 102, 150, 236, 218, 196, 211, 132, 161, 136, 234, 4, 162, 82, 54, 219, 178, 58, 161, 229, 141, 199, 138, 166, 30, 89, 134, 76, 163, 139], public_signals: }), ctx: EventContext { id: EventId(0xf648acd21bd0ac175bbc5380cec4ab48a2ff454766a810c3dfbe71ec8cbf0a2b), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 98, ts: 32743916109801838269996704212351292, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:29.096852Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: DecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), causation_id: EventId(0x5d94482423968f91048e134f76ede633e8b3c10a688da629c6c4fb425077394f), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 99, ts: 32743916109801856716740773626935612, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:29.096915Z  INFO e3_keyshare::threshold_keyshare: All parties passed C4 verification for E3 31337:0 — publishing KeyshareCreated -[CIPHER] [cn1] 2026-04-01T13:47:29.096919Z  INFO e3_keyshare::threshold_keyshare: Publishing Exchange #4 (KeyshareCreated) for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:47:29.099957Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 100, ts: 32743916109809346094834699704891708, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:47:29.100005Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0xea17e7d8a92cf0fe27d732760f6583b341894254cbb7831acc0ef05a5a3243c6), origin_id: EventId(0xcefc6c331473385e3c28ea68cf9e43704466ee807cf04852264c8509e917147f), seq: 100, ts: 32743916109804439260911094380857185, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:47:29.100677Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated -[CIPHER] [cn3] 2026-04-01T13:47:29.100700Z  WARN e3_net::net_event_translator: GossipPublish event: KeyshareCreated -[CIPHER] [cn5] 2026-04-01T13:47:29.102894Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), origin_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), seq: 16, ts: 32743916109901044859625112274665541, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:47:29.106171Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), origin_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), seq: 16, ts: 32743916109908442003998666058510685, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:47:29.106178Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 101, ts: 32743916109906615776335371587258209, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:47:29.106874Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 17, ts: 32743916109908810938880140249543005, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:47:29.107608Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 2/3 -[CIPHER] [ag] 2026-04-01T13:47:29.107649Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator got keyshares 3/3 -[CIPHER] [ag] 2026-04-01T13:47:29.107652Z  INFO e3_aggregator::publickey_aggregator: All keyshares collected, transitioning to VerifyingC1... -[CIPHER] [ag] 2026-04-01T13:47:29.107678Z  INFO e3_aggregator::publickey_aggregator: Dispatching C1 proof verification for 3 parties (0 missing proofs) -[CIPHER] [cn1] 2026-04-01T13:47:29.107631Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), origin_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), seq: 101, ts: 32743916109911338142818239815776572, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-04-01T13:47:29.111053Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 16, ts: 32743916109925855730404251592695553, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:47:29.112447Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 18, ts: 32743916110007869954555960541720925, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.113997Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, PkGenerationProofs -[CIPHER] [cn4] 2026-04-01T13:47:29.114911Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), origin_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), seq: 17, ts: 32743916110090751175679141274590977, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:47:29.114946Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), causation_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), origin_id: EventId(0x117a75ca1c462105abfb29dda491102864571689ab0975220e146cce1b3d273a), seq: 100, ts: 32743916109908644918183479829616869, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:47:29.115665Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 101, ts: 32743916109909032299809027730200805, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-04-01T13:47:29.124007Z  INFO e3_events::eventbus: >>> KeyshareCreated EnclaveEvent { payload: KeyshareCreated(KeyshareCreated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_pk_generation_proof: Some(SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }) }), ctx: EventContext { id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), causation_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 17, ts: 32743916109956938494168452216062021, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:47:29.125660Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, correlation_id: 78, party_proofs: [PartyProofData { party_id: 0, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C1PkGeneration, , [29, 253, 198, 202, 151, 80, 235, 49, 140, 126, 53, 4, 36, 133, 129, 89, 69, 192, 24, 95, 43, 153, 235, 14, 189, 96, 153, 115, 208, 211, 147, 128])] }, PartyProofData { party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C1PkGeneration, , [199, 166, 23, 142, 221, 151, 47, 3, 35, 221, 38, 8, 64, 172, 134, 238, 122, 51, 243, 118, 239, 218, 249, 252, 252, 39, 48, 64, 36, 104, 100, 227])] }, PartyProofData { party_id: 2, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C1PkGeneration, , [57, 94, 22, 171, 6, 164, 131, 9, 115, 183, 34, 14, 207, 44, 22, 94, 60, 81, 79, 10, 238, 91, 187, 57, 155, 175, 6, 161, 78, 91, 13, 113])] }] }), ctx: EventContext { id: EventId(0xf85fd2bc25865cdf5a5038d7da22671a048e6c623018c08ffad2aa8aa5759673), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 19, ts: 32743916110144357413957337514127709, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.132101Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, correlation_id: 78, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0x863facfc994647cde32254c36c3bf29774e0ef089223b519ea1f67a93b3ea072), causation_id: EventId(0xf85fd2bc25865cdf5a5038d7da22671a048e6c623018c08ffad2aa8aa5759673), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 20, ts: 32743916110340999705783081334354269, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.135542Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C1PkGeneration, proof: Proof { circuit: PkGeneration, data: , public_signals: } }, signature: }] }] })), correlation_id: 79, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xa33868095a4f0847a507d6abbafe93f56fcc8d63d876d04a467cc1d2a05e4a71), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 27, ts: 32743916110459686057153328589451613, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.137145Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(206)` -[CIPHER] [ag] 2026-04-01T13:47:29.233989Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(206) in 96.83725ms -[CIPHER] [ag] 2026-04-01T13:47:29.234077Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 79, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xadc0611e7437f80201f563f421b6bcd7c8148559950ad598e1f2dc9cf819a3cb), causation_id: EventId(0xa33868095a4f0847a507d6abbafe93f56fcc8d63d876d04a467cc1d2a05e4a71), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 22, ts: 32743916112338302473619909326025053, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.234217Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C1PkGeneration, data_hash: [29, 253, 198, 202, 151, 80, 235, 49, 140, 126, 53, 4, 36, 133, 129, 89, 69, 192, 24, 95, 43, 153, 235, 14, 189, 96, 153, 115, 208, 211, 147, 128], public_signals: }), ctx: EventContext { id: EventId(0xf6b52577cc56a75e6b0071bd6e96f4a9236cc569a30deb9f3cc57125f931479c), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 23, ts: 32743916112340848124302081244148061, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.234262Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C1PkGeneration, data_hash: [199, 166, 23, 142, 221, 151, 47, 3, 35, 221, 38, 8, 64, 172, 134, 238, 122, 51, 243, 118, 239, 218, 249, 252, 252, 39, 48, 64, 36, 104, 100, 227], public_signals: }), ctx: EventContext { id: EventId(0xd0c04c69e0b8e4426ce1580e8e407d0820b52eec4f0b568ea40d9215beab125c), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 24, ts: 32743916112340885017790228663251293, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.234298Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C1PkGeneration, data_hash: [57, 94, 22, 171, 6, 164, 131, 9, 115, 183, 34, 14, 207, 44, 22, 94, 60, 81, 79, 10, 238, 91, 187, 57, 155, 175, 6, 161, 78, 91, 13, 113], public_signals: }), ctx: EventContext { id: EventId(0x45dfcf981784f035b439f9c0189b81c2fd0ee17c4849ddd856613f4690fedd5a), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 25, ts: 32743916112340885017790232958218589, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.234332Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: PkGenerationProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0x305f112b0f0602912ec06a9ae327d0a8783578da11afff704ca89fc33f1cc633), causation_id: EventId(0x0ec6072b8ccff8bdbefdb0b1d19d7abc5f5ea794cd971c4e688265fdd41d1c50), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 26, ts: 32743916112340903464534302372802909, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.239159Z  INFO e3_aggregator::publickey_aggregator: Aggregating public key from 3 honest shares... -[CIPHER] [ag] 2026-04-01T13:47:29.239236Z  INFO e3_aggregator::publickey_aggregator: Publishing PkAggregationProofPending for C5 proof generation... -[CIPHER] [ag] 2026-04-01T13:47:29.239288Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 0 (buffered=1) -[CIPHER] [ag] 2026-04-01T13:47:29.239306Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 1 (buffered=2) -[CIPHER] [ag] 2026-04-01T13:47:29.239320Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: buffered DKG proof from party 2 (buffered=3) -[CIPHER] [ag] 2026-04-01T13:47:29.239332Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: proof aggregation disabled — skipping cross-node fold -[CIPHER] [ag] 2026-04-01T13:47:29.239335Z  INFO e3_aggregator::publickey_aggregator: PublicKeyAggregator: proof aggregation disabled — skipping cross-node fold -[CIPHER] [ag] 2026-04-01T13:47:29.241810Z  INFO e3_events::eventbus: >>> PkAggregationProofPending EnclaveEvent { payload: PkAggregationProofPending(PkAggregationProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, proof_request: PkAggregationProofRequest { keyshare_bytes: [, , ], aggregated_pk_bytes: , params_preset: InsecureThreshold512, committee_n: 3, committee_h: 3, committee_threshold: 0 }, public_key: , nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"} }), ctx: EventContext { id: EventId(0xd42ae0bd1af9351cf075f8d4274ba78e7ba54b7d8a1b824ae6a87132726637d5), causation_id: EventId(0x305f112b0f0602912ec06a9ae327d0a8783578da11afff704ca89fc33f1cc633), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 27, ts: 32743916112434649817916894314115421, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.242829Z  INFO e3_zk_prover::actors::proof_request: Requesting C5 PkAggregation proof for E3 31337:0 -[CIPHER] [ag] 2026-04-01T13:47:29.246112Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(PkAggregation(PkAggregationProofRequest { keyshare_bytes: [, , ], aggregated_pk_bytes: , params_preset: InsecureThreshold512, committee_n: 3, committee_h: 3, committee_threshold: 0 })), correlation_id: 80, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3c4834fd578ad9b31a091eedf024bcc7abb2f4f6955728e499581dd30b0a2e75), causation_id: EventId(0xd42ae0bd1af9351cf075f8d4274ba78e7ba54b7d8a1b824ae6a87132726637d5), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 28, ts: 32743916112500947416117806442623325, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:29.246845Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_pk_aggregation(134)` -[CIPHER] [ag] 2026-04-01T13:47:30.534373Z  INFO e3_zk_prover::prover: generated proof (9792 bytes) for pk_aggregation / 31337:0 -[CIPHER] [ag] 2026-04-01T13:47:30.534483Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_pk_aggregation`(134) in 1.287635666s -[CIPHER] [ag] 2026-04-01T13:47:30.534579Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(PkAggregation(PkAggregationProofResponse { proof: Proof { circuit: PkAggregation, data: , public_signals: } })), correlation_id: 80, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xfa168b8668c50b39a01f075a72e26161a554335787503a8c4b98cdf78d85bd3f), causation_id: EventId(0x3c4834fd578ad9b31a091eedf024bcc7abb2f4f6955728e499581dd30b0a2e75), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 28, ts: 32743916136328182461014738945323357, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:30.535018Z  INFO e3_zk_prover::actors::proof_request: C5 proof signed for E3 31337:0 (signer: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266) -[CIPHER] [ag] 2026-04-01T13:47:30.535093Z  INFO e3_events::eventbus: >>> PkAggregationProofSigned EnclaveEvent { payload: PkAggregationProofSigned(PkAggregationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, signed_proof: SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C5PkAggregation, proof: Proof { circuit: PkAggregation, data: , public_signals: } }, signature: } }), ctx: EventContext { id: EventId(0x9d5fd8bc8c8fa1a66a2af85db9776d40473ec747e91fda2166ccfe9f43b49594), causation_id: EventId(0xd42ae0bd1af9351cf075f8d4274ba78e7ba54b7d8a1b824ae6a87132726637d5), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 29, ts: 32743916136337645640724551945302365, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:30.535466Z  INFO e3_aggregator::publickey_aggregator: C5 proof signed — waiting for cross-node DKG fold to complete... -[CIPHER] [ag] 2026-04-01T13:47:30.535492Z  INFO e3_aggregator::publickey_aggregator: C5 proof ready — publishing PublicKeyAggregated (dkg_aggregated_proof=skipped) -[CIPHER] [ag] 2026-04-01T13:47:30.539140Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0x9d5fd8bc8c8fa1a66a2af85db9776d40473ec747e91fda2166ccfe9f43b49594), origin_id: EventId(0x4ff27e187810caaca9a9bbde25345f70518ee1a7067eed707802deaab1f86982), seq: 30, ts: 32743916136346352503927342853665117, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:47:30.539743Z  WARN e3_net::net_event_translator: GossipPublish event: PublicKeyAggregated -[CIPHER] [ag] 2026-04-01T13:47:30.540489Z  INFO e3_evm::ciphernode_registry_sol: Calling: contract.publishCommittee(..) -[CIPHER] [cn3] 2026-04-01T13:47:30.542867Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), origin_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), seq: 102, ts: 32743916136447053279825726070294369, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-04-01T13:47:30.542871Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), origin_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), seq: 18, ts: 32743916136444858117280955605647429, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-04-01T13:47:30.544874Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), origin_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), seq: 18, ts: 32743916136445042584721692672270081, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:47:30.544865Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), origin_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), seq: 102, ts: 32743916136454063042573734283213116, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:47:30.544884Z  INFO e3_events::eventbus: >>> PublicKeyAggregated EnclaveEvent { payload: PublicKeyAggregated(PublicKeyAggregated { pubkey: , e3_id: E3id { id: "0", chain_id: 31337 }, nodes: {"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "0x90F79bf6EB2c4f870365E785982E1f101E93b906"}, pk_aggregation_proof: Some(Proof { circuit: PkAggregation, data: , public_signals: }), dkg_aggregated_proof: None }), ctx: EventContext { id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), causation_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), origin_id: EventId(0xa3704e37f163037848bf14d7327ef8f03519c38c639a10ca6f724f3e19d2e683), seq: 102, ts: 32743916136460740763928418749274341, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-04-01T13:47:31.114931Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 19, ts: 32743916147034303786514292229676801, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:47:31.114933Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32743916147033529023263195677087973, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:47:31.115053Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 31, ts: 32743916147035595058599448180830557, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:47:31.115076Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32743916147036701863243873528285025, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:47:31.115083Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 19, ts: 32743916147036812543708316757590085, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:47:31.115633Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CommitteeFinalized, new_stage: KeyPublished }), ctx: EventContext { id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), causation_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), origin_id: EventId(0x04de2d74467f35e6c683a0fc1c119a1ad43d1ea2f294ca160399cd48c9971142), seq: 103, ts: 32743916147046921359460707203184956, aggregate_id: AggregateId(31337), block: Some(344), source: Evm } } -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] PUBLISHING PRIVATE INPUT -[TEST] ENCRYPTING NUMBERS -[TEST] -[SERVER] 📡 Fetching E3 data from contract... -[SERVER] 📝 Input Published for E3 0: index 0 -[SERVER] ✅ Received E3 data from contract. -[SERVER] 🎯 Committee Published for: 0, expiration: 1775051311 -[SERVER] 📥 Setting up session for E3 0... -[SERVER] 📊 E3 0 now has 1 inputs -[SERVER] ⏰ Scheduling E3 0 processing in 59 seconds... -[SERVER] 📝 Input Published for E3 0: index 1 -[SERVER] 📊 E3 0 now has 2 inputs -[CIPHER] [ag] 2026-04-01T13:47:37.882034Z  INFO e3_evm::ciphernode_registry_sol: Committee published to registry tx=0x9b2dc412f74e65209afb9de81164f779edce966e92c4f33bad7e6867cd503bbf -[SERVER] 📊 Processing E3 session 0 with 2 inputs -[SERVER] 🔄 Calling FHE runner for E3 0... -[SERVER] payload: -[SERVER] {"e3_id":0,"params":"0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000ffffee0010000000000000000000000000000000000000000000000000000000ffffc400100000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000","ciphertext_inputs":[["0x0a8a2408021080041a8024b9e06bdb906b4f567a70f97689affbd6b81edf44adf1c7b2ec49269b766c87825dd4fa35c70912d4302e10658c32b19698b3c8b0c9b2f1e1ee0e9aca163bb5f81ddcaae9400eb273849a960beed5d6fbc9b7d996bcb2fc1969bd0a563cd9899a6506bee18ad069427d2782d9643808451125b4f8bd3ef57785e847e7b28e7822e41aceadf00d134bdc913531e9c40fcef38b6523edbf75c500b71ba897b350d1e049696234777312d2d363c6ae934db7b600b60661098523072e8b0c19a399340f40a832fcaea34829831ffba408a3b4c5284f18c5965a556d24e5dc78ba65e3e9f3c4c584763a78926415438a8796c3d49338887a4186b0168f3012ee800f6ff62d6802f46c8e002010c7ce7d6fa2dccce26565f1ceab3a0cfcb7f94bc97b93a7272620f814751503ffd907b3f2cab1eefdb85cac43b57f73aeb6e8f3ab283e83686a268cf4c7f10990a7e191852a0d091ad041bd8e00f63896a79e2e3a9aa76d9a020d0c2b0b12694d1d17b00c713935060a4c5077bd7ef57bf80a10a3c9129d9e82ccdfcdc992e915e1e59285d76f55f1dafa4df0fa9818ef0b2086bbf801ae63e3841da88a4fa28037fcb224af5ba8678832fd57ce15c3dd05394fb86421709375cf2f3a9b8311dfae802730d2d8790be131ac4e7fd524f8ce290f10cf2dc014be69c1ebc5810f7889389f50617d07590a8575aec154dce8563d4d65352781877ed8bed071990bf9e681c1e0f38bb6ba37086ace5fbb929f8d7638e2a6edb85fcc23b8bf17641db4382040220461660226cb80f7a08f8da865a8e9b0c621dec947d092e7158bc0a61d17d3ffb2804120c3bcc2a9b36ec6ab4375ab4d9f7a01b9bef0aac3cc3ec0330695b1e534fe28fe157abe816bfbcedfdc8269ebf7c013ac5802b9ba3c58b0f636a38b46e134179920add0cca97f1701c62ec7dd8bcf5866d313875aa768eb55f6c63770e3ae0f5278b43a8d7879fe500da0f1767a7ca0fa01b5d51f53c8860066c8fdaf54f606a1876de8aeec5902a10a97d557b24dad9e496a1149336c97ea15afb666f1715a46197baf0d76be18ab5c6c01d8c5c238a279e1f94821c855b2e286c2ed202fcd3aab4634fe7525e467fe3ddcc460e6433b65dbef274c49b39461436be72efadd21dea4501ac82500fa9ddc32ee9feb05e56057b9d35411da2158570d3a7831cca2217f91889d1c4a7936f96afa1730eaaeca648c193fbb13bb9cd9f184518dd8b1f84fb7961a92ff5ef4016c063ee90bbb0e475b7a72579a27694bd5c7a585fd1551693f96fda02e7319d16c6069650a034d4dc833b0660945280bb433a302438b867058d03e9dec31c02708f2d8f4e37c1d985c79e2cb3a8750e0dce045d02c46a96a0451a4356f08c4524fff0a9c281579cf3b6f951f5c02bbcfd94e7f81154ffc0a391132792639d3f7c22483f6db047b34d6795bbef31ff59ff42eb000656f8e7f2f9bc036cbbe627f4cd48dcf1439a846cb8f17ee1b40e25d89f065844b8bd108cb44bb9314e8b22238c445a5dad4d2e5525375bf3a8f6805cae58cb174c74d9888ab8f06333cb1865425c437bfbf6bb22f32096226416174d895b07b5a4db7b5a512613c4ac722a1938148c59fc3bbf710594cd9f02834900e679a1e8fe65f83a4fa9576267b74f45cebebb5caad8ec747aa75f796457aa4a7171aa4884d22edfe9bdc20f888aaa579874f0758d788d0fda14f053aed7d55c4c6870177206eac9e1b8fdaafa4a78f0a7037958b293cd738d1b7eb8b04d02387ae126313c68a244746dd7c04e55118e25e6404287d3f00a7e402d7dbbfe3de831cb3da77ae51aa35f5c8d19d92b7598b188a3ad01f177ccd8534833ed95cf409dba680b36e806bd6070b540f17f9b38aa1a8b3806d9690cb336333127769ab5956bfa885bde4a2019014d335eae37b3c9ff9051594f3533c1bc6d5a63621a57f1e724558aa2d93a75d7a6ee8c9076b583280c5c76c363d0f7af074ccbb1ed177ddcf046497769ad5856183e41578bd85161d9b3eb32d113ed9382947393689eaaccd82ce3106d14a667ce9dbfb22aea5aa2b1a12482ca9f8a6be2d3f913850b17372d9e576511d1246e777ae34972ac4e66348852ad1bb6d45e95b687e697e93fd17c4a8998186870e730247b63f9c5fa49b1c3501efcc07b0b0fcdec2d84f10a6de0c3eae05b5c64628bbf6a4a1bf3f26cd15eaa1459142bed94e3ae90c9e91224975259a57a7fd826698f01e5bbb2b3cb364c4f4ff0802241be34bd2c23d6b6f9f866809af9ba85daecccc46288ed8561c0cbdefc7940b75b899fcb630a1bc2644f85203b595af94eb834765631beb198e6a7afdf03b9d189833e2249beccbda22b00c4a1a43ef3d4f7ee7bd4f107a6365e19da8d56f531e4794ced134f9a565a5796e0b0db6ab3bf69f51c5f03cd584c30f97c22e64a7d61539e0b6fe73311a26bb95470bb1bbd8654457d658f7caecb5039e09a3ec9e8209cfc6578dd26b8e64ad6ecdea5db811c72f663103f7fa588cfbe51a28f05bd157a604be3572a7b66259c376cb2b605e9adf7f7928a1be725095f5a1bc7b7d4c4ca780f434e600da8aa47195b5ad0cebb39cb79b8a9ed41bbc86a3421bbd090c243148fc3dd3adfcb21349310ee5380a6f5c7a1b40612384fb0d2f9518cc9be14d9332204256acd7b72e6148dcd2eb4457eb458215e60b235fc68f6ba4f85f6de3f90764cacf39d53e3c86fe9df1381f8f8027013404df03bdfa0c1338aca4adff5ddb1304f40fc481004cfa2d0ee2919a66277999d8d17af48c8f8b641e5f50d77837fd058356f3c754349f19c73a3086ad05685b408066b00c58b54da33631ffc1fd2238a1d0a7744b25c4abf4569e7403e110165864e46314f99e06b02475e52eb63f5ef2c290032ae07411a1ed3ca64faf50a8d2f5c7dfd8091363472a53695f29058a8ad41ec1f624643995d9adcf1d404745622b22785218f354bb78dac07221184b002099617f9afd6664c2d2883d42bb2619c85a6e3dff496d3067e18548cc6d48df6eefcab3f3e6cdef52a5219b893373c614517c4f101e39691729771aaea8f425e184e498e9b024d0dc96f5f035c768c949f8c31bb9202f66c7c4ddc34597a1611e36d18dab6ce4952c601eed624b31940eabf12826449b37f6989a4a6ee8a7ea47af1f121b52aca358250f99eb90c13cb31e92417bed70691621cdca5082362daf4e8443a8d3fc09ae8e5ca991fe2b15ab38398c8571cbee35e0da59ffb1116cb4c9ae7b30d0145c10cc756929fb4a9d234f516ff5ca5aec5ee886bfcb13f660885a82ce3f74600dda6971cbc302c820388ba5ebce31da5792e3d2cf69f169809cca429c59e36bfca17626a69cd0a7222d8c6df1e5dd8b0f8afe2937b28133474a5b91e45748c3cc4a74dc3f1f7fba294fb3701a4c557506f9cf9620371e68f1e8815d17876b83ed37b1c421178a563baab1fe17073ca32d9242177737d785b29df0b17796dd9373cde8fc04b2d6fe8986ca8ac4c8551f57ad8f52889d4af5fc8491c78eb9dcea991aaa70d9f51567ac6d5c847e38372278fef03ac35c37fd332d7d246503bfd6fe52deef7b68353313805ab92d65449a6d0bb87820729ae7b3a49c9ede037610e4f91fe99477d3f56e272b7d76f2f86cd840c6c11a473f775dca5b457507b25bce396445edce5c2a62158cf08b090583f5a64fd176d0be6b63be68047baf57e3c513a656b88ed6ec3018452ff6826be03503b658f3af091bf77c06c335f8e71f7896be2dff1dc010a70d3ab862ea3faa0f5fbcffeffac9762bf6b4518d3c50bb90102af95da21591055e41f57c2bda85ab8ac104067116e97ee9b1dc76d0886831117992898bcea189ba9ca0bfb5c20fe190f636cde2f91bcc54f193c4db10216c790651a01b8a687febd9a51e2a8f08a1ef5dfe0a222f1fd4cf0067494c6824a45448730718d86e34b67ec9e8b2b0010cff1899bae117773593d9285d4ccc7b5c275df0ce3c1898fbd42a5b17ca6238513b01007c3129f0217691d1dfc1f933c4127bd9ff292227ca1ddb441bc8c1c8781addb60f2af2548096618c6a9e6415652aebd459acd84c025352be1c316b1623d69555b26a1f45d0ac9ccac9bacd838cb71db43766496c9671ba1d8d5caa2ecf177f2fbeb97f650af3895cf21f6cc871d7941a15afca825f7f286fd3916cf869a4f97a689f794f0dfcbc835b6830103b554d318710054e20fdd34ef9dd793c8cabf0fe4aaa2e19bb29769e1e1057ff2ca3af3875c281568e5f4d12812965505e0b6e97d4db73d8a4f95748848ea259e7f718aea8369a51a16eca3cdd5422b5f64dc5d5fc9aaafb27d2b2e68dd9d81e2ac585f6325a6cba7c19045de09f307d89d00eba53e078675e2d42ac1a91b15aa43232fc0553e023033c5acb26386ca970fcdf730d6c1ed64fc01dd1a3aef14189bee2107bb475cf34a59abf4bb95634e7ee316b2be320f6c348447d9e9e13dec5fa9087f6f12a12ada9827f43a0c0cbecc6b99cc5aaf8bdd287b9723cb2276ee7deef856765d53fa2a8e9469e1e220cca5706df79e3346aca2419cda462df4468fe3134a6b4da3845ac221134a1f44e508876878e0814b107473c90420b52f4ed5d4ecfbf14c1f4bd99071be91c129f524d69e21781aa46ee917104e3b83f9a3472cb8df54770ea024c7c8a34afc7339ee9f6e61f1e39cb855724044a5a5de608ff8082e5b683af6a7f2669e87450ce1444bb78bd09097671d52ed7eb41f17817424740622c0378f8aa831afc283aa26f538ddf7705ad0fece85a9367cb94a9c38cfe4d8097a3b92843e5989660c25160d6263450a4246371a8ad7321355df16c0f8489f2af82f2865963d0acb5234d0b009b86924d996f356e25485072e056015014467fa14d5e85271bcb8147877c85220073c197024408f0084e9a11824eb196d6edad820489ed1c39284f2021b561bf8a2a629502b4ae903fd875ba499df1c5b317674dcd5805d65b75e2847748da4ea99d7634d54a9c2904e1718b9c28e802d9fe7dc95cc0e77c159da18a1f3bfc564755ddea00afc9751260273a5ac28d47962e79576d994bffc2ad617b45374633659af98fd0d5c85e406e6b6b6cf3a5ff49f685175405e15bf30269beaa7baef140d5a8075c8b36b4499bdfc5210c11fbd3fb74995474f8d688133ddddd4e4d8b90dc1db387d30d312a159334e1c08a2e644119a5b5d454a9419ae2c4f0d2616b37658005dec8e62ca16ac7b2c5491c7b48732be69d935be30c024f898ba551fe30cb39e41351600c507e5ab81409b7e1edba27630cf97455440a789677707600990e4cc1c065f75426821cce777adb22cfdb57a0f0c17ee7a4d1f1edf378405c0a43d389702d25dde7b1447ee53650ba0ff3e14a549065ec4e5822a639e1a8fb4e9d0866da8fd980a4d87a09f9233b278dbde9f4bb20b94a68152543db13791f3822073cc0077eceb0c936e29614bc0f076fa279e228452febb1cccd8a1594e6cb962969d08993a1f03ec123d0ad970f6f342606ca5553644d37a76daa33608a0b7e547b62a483ce97849e2d0780c298f59e998f4942b0eac75ca03c256e76304e78274c5cb173e9e5d478bed6a6dde744476b1a649783e832ed34504e6750a5e827989bb5de6f10930dd65eea49360f92ee5fcf0d44ccfe321b829319f1df982c70c9c030c7b4904ef72974cd6218b0ee58853c3c9e7a0f3964b235e059c70c141281551b58aa11af30dd531f59c4e23538a18042a2aaf3d71a7998710a92f1343c6150eb781d4f46d7d81ab62d1e44b8aff38a15fdea875bbc36cd0e947d91faac661dff1e5de2e9a78a23c7c2ca729dca1dd37e69d6dd2445ce44859cec8cf6c81d4b3111a99795c5019020ab2c898a83abd1cda3c1d1d7acc5a1f180df7cd00cfbb40e25ce7626c5d59bede782ac716fb1e0b786321ea04497d637cd66c535a7504f497e0292485faf3169d4b3c180ca3147afa4c272446dac45c6740cd55ff2a86fe9205a3b75c78cad4f04be1b42a9ab1c9653d3f0235c9fa3ff3a408daf5513349e6df483ec81d53ccd4c004251d9e5b5a83094a4770a448fb859ae114362dc0a3e2e73e47624807c00c62c9def068eaa3d2c68005e9e5274d30ea89e4fbdf2cbef64622784eadedb2e5dfb23f719e4bcc4f0ed07f241d6d9721ac245c2f1605f28785df7f406d5f56f0601ad7ef8c9436f9a85e6c1edde7b37cc78daa35e4c8deef401e6b9b1d5ce955c5b64d94a67f249e90d9b292660986a8c110861f3e629eae74ac3f3fa8dffce0d60902dfa88a81fe4e5fee5816905af74d4be6436a7073a9dd8672d63c58a2c8cc6e1a51d1a05d8e3888cc644904d8dda248b21cdb5fe3c611a6849c205b5a69c10c51458eae2d59ec9ec492315d30237550a43507ff2ac1b43afcd81fa810fbe8d1d84097d7fd6ef3cd31e117536b5b4ee88583e42d3fa68f6cce747973e5f78d2c8a5f84eea172694cf10e62a20010a8a2408021080041a802408c6dafaa0c7da0655017bb803e5fa5539da47e3a6ef4aec8db89734a153ad50117180304c566248d49390bfc5c166c14580d425915580c45cfc622c5184319915219695dfa4fd06b4d7c6c82982cf8691f7b2ce75e8cc7bcabaad105926cabc0207971b908089a5036d38dc82a05fe56fcac17f5b7e0ddf3b33905123a67d46eb73d8fb2e1451828bf84b6b8633284b43c498b8060ab554e7e832db3f8b47a245671c1624190353ec15b454397a188cad83c24aadbf94223a2450c8d8a571dbe5a597c31d1050c0db3af2d44ea923933e540a0f83047d8130e7d19f560937df70e87a4f86a6e1724983a64963ed50dcecb4e592ff287a45e3c75fe60c5bc18371730da810672b1a7d36b4c0a0eaa70177bfa9a94f8d8c631f1f22cc0fb8ad89fb94649a2802414a365667b21d672d651f238015e4800b5d7527a3c5c55033eef8f5fbc121999fe44cf48944a871901f9d9a7fc4edf89be7853bd5b34d354ef2c7756a67c42386e55561cc6715bdc00fadab3f533789388ecb0cc0802f75283489c25400cc5ee939557c47613cfca3a87903dca6dd72a78bf411b733842b2814cafab0983678f6809e68542ed69e91f0b91ce75b4d8feb1e890a787dcdae80704f48c32d28d402554b1b1b4b708afc2bf5bfda78dc8a7a9878c614357ee90778d4d15beec584cddb01d0079db781b6100bc1a0267cd2a1282a0da659870e318afbca9c12aca28fa0ad06be78e297429c558b781214f1d9b689fa38d73315251152b135cfbbc2c8f64065b7001e05f10583f767be49d52735d80d3bfac664ad4a3b16fa2279a2d4ec1ac8b953083b27bb7c3a2d6e8ec51415958b11ad0eaca82f74b314ac9cc61b475e2e4616d62f7beebb9cc25b4826140550fb4bca8eae4e1f8f61819011176f822846f7aa7e9d715cae488908d7d4cd9b31f80bea908df830485df8a5381c962d1db6ca4a68de031baa1dd3417a7d378f72bd54d02e8a813aafa0e1e21df9801aa8f2a12aa6c3cbb8a00f8cdcd6629c7e3c25e0621629aa3a1c23446154078d3b3ceff53b2edd17f77fe122873543ce6c6961f75f0540b63975a14fd5d2414151f550e6e22037b23327453dfd9fab849c0cad37ed6398a3beff87ccae98dfc74408db7b22310170527e71b80d9a91b87fcfe5a151c2fb860c7209de9651f53b87816201d288f0b44c1540e1511c8754625b209ec291246a9567692d5abeabcea1f84b8ed0561dfdbe7fbb802abf401ced3f18946eda0160ce13370413d7b06a2ff42055c6491767abd408299228029f7c78961e7b56a6958087bd479b9bdc44749f2daa1fa2af5bc88364263be7c020d9c61a2bb1508a27f7a26c8e7bf075ba71789c059db7c21535cbe1319350c3e6cd0ecbc43a40cd2768f5ec05dc6f981fb213f6a0ac61597b30c7818b02e3ca47eba6fb2c315fd749e40933bf940aab61d29a4908b93f2c572e46a85d0e4c40535858c80435a3a16d2d0bbfc8287fa1a83e017c749f27070a37d8652c4c1b562175d306710af72632748c85d7b3d6b8439e74a6a087b7b8e56ec713450e6139e8bfaa4af9425d89b6924c5838c237e7f96a2f426b615cf94a1a1b240750fc9f575e5a78ce6fca7e541eebe1a9614a2f3b2e4fcbd841b789394050188ed9c18843cf9ab74f5c58c9966ad44b4b9990bcd6e0afeea001e9ff965f65a35fb292c90627cfbfab7adc17cba64dc8b2e5517ab523d276f46e93fe3f799395ed54a8ebdfe250b1563a9b80f7c4896e9105cadc17c28cbe75698f2c810e63566d70ab8a2ad5898aab3b3ab4afd33f639cfc6667d62657dc90312f0105137a5eff28940504d5be8d6dc28b5f10a44bf1695b805754a6633432af0ddb606d14f63ac7b0d6ec160854466c941ae7a14bd0fb94f690a223371bd7906b8d45570d27cdbfc7d0359fc4f6b9516a0a2cdc788d7eefe090044d54bb7e01f3016ac445f3ec3a6b0af0337cf4a312bdbb497b694962558a2324bc09cd53038de281fdb957b455b2e3d787039ce97d703320f2ea03f04271237a0c1410f1df5c9c19da4f6778fee7d4b4d97136620d26ea905ac0956879caf54ac55fa178e015eb5f6e584524ea2408c56cf4cf139e06b76fe8acbe9ce9c1eff165787df72c4755c0e1d8b872039c78708847cdb0839a626bfafda97864e9d7265fb117d8abbafd805384edc8ad9e856f6230bf6d5f12195552bdd932113fb25e8bee1dad5db887c60ff4d5854a422b6668017561deae0086ebb456780f261b97c022aa2f30ac8c615f58a06a058231f587083866a63600c382f5393fbd4134048f163dcdf78bb219b8609b3ea1773f6ba4b1c6cde1ce9d1fda8db2c1210f8f367002c486b55a08f70725c7c4e8437fdd401e100948fa7acce8efc2bd002bebd4e98f940a6c346a1945830a7dd29b7dd04a89c6da21b6b3cbca2585223e021742264f6b83958437a95b0cd50419ff9e832ef8f89ec664c2cbd82dd7b4bc1f362816b6edde5fb32771d1cf54ac6dd693614d22b974be6fb4f0b6fa591c2d3188d921f499d7b1736c4d53d62aa77a9c25fce0c2bf0d6984f55f12245edf02a313f15d00e7a698bb5cc9e5f9cbc8b4f831a96b089f1f4fa92c8efda691caba5007d77d8dd28299657ada3a49efa745fb0de45bfefa704fb25cbdec8d933ed52a6fbc9eb1152d14d1b323d4d927274bad5e81d91df3e59d0e1565bdbb10a55033820ee1520e98d4cdca69e2c816084c610ab84250e40bc9caef4ffe5c64972b10a8b3af973475a72a9e0038e61184769cccf2c7ca4c241d62b80b3136f8199c7f4c1cedd1aeac0e3fa9a0a4af91bc7808e00a6f5ce5b00266e8af136fe442fc724c00e1751e55f7c8b37894c3b8078024cc995215f11ee4c40817346ebd400b45172ac09e9dc57f31be8d9529c2fbfc1ad8a2ae94cc10176b3025d177429fccb61dd1089689ed9b6a1e0f5e325aa55f0a6c3fe0b8a2ef094b6f28bb317023afeaac38950ca0f8b2d6d93b99ed1bc19ace44edbc4fe0c6eead33ff9c494cb263112fb4d2ffb3203dd40ec7661e5455001c05f7b1b533020e81bb7af53f36b0ab9ee9a818ad1f5d303dff6fe30b050ff5e3347d185964da474ef3e6b3892123ff8724fcfb2e2dd91ec69448a8ada37dab47078c3da4c78d2551111c1b0af4264ec10725454e1052b6f36e6e459a7b4acb7313a4138a4424107698f0ddd754c56a0eed131b2ba5943eadee4472b506a3adc4d0cc6d9f249da3734494f0ddcf2b1c9470f3eeb1edbb7bc8ca85662b834317cdff52d7d7f14779529df4d1915ea6ae0a189c6cfff5966ee2008c94856b916366400a43ab98a104e66747fbb21450a87c6cd6e77252e38c1b14e69a52048f3f21679e79b1f8c7bf7a0bdba76974db97c52ffc4697afdb4c51d5252ffc05e08ee327e6391ea0050230f3e4466c77b393d59ecbeea80e05a3fac1814cc504bdc56acde3e185867a6a029059344aaefcb8658465786f3c4818732d49ee496b47692f72163b5ebb0de57946114f3cfe42efdd03f8118a06b555c8a4cb11c2d386cf35359d81a36e898722c85fe456e8bcb7d104fff9f44510af541a49fc130215343d1e1d1f5d32950c82632b4a5d2b4e0a02709ba116a9ff0b073b6d7c4411d69ada33c1c768ac0b4d557a763c535ba445bd7a1193fccbc8a91bcaa84e3898a35fca5f11c3d21d8107e57e86ba9240c3e5de9b4cb491d336c57b830dd7aa6d0379889a28fb7f60080db280f934e9b9bc684b95afbccdd8fcfaf1ceb7a71280dc2e6fd41b0d50c313e9c622f45e89a061e23099f4d477a59d421eb57854aff27588ce10c49771c58310b5af626f12255904ab3e4a5a1417c55fb444c30cc0050ff1198ddbcc9d4158c7df6340e220c8150339c822e967132215f5a8e125cb426647c97f2426b2684d260b85d9bb3c6dca9dcd1f4803f38bb7378b8ff2fbfcc4e204259e5ffc9b215e8ca9a53c4ec0d7c3c286c106dd1af36ac744907638eebef4aefb26157834bade66016180a1d4a1902bab6d906f4cdbc010211540ebb5a6a3ed0854e586928ac5caefbce6c69a241f50cf7b9229e6de9018e8afe79edfb6e2d29189592ea8773d84cbfa33733f019c29a1edf292fb16d6d56ae355bd0ef81c400106adfaa6e4ded8bc309517dbac86948d3da704eab7476c18d86f7b41f12bed4aae76e06687ce94b12b6230f03d66f57b76227c6b3f08ec54158b6c3ac762cf6a66cc3d862d75b7eb705f8165a0b7a07135f72f91c9650ac4327e4530e3c43dcf10b076df17e1362ca691d1582cbc6cb53a27d4ba9fee9164ebaa834af8d372e0f9727278897ba04429b800fafc9e2c0e34ee600c3aaecd79310090ad0942ff37044297f1dd14da4dcd787817521de0532f50808688c3afa9d23de49db3a1936a3d9f5f1cc76c0b52044160a58b9a222ab4c2ddd4436d363a0c5490a6fdea7420da294ba34da0accf8fcb0f68560c1a599b468c1636eb1fd011e07230da75ff5cfae99684d6c06246b74e009d9fe709ff0eda2e012118b7446a1aca966ec9663758c990872f843e5c672115fbbd7bfa48e0e729cff5ed3015b5f2595a0ece7da692b69c79facbfb28e551e0a1c0a4eedb533dca38ad4b449b78ccaedf666f83276d8de195067e542b328e4ed45fc120f89c124b0150f2f6d58226eed4fdfdb1e23f187203ba879581cbeefc5c9e9976e5d75c6dc59a860214bef7a20a7f7698c58e53ea3f0f6e033a2caed6870872d4e7b28e059ae12f9a879e4f4eee1283a5c95c8b4ef341d43f74ade921a796a6d54adc3f313c71419c0ac51ff2320477b58dd428b679f6ea5b10b15a9cf547ae211272440c46bd75c132412740883b887b0c5c4141014c57a117c0c48973cd7020ff1e79ca8b22375c971ff1ef580d14be8c095920655e4f8b3e750d30453dbfcbfeb3205f9db22f78506d4596ecb8727e5d9ad0a2494085da9a707515883e1f6eaeb83ae7a34586a9006869eba18fc4d2827de394006852aebec88d09320014039f13c3a68144d0ea921e74e169792fac692f5c57731306cf4c9e75472d2e3b9f041f56d4b333d2fe1d51767a15f82697b4cbe344b3ab17355659a275c01122fade5b20b990f55363f3146dc39b8223e1bead1fbda4c20cd6261d62fddd4f511a0f9e9686191a5a0fd1783bf5c6d7dc848e35e81d9a048a5e183a3563a4b9f2af49b748a36680f492e78a8ba59f8d47055b82aaeae8dce764eba5dc92cccaa08a98f097ca34edb902523b51884382a4fa5b0d41e2cfa1da23abbbaf7633fb0c505c901d289e221ac49fdde956af9f22979001b97f8bc2697e915ace9185011ecb2e76f16530d8ee0f6f63be710f420f2f9f180d6cdb59757378eff785048a5356093488ea605c283e30f9565548f7a1f1921756e826b435e2c495a4096012b77975660859609281a4663bcf4b463b1d42dc72e55e8e7500ccb1bef7956429403c62ba277bcfd811ea7f846e4f9071a091aa84d15c88b1f2ab909c9423a58d3c961d05edf8d44860d480f4efda924dda5b11efe00bfdc7d6788fdcf0bcc49c04dc74b26a0a17f54ea3cf6671535f7045c7e97d62283d8df8155f02a1416bf852a5decdb5d8c4930723c7f43e7664095ec6acacfa0626fc8a2810a41de71dad3903ddb21448c0ae45a30fc63850e998df17dc74b1ef0493e54ae605e05c04ea5878e33675ba2fdc898d8715433fcda83726222eb9d5fd635e0a2e25a840fce11a5fd7c6f9ff7d2e5a2f1b55b4f2ce7e983f5408cee7d7d39444b8dcd4ee58f95dc0a6a634df6c4a3ed9f9170da4d707743b582dace6c67d7d463969057aa50ef24932a47c4753e39c365fa8265ead5b05b95d6b42eab556096b4dd02afcc1c6b8be82fcbc46dede8924441cb940a46e3ea0fe9c69b047f050f30e82a3299724357522856213ef40a42998d02e02856152219c4f49798d10d6a1a80027b3b2bcdd861f524f578a03c6b79e2394929ed81b3534b5888b7804456c20c2535612481b695d05d0ff09886dfba683b06ae1635422f3346b6a2a1a8458df89916094c57d03a308eb680e9c8db644a546b0d9d02522da25205edcf3872ef2621415f9c6c64a758eb0289d3c29d514107722226a650796e293a82f84ae2ca865a73017ef550911770e563aa9970e637b5e135d83ec1cf60e069fcf7b440c170f81aa629f38a0f8e5dbe59247e75f9151168a4cf9bfb0dcbd3c842878a0efc01e4e409d07b729bccab495e333e47c4eda5992209ca9bf5091f6f5a0d1c5a4bb728673a21dea0ed9d55aaec090d50a94176a099aff98f77a2b314fad2438600e487ee720f074d1085f9d3819b484fb30a052b931e12ce2553fbd12b078dc59238544c195bc7159f29c76206e033ef8c5744b207024eed1733a395bc09601e9d09439d2bf5cb30e5487129855b52e6306ed746f22e1fa7ed6d94a42bb6b88a8080c02ed4571db0d1c46d6a518d5918f9aa3614231fc393e2546924722d0f221a7f9378c2001",0],["0x0a8a2408021080041a80249da59770b104ccd51f86cd52ad3870c4de27f93a4fa317bcf93ab7da42abd1e8acf6389cb6d542bf952000b6d0a6637362999378920785abbce58e75922550804d0c4b8967f6dc063922bdc0b366ece869300f4b10f857d164b2ed01a7f3d40f7d637e6984792d09c771eec962702ca411d1c9accea244c3fff9f3a4137aa53a121efb9161f44289b04728c51bf550a0e93256418f2129b23037b6c14645eca279f4fffd03fd448d2998658b1f62d14af4f18e61dda736b13894dc21c7db4450c1a8f9d5059d7a3eea2447486e442d493ff0dcec3af4d37d0330a2291cc7270c116eafe9974e7273db7fc4e7fabbad2b3e1275f10dd51eef8589b29dfd412747b6a0d79d83016f2396fbfe300e919c263103d49c129a176e7e6e0983b8b9430029793017960f0b3fd88a3e1e87ee9eb23aa4f5fd89ec67ec675de23dae6ee8995e1198f277e257708843e90f2cbfff78235c88be75de5c5ed07890d0035ba2342985bfc744d2d3c48b35da770415f0ee1242bec95136b3b56b8e44b179f0581f8c9be85c2a5ae67d3c6eb5a9f5bf487a37ca85d614f7dfeb57d5eb08e787f1ebd486956f8a02a78720d99fc16c64c335dfa17b1f2884d4d6e11c5a454826dcc4600539175b082f27f34bbd5350d31a6b8e419f7d1314318eb70235698021b544eb3678850ec55e9d59aed1fbb8911bc1afd41d02fe876f4ac01bdc7c4d329b138b0c24e72ef0c25c68741f9f67a1a4da90df0cbe7cfa1d355874c3092979c4041519e860e868b082f8e74296ecbb442341edc7916b07b22fea6c337b7458a88dbdba72fec13272e2c005a950d47931e1a19ff011d21aaa2cf2728f5b54b359574c93e4a95c04ccc657f797feb8975b72d85dac3793940d83a6fc0e955b57979d3ebbab53556ae537b8fb31ffc4253c6d98c5ff32a160d2836fb62d53bcf3cbc9334c53685011f00fe421237c25118f3ed58a862458bdfa76f9a417c03ef55164189274ac9ea9a73ddc0401e88d9f0a84789ec78a394ca60508efdc56da39ced08be90fe2be8308baf14a1a1130b841278df95f92de6a98f5039bd75489974213fb369bde76264b5e056991038bbb541dcd22388225597633d72b9d266fc9c27b4ea33325007048821deaf0f51565198f8101c2e9f5904d288ba05825925d196416062140692704fd40a6d9bfdc2ec41ab5c73fa95744a861ea0eb6c9955c51f20bb0a22612ae2151562ed2b422713885914800ced1ac13f83aaf397e2f9214102c1f8a37f976b6a06de017cc3338041c44053085df2e4690329c335d418d9000ae5f1b0f9373ed820863c5b104027d88fdd7de120235aa9a4d22ee9b1cf6602cd1d3c2a9e1e478e673622bc3d640e2606b34154d469e21f6cfbf669d7f78dc8373e8816a1862434124bf7a6ab96f801198c170b1ffb9a4e89e7ec2bd6bb6b348ced7fa7a1d34a6e76c53c159053e35d415cceba6321c59d9318f97b20cbe90f92ec33331feabe186be1b49df369c2e9c146f89af736fac4d987adc6b0c9a971531d6e3998e0ebadd56e1e846c697fd2e3d03d4db80f94172726b1d2f755292e94a7374d09b7a835ae375602bc3676f10c73688421b572110a5e920b9140f05d559b30f3e120bb3fee758e90e5fc19613f1ace1618c13253745cd078df8d56d1ef12c5d5b0818922e8046bf164c60504443770a7dc551a5e6103047a9d3aba37a0435aa0cefded4eb5bfaed014080536e76b3757d8ddc0329fef435370a13244b8614eb0475f29cadb75b41c4f5cd1e668e2b440755cd4a1ff5dbb4d72f2d525d0530b3473f3fea608682e3dd356f792bd742e78ce711bf37803f5ced616c99c36fcbaf43388ad7bc483f19ddee90129a8cedeb00c3b61a75925bf021a6b39fdcb9c312267587af597bc2d86f172b617aee38592f42b1c9f556bdef4ed7693faa49852f63bec6c86d4ec2d929dc74f4ec7ff5cb6ae2b500911a4d9d9ee5cbe4e2c828d4697ffee920568b68241cce89d394710ac077569fc2ab552a98b0963c3b2d6dd91b70d0360f6397562f9bb1622ef9abaefae3f4c906601f857e4e256d4b5e593f3ccd32cca467f15222cd123ab54085b97eecaf0b233b57ae3325d737e3dbe844c3a6f62831e254c1c68e9b44ed614a4c3cfcf2d3dd85cda1cc035f795c779ad76221ae2ca9a768171d3818d54f6230decde469ab916e6b86f616fa1ba7721a5b86f4822c25890d4ec70ddb6f0fc85541a552a5009a99b9148cb8dd62e4279fbf34e0a66562d6a0e0028210e0b72bc341bbbe87fd1519659deafc5879f738c96cdc65bc5d50511ea9906013505c566a4ccf2a9dae551511be80a01d45547099ad6504812a533225775abc380fdc722b67a5f7e4d416ee00278781bbedf477f87ccd8fa28b79db21d33bffd72e2c7e116dc2e30e70760dff57015f4dfae8a6499a1110358c31ebc4aba2030679d28b2238c2b1fe3aeb4a8e33b91ae03629c30b8997340f9b34082bdef19a0d70b16a7f36efafda7b7b280833b925ecc79fa04b7602a57aabb2bde6abce2e9d41041896c939747bf073a8d741e3ef13d0b83be731898eb2b2ef8f99b79b7dbb0ecd11d8fcd3cb237f15b787f3c883689698f3c4e1dbafccdd0b7ed070504ef9070c8270fd8707f7ebe4ef49194b2e53a6c6059e43acbe5333d0cdf75e201b8ed4f136bbd977df4364271ed37c55a217d0892e799e990cc8bbc3a2ca7f083de0a65f150a3aa9e5b761eff584b8594c4855f92fd6416837ba3afd2a16bfdd5dda62610f81c33b6cc1e2e988740bb683d1531d8dfca94d11987ef5211aea1473002ff9d9c198f55b9ddcf28c51fc66db5e9eb131754c9249ae111941e7e8740ab7c9d8b2f9262f3b36085eb8a4d8d8fedb209cfee99e071059a736f000b560b8698f9d49857812b26288b941d09411f1b618c2168151dfd72ecd00f86507d04bcf64988f19a7f6647b081e2964bb8f3c2edd80a3c9bb60d4a41ef7ebb426cc489a7cdc00a38c5926b4b9b8e5ec299c7bf8c595818665e5d7b57f079aa39e07a9c06f8e413621d04dd81c88a8190c566fd46be35d995ccd2ef95016ca6ff17882d44fb7bae9f958f821198445666b86242390600dc48aea8383412688c36dd18c45b4c5d0ded9c1b93fe60531708331b32d0d528c774a2ea578b3047ee217f2cd84e23b6df13c799ecc0f1d5bbb8c8a8c2578be20989293ff5664fb526f2ffebf114d0a766f1f8eeb18e744c4f99d5f9a6ba5b3a7687af31fb2f975dfb56ef7170646756bf4ebbc850765aecf05a66c1f4cb84ff7813873d24ac93e92209beef827c8733fcf76d8d9cb848276ad41aad07ff816b53b39a9d4bd83e57ff914eeae259c37b2e99c25c705eb76d7b063e6278c8b814fa2d9d8bc79519d50a8c9947653357a7dbc6aa92613836f45898b70972cdfaba579bfebce5e949ba8d6c3bd330e18bdfc5c83aa8913eb0bec1482fa7cd4651c17b01c31a3b11db64804b787d8c8e7a288c8de185a877dc211af2e12bd5f40b1b96a61d46575c95494394ac978e4c71c387445335833eeec816f7d66c2b629f0db1d4ea89c30829925f31c1f02d5f35c88acca503337806637d4e43dfea927e84242f428017e0cb3fb1db140ee90f48963598cd2ec3f279a81d363c340c13e53ac6fcdcde5fb2662ca5027e70acdd10b26b83c1d7762be54b12e0ec8bc7a734fe9df4ecee20a4bb08ac2daf99ff4372acafaee65ff2dfc34f54f85eaa3de17f1b254957fa781b9b17922d28ab7b27aca300991fb069063ec0d14757da328b981a132baf27b57257c6e793eb5c7441cbda453cddd5abf3d908d24248361c2aa7fa6701d28661193b90eddb8c27a92a485f4fc27b4fe30e9c2330b86b68dd29f5454bdc3178d628eebcaa29f3fac419a25abf9880466dc0423e10cfc26360d782cfdafb142ff93932b51417c6c6551392e01a74509bd6a7d082f3912c809ef97bba6c033b76bec9212902e8994b5058642c9f33ff9001ef919f28073a5abdb462975d27194eda918295b826a2ef178ef5454f3935679617377e2e69f885b82919fb0e1542a310177dd1875af4bc5714788f364fc857c71c70b64a96a456b398504a0ef3f63d7d191b01c5a8f3502b6f5fedd5f4a94632902923c695589c79da63a4160c321b48e6e3bfb18286eab707e18629297ab658f891978b415c8bc4584204e278d555bfe7f2063f595ecd7771cb7e500b5adccb711b01713c14802388b56a647a57a68d856f0ff60067c5992874138aaa3da09b99a2351c65f55650a1f2dcc882edc2499085d58ea20c2cc816aa2eed83b3aa2e9bb9eade32e4789d308e1414f5dd455b491f48d7fce0a72dba90e6d8b37bb4a7a0c295e1c1175e5da5cf19f9d6f702002c56ea8f5520e7e07e0c067770b8b5fc995ad2e5901fb6b64d99f19542ce24d24e868d4f0b138bd20de2801481f020c3befa6eca8e8d6b051e71e144ba14efa92a25d07fac7c10130ad62efb1808f8aa4c0601587fc7fd8528c2afb4eab533738b14fb0b4c8ff1e7398f33837e3c092cb6bd969aa095b2935c63b1ad3eb8be03d0da37756ea4e530c350db8f48800deb86c936310ea66766eb2998ec93c8ac02cf686600d2369ec6bb73249758a35f9aaaa43b20adf02b242c7223e453ee7cf70ca852742bdd59d4c3d4fb77a083426f7cca5ea74aed19295b5b63c837eed54dab8faad309507d4eb13dfc9eab2cd30167f504466c205dfc26a6cfaa82654a630dafcbaa307f29a2d3019104e8aaba8198a3a9da36544158313d6c7c911f87ee296c791de4be08cd3d29a06f164a4e4ed5ab8b7bd27950c34d02c4e4e5e79f844c878068821151a5eea552a436a9e42396e9efd323f84edfd271d4da6c24e5607dd6cca70c3271f8e9c54f4272f3782e7c547367a3c21a2e4ff186e74c015e4ee6f8554b2c55c969833719f5e2da30aa3f845714f2bc7c9e1df6e12eb51b413372bc2a9f01cb2498e15a1e08d1a73781e946a628564b564138c175eed9f31772b99c7e80c36621d6ea0d06dc59ed7750e1748e54318f7e5e488bbe53553d6f94471d156c1685b1dc283ee782c0c59b1868e788592c89ae9542750f177780f91634b04ed4ef2625749ec3f837c56d2a9773ee4b4cdd028d55ac5c49f6f8f1e23ba9126300c3724dfa24950dea4f2b55e22ed17cba022ae8bcc4b069e53f7c8572c09939605ebfd5540baa7934e961c38d200b7541500b5fa222ff25564513f7bcd10b3732199963c714a2473c694f68c9cc86d65068f6cb2264a584ed8cc7356183417e359b627c054efce5149b5f268c4433a012dbc95f08d4a772b43c8a695fc2f48f9b572a4134671eec064ccbb1fc4a9e942b609e3c36ff61a32e1a4ef251fdf61a4cf37498d7c755512b14640b40b2df53025cab32b8d40be9c7f2b348c744c063e21c29d26e31bbee75957f77eee8f7276dc71fa05b50b83492abedb2de58ed90b95b777fd18e359c8387468f5c8ded4078b9c7df44391d50f682d8a9b009f325d7d8ea2df1dc9b7328e97af9039404d19918721f19796cc44082763d1dd054bd2886bc4f9aab6585c0d10cc1a47b67ac52d2be19df2bc7d632c345ee372d728f4ff3ed10b63b0442c4699611ed4ec8745f58a99886419e34595144840262868dc16df22722b5dfa61d5d3b324a650393f4f6810316a8ef341a7c866238e02d3daf368601c72cc1f603dbb2b3bebb3517f4e915ba95f98f937583cf9cb12fbdbab0b733e93fc71de4a262264d01b1a6c471e9b70b579c6a96032ea24c23ddcc7958ac0d9c211602cce646d43515eddac8f01625e285728d41020fd74181930cc7d0dc53cb90c05f1133d41b2ad704c1ab5c2968afab7ef6cc87a4418cd415bc2cd64dfc8a48dbd1600aee353576657c1fcadd1dd67a82401424a3fb261985ee71df0679bc2787fba89078a716582270acabb764be4ce576a8e8aaed31e2a1884f50e3d2fec29daef9e47c4dcace4b605b57b71b7f1acf0648aae9c179189bcbf4ad8dedbeae95aa4b71c77af94a7b12d1e1c0e323c1e9e25746893f70ee457f50b005d91994f58bc0e925c0b633b5e9215f79e389cedab11ff6503d2e0156cfa60f07a13f3cf7e7737e6e03e0e6d41174058ce9a3dec3fac61457f547baa8f9f67739fed4c61e5dbbd530ab9ef945e90c0373cc3145a582a3ffbcc85ec1de5f18317f95c0e6450ef56f562f630cea4c76a66c5a9b61d28d9a79bf67b5a3342a6a1c2fd345320065372d7c9c4fa2fe96bb75266afde566949a525f1e0872a641c503c388bbf2826e4a0ca81a2a055e7049b4fc23d1615f2e1e388f677366b8adafb13d54e3c5eb60fe52cc37420d8e57bbb0150b556d9e10bd43167498fbf8290f8c281abc26f558732ab65bee7b1e6436da4f11b269b115cf9891743499f55de3b21755c6e3e4b1e7dad30c093bab4c82b324f8bb2b5bf7caf1c910043ec723ed4a16983cae7ea0c724f4348ad1d04bb9ce06df75955080120010a8a2408021080041a80243913ab92694411ce2e339ecd59c9e6d54c7d339bc8073295957aa61d471af1f7751bb556d51901575178573177d47643c8a03d9225cac53f4d172a740ef6c22d31089e52d3590b210333a91bfd8a3c88ce0fe830ccd6c8eafda76b95e532344f65ca0b3defa536741989c87e005207fe3fd46f6071852e9155f442a0a6f5a75a59b57e3f2c5ed863ac9f895178eaa7d5b2cad6ec908217ebbe6534f3fc1026418e5b463b47ad12d3326d694bc0e262690d3255af5b3c54b4e8adeb8741ec33c7b176d2d7c9e86f9ca2723dabab036415dd54055b656d85cb736bbb870b1a16a5bc209cbe9e13f6ecdcf0b4c9029f649171240e8bbef3669ef4c66db29ec9521d96ef98403b02cd787a7715b5580bb2bacb04a0d05f652c0d4cfba05c369acb0120c3319fbb0139f2ed2f522c267611b5fe1845b65a7b28cbd1c3acdcf550bdc49c63936f410c8edefc2ef67ca00c717ca23a64cfb0b42d51811d706c5cd65da712d9494b0c98266e1a629f4fde786a478fc0d0b25b3e8fadd15e4c0bfbcce549482f41fcffc1cabf93fd0018055592ed9f4960a1999b8e0a1a01ec5b2523e6dcbb57acbf16bf25aaeae9fe4b23db95950f6cc93df7ca863c02e2135f63d94aa06c81c10cab5e63b98ff58bd7eb0af0a86e48c1b15a1c8f088a5267dd7ca06c3ef86463c9f9b1f52d67b3aa019f3186c91a2296eda47efc20dfdabf272c7f179315adbc76ba82e0771c27cbe4cc5cdd9a4cebb018e0712af12c1c940669f7b35ccb7ffbc1990d2b6e82d834ddb70922305ea7813a64cd1102d251acf99748f6679cda6a0ef0efac652c3d4946f4436bb69f44123e842ffe03232081db102b926a9cc335d3e6bb652592383673944ff921225560bb706a0623d38cabc00e0c7c3a00663903a2176b560b56439f8ce6f98ad0e63c27cdfe628c2cf4282250eb8e48c9089b4e7e3994751e9b3dcc21c32ccc6fbe67114a842677e839c586200c1668b9dfc79068d1ee565d92cabcfef9d71768763c486642b43440af150e39f55bcbf7acd0720f758da57bfb24134fd17f8d0c15f2b2005710528d9f2b64bb3a40476ec5b03dbe2da009d3464db472bebca3fdf8aabf1a753d50e7a0aa59fbf481c19750ae7acdb299c3fcebec5f81552d19ce0e067fbf920f9c61c40f819c234d66aba5649ba2205f72b93c584ecf0d3bb4a1cec29bc202cbe0c3ef34038c148eb2e1d0201c0003abe09c1ffc4993f69b4f4698cb95845f802925d77bf1ad17a319d2a5ac7500a31ac02f701c95282dc2f73530ed8a569d54af61484a56d3f73bdb1f146902756a08ef2399b0af7d9e9f5e189601618f68b68641919e1efaab0253512added84fed05f17456dee49150801178a597d3e0ea882c3243397b6a693c9f97a73561419199d7a5fc820695c1b9543bff035db3602def6c61f1a26220a86b4ec5cc5da23f22b436b84648143207a89a18a6b72a65511171be6222a2a753c791858de3ee271af6c80b9a321ef60a0e5a6c1de0a7d9dbc67b13cf2c253f805d4d975893dd810953281895b454bdcb3a38f5337b84c57680d8fa2344d6cfd4d4daa603fb21b0bd4a00790a2434cde165782193105b71b0b14d7a18e34e00451ef71c520ba1448a9ca654aaa019ee0cc8b5552f2a39d26f9207eead0df58e82364faf5d4228cd13d7a087d9440c552b931173cc78efd26f3c74cdf207d4a73a0ea0c55cf1aa84cf691c4a767164a242b4ba48ff2dce43a9e0c9dcf7b6d9332ad817e0aeb685b3cbb3073db3a9ced85421ac301afaa4e8ab02f8ecca170c4d57e3b14432dffc95a8c1b3756117c20efc2bf99f3ac4a53913b5c9ff4f127cc46b195b43da253183976794a1df53ab9d7aa5a1fef60ddb32373a19989ea5b821fa8ebae9f3327f7ad3462afc3e6b85d9bb3f7047c071ce79cbfa22f8824e5d5a92b427e2a0c791231f35503af89f5557f86db8b9389ab64bc8d1ec3b3b13323e70628ef2fdfe62c7990868866303163194f229d76ada2317ae8eb5419edfee31326344faf80bc40e2327c71ea60345184ec31809e34465026e416c8a36b6979664c5de4ef4fb20fa9bbd171237599e65c20b04466ed78d77714b7a10e28f20d0bf1291f26ed493be8beb8a4a5a0f87a0c36ed301fc794c04b94006777c2d759ad9215cbb709a593b7689694e261f2768588f645a580afd1ccd95e278b79df628bb10e381c431f46d6ce2da49f46457f852c0179d1ab028d5f16454ef2d2b8ca1d48519b8aaf39ee17f6ee02a269d9bcc89eb77ee05920a71c2741a97d234613d1351d4e672949014a95466fe9290a8f4d9e50bab4a0bf0d7c5ea5b0d3c23c2edf87f4f5fe284c13f33c55d567e3619cc300d40b1263fff640cc1dc5d32901764abe6b60f3c6de86631475dd0121025c71c8501c58c9672b270450a68db53ea615b6185a4dcb19089a159c294feb501d1440233c279f7c9e208c0f236f6087673cc97002dd8de4fbe80ec69a683104e7c1636a59c5cf261bcd4f6d2754f35945c9fd31b5abd818eb7a591beb23d7bc8df0f47707b53479de590b636a39f4b37ab611f178916ce15676dc639a478ffa0a74a15b2dd5577a09516049fbdc1bfc20bd0a81241925425ad448a762a18c7e82f593ebbf51967ba729dce2e3f5eaf36ff95a87a46d8fe39b456e766f3dff17f017e1859fcf1666e33ec99da58646149f5b0385f87ed44f131f867338813bb81fa3ff43d29801d20a8d80e6711b798932d2bf05bc6890a4091d989c54f9e5e81147b07c33f3cab5e50e974c6d6ecd5dbc4659604577074768c03602f5782069c6b5c6813a68de2f78ab0be70d445a848713da98999ce5bc3b6d8cec37ebcce2e7b78dd0d93d9de4f057719a31f0c0839d3a7edb2d11a7960a893db0e865d9204f55038db2c6f7fc05bde3e39bcdddbcf777914f0886e260c8b8a84921cbd540cb0ea4e8868c103fae146dccc5a57f440f3313fac9af8563db30e95c516e88f3a588b44f6ec7c8760e21891713c879c72ba6057e505c51c2f608c21b2d47dfcddd7355437bfc9b4a7eee40bc89184ed613afa0a73e48bac67c810f98f7707746665591b4a1bd30271bd3c3dbf3f14fb75198476b0020fe229e1d2e7318cb5e4c3ef58ea6d96fb89179d8e97ddf8c4e65de2e8721fce9f43250ffee6c5be8189c759db9cb1dc0c3edb54daaedfbe3ee85f13f90d3dad13fb7c06a8f0d8c25512489a3f908cc5c588ca3237ca64608d9cd6cdd2f8b0bcdffdef5fb90d4127af733e41cee0381c12ef9797e9e9d1382362bacd78e6e3c80c734ad18b7caf8907ab2c8e1b91415e9d4ef6a63617d867b104a4203a83ff3d04521237552e078a3f74ed183b8ed0c1fa23172a5f402c6c008455103f943e28b3b721430ee8cf3b000efe1ac6eb17b31d75d696c72fde3be5d94ebf3f658c69a93ac61490fa51393754331c6f567e8c64b51365a29ed4636229162c87d65d88bc622390868819d795ec31556e562ec3536f5d55460bafce7179f7c269260edb38633503becf72e14274e5cc1d8ec93707beab86084512d360264488af85e3494568b2a2db569b388c8df862e933433b81d6a0a17c3181d1b55ecaf4e99ea8e5255b3ed183850c83423f164b9729932024c4e5cdfe794c4e7b734d164a69db0062a4303a5d4dc948dd48d1e338e8736fed1fcf79e851aacc7c5681c0ee36b976f1e2ac308dfc5915020447bfc41a5a85a13490736bdd147a99d8b840956f422b34c9d31213166d0d1b4a544158938362dad73910690a17e35f613b876963da8b08e897cd62ce93bf03b674ab9f4a3d1e7ce573ba12dc8eb00881c0f6a251909860f5c1785240e989efa73a9ffb752fc5a368b3959ce7910f2c7b44694aa734c6d42a08511c6cb08b02dc49c756e04219e7630d35c2574fdcc1f983e401761de6599849e898cf18128f48bfdd9ba03b40bf6a92d9916feaff796073ace1cc83614f81a88070a45d800496ca60000b1a95dd526dc8df862a52794256f841b7553e2d12d47b4b747a7f2bc5d04fde219e1348c95ff4847d3870009b8a6c439113f5442b3e5dbb41b7cb57a9eb08ffe0c52d9826499faeeb8ed80aee1f655d619dd07b8fc055df107579b183858b1d811b8b42bca73190d27b2218e42ee2c4bcb4e2cd6dec5ff4c043735a34436f28805190920d52079193b299e0ef9e775c564211849f120c3763b56c5a5f3f806f58ba232a2cc0e41870cef4843094838e58a46d8116a5dee87a41f0b75557683969209e4a099c866e4bd54a299df3e8ea96932b0be50a6e12c7f962715ba5012ddc2d1ef558e8a87d2512f6b909656613443d23f0d8530a11e171f759b90596147e93ff98daca8e18d8e241fa4c693f881ee6f698f82500d0071bae53a9b5741754cb71d15c77fba0bbc396bb940f9dbfc1a3f40394812ac7bf65dea2230d8ae55986a826c409579e99a5f31426ab10700d7fe5e11ca1a066a0b3a1f70a2bf61e6c2d522face49cd7c55df8b084be80d4046b011f7470c907e6dede541f0f8cca36b905c9305466043d175c197434e856570e706ac6d6d14cd8fee427dddcf77b8b110cc79031b69c15c976e9a447d16b398d3960748f5015a7b92ec86239775df56ec889a24ef30693f5e4fb4fc4c9580e18c460df9c5d3230bebc647c0cf5551682087265b1f527719d0f49efd9749704a3a3dc30bd49a685b31389204757f7cbd721784838ff59f3dd5958f65bd7fa1d99671b36a7a008818de8759a45c6bf414b442383272541f05e7de6894036dbfb3d9f367efbc82228da531a63a98545de106580a37a13f43b51bc2dd2a0875ebc9a66443b4f413ebcb0e3edf40da4f34d8cd37828bb97d98baf2014eacc4babd045a3a4ae715890e994887d947592930ac04e007df49edad9ecc14e49a5d437c9800e66aec2815c91dee201947a5c53d17700c82d4a5b97c22fb62ee2001664066f2e106148ec251c592d7c87cf700ed865c143a440fe7f1cec7534ba8cc6719b555ad7d581798eec76b5aba68cbddf9da85a55b6f00a455aa89201ccb05cde96b8860f4c77c3f30c73abd3700a3b293d5f99f1a34b3e1df7092369c0b249706f604fd57fbd4c099008d3dd2ac9670d18e8184b90eb8f263281d57f76e1e1f8c7b344eae0fb8cb6348d580a313b837b171776a3a967526f7cb0ee47cbcb9be5eb3865b53a0434308064308155667d9dcdb17d27f08dbe72efde7662a68522d180b4aa9802fc1e3efb1063db190c2b8354d1ea79790cdeeae76b1ccf5fb5cb40869dc017133fce59961dc18b6e3f65f0255e43cdbd09b57d0fd68f9bd5ad97ea194a5e75dc0cbfe574c52780cd6247f928862c042b6781e04fca44babba18e2646534b82168f655f1d9fb65deda1939a13b3c0e2418b484c4156cfc8f10058b3c06f4dcf7f9ccd8d9041943dddad13b5985651cab0be8dcb5d65ede855acd6f4b0d026e8fefab8b5deb68d9211c6c97660f225106b8e68214f5d7aa045a1be0e58690916fbd7d77ba1f1ca9076862df928d6aa814257dce944870769d66f081cf0a6be4e5a5606b4ab16f45be7d52eb1108ffb684f5b087d2a359bd39eba6ec6d4b543c344b6e81f894c63211f60f4610b3cf862971038fd5cbce31e3e2436d38ce8e42b26de0aae3a78b0605bd485655e36ca945c4ebade946c1d65f9c49d128e953dac14230bcceb198d942ff7b7427c50ea1119e646f9b3693974b2dbf3bb6152f8baa5c94ef5bccdb20fe0066fd9608fbd0a662797bed5052d648698db311830517ed1143e931c2fb45f8065895915d1f9f9126c89f55d142c0e0e1f63bbc9b6f6754375be6395181cdb6d6af7df236429bee6fa164901ee1d916b72d44fe8379f22a1b8d8837b66d72de851d0f68811f9cf01d6fa2ffb38d9812b7dca4b60f4eaa887ec04ccc59225ecf496412d28cfebc7c711d0a6aec3b09cfbc480682a74f4a79b2d351d3a23c0e1a69c5843c4a49d3c5087d63ad3587e1808c7c19886ed2d8eccd2a2d358187bc7ce38322b95a41788ca79bef310a6ca75701182f5d8c0e441ed8429778ceb4ab1386050839738d6939ed80e5e2bb7c09c9504ed848959af6d98bfcecc27a813bb52e91a2d56a1a9bfc46bac0d8e152b3573e1d1c444e9a228fae012c7b0b4f688a5d08a2a492eb7429e5ddc9ef6423f6b99a9f6767929e004531a13244a48fce646b478865df6195d0685c457d1ecee7d0e7abb8a783d0f20f0cac60eaa8a588b6a03760354417855a08351b0e760cafef296934454c321d25f9c7f59900a0503d92799c7edf320f2f8a3a28b099930a18f0a3837aee5a9247286a924f953a99b28783e1c80740a1376faea5b26f53aca34f1814512f00822ee99a590a158b11008b06c0600e4fdbf0ac5a23bb134c4b507fc700cfeb8e39cf50d7c0339740e17277bcf22fae7c57817258c7751213bbbf519e00edb4626e09ecf5ec281dded82b429be03b9dc9ca96c7e55deb5309289ef46c40af2001",1]],"callback_url":"http://127.0.0.1:8080"} -[PROGRAM] Processing computation... -[PROGRAM] fhe_inputs.params = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 255, 254, 224, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 255, 252, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] -[PROGRAM] callback_url:http://127.0.0.1:8080 -[SERVER] ✓ FHE Runner accepted E3 0: { status: 'processing', e3_id: 0 } -[SERVER] ✅ E3 0 sent to FHE runner - awaiting callback -[PROGRAM] computation finished! -[PROGRAM] handling webhook delivery... -[PROGRAM] handle_webhook_delivery() -[PROGRAM] call_webhook() - status: Completed, ciphertext len: 9242, proof len: 11 -[PROGRAM] callback_url: http://127.0.0.1:8080 -[SERVER] 📨 Webhook received: -[SERVER] 🔄 Publishing output for E3 0... -[SERVER] ✅ Successfully completed E3 0 -[PROGRAM] Webhook response status: 200 OK -[PROGRAM] ✓ Webhook called successfully for E3 0 -[PROGRAM] ✓ Webhook sent successfully -[PROGRAM] ✓ Computation completed for E3 0 -[CIPHER] [cn1] 2026-04-01T13:48:32.090742Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 104, ts: 32743917271833451905085875078461756, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:48:32.090774Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 20, ts: 32743917271833433458341803757600837, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:48:32.090892Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 32, ts: 32743917271831939272071829537567069, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:48:32.091844Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 33, ts: 32743917271832492674394040824115549, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:48:32.090829Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 104, ts: 32743917271834982984843994387941217, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:48:32.091919Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32743917271835370366469542288525153, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:48:32.090781Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 104, ts: 32743917271833175203924771043563749, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:48:32.091935Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32743917271833544138806245234596069, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:48:32.090949Z  INFO e3_events::eventbus: >>> CiphertextOutputPublished EnclaveEvent { payload: CiphertextOutputPublished(CiphertextOutputPublished { e3_id: E3id { id: "0", chain_id: 31337 }, ciphertext_output: [] }), ctx: EventContext { id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 20, ts: 32743917271838635440170589822263041, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [cn4] 2026-04-01T13:48:32.091931Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 21, ts: 32743917271839022821796137722846977, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:48:32.091769Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 105, ts: 32743917271833820839967349269494076, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:48:32.091799Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: KeyPublished, new_stage: CiphertextReady }), ctx: EventContext { id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), causation_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), origin_id: EventId(0x334c6a7af5fbd3e7377b491fca342efa729c6c2b2e3bda7255ee9acf7365268b), seq: 21, ts: 32743917271833820839967351658184773, aggregate_id: AggregateId(31337), block: Some(405), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:48:32.103383Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(0)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb22677c644d3523647db7da95ebbfeb672d9718cdd684ac7519e1374f7ff4d48), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 61, ts: 32743917271953429528541283418867553, aggregate_id: AggregateId(0), block: Some(405), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:48:32.103364Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(2)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4d2a1ec44f34a7c3443747aa88ccf3f7e439bf1df4bcd3d6e62080b2dcfc6b7a), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 61, ts: 32743917271953946037375347477993701, aggregate_id: AggregateId(0), block: Some(405), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:48:32.108093Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(163)` -[CIPHER] [cn2] 2026-04-01T13:48:32.108108Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(2)`... -[CIPHER] [cn1] 2026-04-01T13:48:32.103366Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareRequest { name: "party_id(1)", trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, ciphertexts: [], sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x50cd5d669ed56fa291e59839852ae142be991708d85327839e44b310bc29accf), causation_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 61, ts: 32743917271950920771347257503152444, aggregate_id: AggregateId(0), block: Some(405), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:48:32.108296Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(23)` -[CIPHER] [cn1] 2026-04-01T13:48:32.108303Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(1)`... -[CIPHER] [cn3] 2026-04-01T13:48:32.108163Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_decryption_share(232)` -[CIPHER] [cn3] 2026-04-01T13:48:32.108171Z  INFO e3_trbfv::calculate_decryption_share: Calculating decryption share: `party_id(0)`... -[CIPHER] [cn1] 2026-04-01T13:48:32.134364Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... -[CIPHER] [cn1] 2026-04-01T13:48:32.134375Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... -[CIPHER] [cn1] 2026-04-01T13:48:32.134462Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(23) in 26.158709ms -[CIPHER] [cn1] 2026-04-01T13:48:32.134435Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... -[CIPHER] [cn2] 2026-04-01T13:48:32.134689Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... -[CIPHER] [cn2] 2026-04-01T13:48:32.134695Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... -[CIPHER] [cn2] 2026-04-01T13:48:32.134762Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... -[CIPHER] [cn3] 2026-04-01T13:48:32.134761Z  INFO e3_trbfv::calculate_decryption_share: Calculating d_share_poly... -[CIPHER] [cn1] 2026-04-01T13:48:32.134624Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc6c12941391dbd3169b60db796f61e246de379c53241e64c60789dd96856334d), causation_id: EventId(0x50cd5d669ed56fa291e59839852ae142be991708d85327839e44b310bc29accf), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 106, ts: 32743917272647617401523119848585532, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:48:32.134767Z  INFO e3_trbfv::calculate_decryption_share: Create decryption share for ct index 0... -[CIPHER] [cn2] 2026-04-01T13:48:32.134832Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(163) in 26.72675ms -[CIPHER] [cn1] 2026-04-01T13:48:32.134841Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... -[CIPHER] [cn3] 2026-04-01T13:48:32.134853Z  INFO e3_trbfv::calculate_decryption_share: Returning successful result... -[CIPHER] [cn3] 2026-04-01T13:48:32.134878Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_decryption_share`(232) in 26.708333ms -[CIPHER] [cn3] 2026-04-01T13:48:32.134945Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xc42a30464faa24ba5321903d12da1d77f6b6d952951dd266cd71eb52d4de4a71), causation_id: EventId(0xb22677c644d3523647db7da95ebbfeb672d9718cdd684ac7519e1374f7ff4d48), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 106, ts: 32743917272654811631711867990411105, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:48:32.134968Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateDecryptionShare(CalculateDecryptionShareResponse { d_share_poly: [] })), correlation_id: 126, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x0a3a5f15ce9f15427a7e9a3683c0fc3719b4acc2811ca8b0303f0e2c25cbf00e), causation_id: EventId(0x4d2a1ec44f34a7c3443747aa88ccf3f7e439bf1df4bcd3d6e62080b2dcfc6b7a), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 106, ts: 32743917272654073761948919800027365, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:48:32.135132Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... -[CIPHER] [cn2] 2026-04-01T13:48:32.135150Z  INFO e3_keyshare::threshold_keyshare: Publishing ShareDecryptionProofPending for C6 proof generation... -[CIPHER] [cn1] 2026-04-01T13:48:32.135337Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0x84962f2e7576c4c078db2d1d4600b3d5b2281bfcca5eb537f7e606dab2396357), causation_id: EventId(0xc6c12941391dbd3169b60db796f61e246de379c53241e64c60789dd96856334d), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 107, ts: 32743917272653797060787812548376892, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:48:32.136576Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:48:32.138522Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x4595cdc38d8d9af2e3bbf6c2f5e3516b75d0e490bb2a0699dce6e0e68befb9b0), causation_id: EventId(0x84962f2e7576c4c078db2d1d4600b3d5b2281bfcca5eb537f7e606dab2396357), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 62, ts: 32743917272685802161755698620430652, aggregate_id: AggregateId(0), block: Some(405), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:48:32.138444Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0xbb1c9a1fa348a1e6b28f4ca8d81530d5bfde5ea8b8e59ff2a7e847a66fb218a5), causation_id: EventId(0xc42a30464faa24ba5321903d12da1d77f6b6d952951dd266cd71eb52d4de4a71), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 107, ts: 32743917272659165063313263444592481, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:48:32.139562Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(124)` -[CIPHER] [cn3] 2026-04-01T13:48:32.139579Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:48:32.138523Z  INFO e3_events::eventbus: >>> ShareDecryptionProofPending EnclaveEvent { payload: ShareDecryptionProofPending(ShareDecryptionProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", decryption_share: [], proof_request: ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false } }), ctx: EventContext { id: EventId(0x30393bfa01d3fb97a5caf1263f6dd0d5a5fb69574b26c7b171f2de144c8cb817), causation_id: EventId(0x0a3a5f15ce9f15427a7e9a3683c0fc3719b4acc2811ca8b0303f0e2c25cbf00e), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 107, ts: 32743917272659497104706590408202469, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:48:32.139695Z  INFO e3_zk_prover::actors::proof_request: Requesting C6 ThresholdShareDecryption proof for E3 31337:0 -[CIPHER] [cn3] 2026-04-01T13:48:32.141166Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xe3d27df47a6fe111c45d6910c5a24d07126193c5c817c3b3722ebc23a5246d2f), causation_id: EventId(0xbb1c9a1fa348a1e6b28f4ca8d81530d5bfde5ea8b8e59ff2a7e847a66fb218a5), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 62, ts: 32743917272741197734209049820628833, aggregate_id: AggregateId(0), block: Some(405), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:48:32.142272Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(1)` -[CIPHER] [cn2] 2026-04-01T13:48:32.142823Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofRequest { ciphertext_bytes: [], aggregated_pk_bytes: , sk_poly_sum: SensitiveBytes { encrypted: }, es_poly_sum: [SensitiveBytes { encrypted: }], d_share_bytes: [], params_preset: InsecureThreshold512, proof_aggregation_enabled: false })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x7a3860d732db95a2998e60b270b2e37749b956f975270d1e618b936d755cd18a), causation_id: EventId(0x30393bfa01d3fb97a5caf1263f6dd0d5a5fb69574b26c7b171f2de144c8cb817), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 62, ts: 32743917272743337556521600320297189, aggregate_id: AggregateId(0), block: Some(405), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:48:32.143904Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_threshold_share_decryption(151)` -[CIPHER] [cn2] 2026-04-01T13:48:34.009893Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn2] 2026-04-01T13:48:34.009987Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(151) in 1.866075541s -[CIPHER] [cn3] 2026-04-01T13:48:34.011986Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn3] 2026-04-01T13:48:34.012087Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(1) in 1.869808416s -[CIPHER] [cn2] 2026-04-01T13:48:34.010166Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x286bf18e36e1780bfecb31d9b883401c4836091bcf7b5ff3b6e566f76eb7ec71), causation_id: EventId(0x7a3860d732db95a2998e60b270b2e37749b956f975270d1e618b936d755cd18a), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 108, ts: 32743917307244725719438343736940773, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:48:34.012693Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 2 (signer: 0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC) -[CIPHER] [cn3] 2026-04-01T13:48:34.012245Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x10998c4c67430c568356dcdab8f4dd6f9a404d3f88e442f463fb27294fce2d66), causation_id: EventId(0xe3d27df47a6fe111c45d6910c5a24d07126193c5c817c3b3722ebc23a5246d2f), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 108, ts: 32743917307283463881993133603653473, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:48:34.014761Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 0 (signer: 0x90F79bf6EB2c4f870365E785982E1f101E93b906) -[CIPHER] [cn2] 2026-04-01T13:48:34.013247Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x30393bfa01d3fb97a5caf1263f6dd0d5a5fb69574b26c7b171f2de144c8cb817), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 109, ts: 32743917307294070759835516787513573, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:48:34.015757Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0x30393bfa01d3fb97a5caf1263f6dd0d5a5fb69574b26c7b171f2de144c8cb817), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 110, ts: 32743917307294495034949212107200741, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn2] 2026-04-01T13:48:34.015795Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated -[CIPHER] [cn2] 2026-04-01T13:48:34.015893Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete -[CIPHER] [cn3] 2026-04-01T13:48:34.016705Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0xbb1c9a1fa348a1e6b28f4ca8d81530d5bfde5ea8b8e59ff2a7e847a66fb218a5), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 109, ts: 32743917307332200179835874239022945, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:48:34.019293Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0xbb1c9a1fa348a1e6b28f4ca8d81530d5bfde5ea8b8e59ff2a7e847a66fb218a5), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 110, ts: 32743917307332624454949569558710113, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn3] 2026-04-01T13:48:34.019342Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated -[CIPHER] [cn3] 2026-04-01T13:48:34.019443Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete -[CIPHER] [cn4] 2026-04-01T13:48:34.022254Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), origin_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), seq: 22, ts: 32743917307440408780572255411904257, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:48:34.023857Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), origin_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), seq: 108, ts: 32743917307453819563513839896131900, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-04-01T13:48:34.023873Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), origin_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), seq: 22, ts: 32743917307460423497892230304301125, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:48:34.023924Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), origin_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), seq: 34, ts: 32743917307438877700814133801660765, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:48:34.027024Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=2 -[CIPHER] [ag] 2026-04-01T13:48:34.027033Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 2 [] -[CIPHER] [cn2] 2026-04-01T13:48:34.027276Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), origin_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), seq: 111, ts: 32743917307516778301037412204173541, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:48:34.030361Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 2, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), causation_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), origin_id: EventId(0x11cfdd4168c70228849c22d10b966f6955bc55bc283dd0f4abb5fba75b9a6243), seq: 111, ts: 32743917307593775010801075680937825, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-04-01T13:48:34.030275Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), origin_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), seq: 23, ts: 32743917307606171222818609442725633, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-04-01T13:48:34.033464Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), origin_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), seq: 23, ts: 32743917307607702302576727364403269, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn1] 2026-04-01T13:48:34.033436Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), origin_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), seq: 109, ts: 32743917307671214442422506961926460, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:48:34.033445Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 0, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x90F79bf6EB2c4f870365E785982E1f101E93b906", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), causation_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), origin_id: EventId(0x0322e691ca0d5c8571770d8a2fab0621962c6ccb900c7755ea75fc58ed10b96f), seq: 35, ts: 32743917307650480302083656068247901, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:48:34.036084Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=0 -[CIPHER] [ag] 2026-04-01T13:48:34.036089Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 0 [] -[CIPHER] [cn1] 2026-04-01T13:48:34.052670Z  INFO e3_zk_prover::prover: generated proof (16256 bytes) for share_decryption / 31337:0 -[CIPHER] [cn1] 2026-04-01T13:48:34.052762Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_threshold_share_decryption`(124) in 1.913189542s -[CIPHER] [cn1] 2026-04-01T13:48:34.052920Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(ThresholdShareDecryption(ThresholdShareDecryptionProofResponse { proofs: [Proof { circuit: ThresholdShareDecryption, data: , public_signals: }], wrapped_proofs: [] })), correlation_id: 127, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xae9f3476eafead927fe65ca94682b3c59eebc27c305f8b6eb4ab2b59ac0b5ba3), causation_id: EventId(0x4595cdc38d8d9af2e3bbf6c2f5e3516b75d0e490bb2a0699dce6e0e68befb9b0), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 110, ts: 32743917308033434709053867717458236, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:48:34.055536Z  INFO e3_zk_prover::actors::proof_request: All C6 proofs signed for E3 31337:0 party 1 (signer: 0x70997970C51812dc3A010C7d01b50e0d17dc79C8) -[CIPHER] [cn1] 2026-04-01T13:48:34.056599Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0x84962f2e7576c4c078db2d1d4600b3d5b2281bfcca5eb537f7e606dab2396357), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 111, ts: 32743917308084384616185453499021628, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:48:34.059180Z  INFO e3_events::eventbus: >>> DecryptionShareProofSigned EnclaveEvent { payload: DecryptionShareProofSigned(DecryptionShareProofSigned { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x790559932840c58c7e7118cfb2c23b9bb5216ad511a58ea68341d7d82b047bb2), causation_id: EventId(0x84962f2e7576c4c078db2d1d4600b3d5b2281bfcca5eb537f7e606dab2396357), origin_id: EventId(0x547243e724e4954af0ec0c3624913fab43752aa458e4aacbc01f00c5cab1229e), seq: 112, ts: 32743917308084827338043222528260412, aggregate_id: AggregateId(31337), block: Some(405), source: Local } } -[CIPHER] [cn1] 2026-04-01T13:48:34.059235Z  WARN e3_net::net_event_translator: GossipPublish event: DecryptionshareCreated -[CIPHER] [cn1] 2026-04-01T13:48:34.059320Z  INFO e3_keyshare::threshold_keyshare: Decryption share sending process is complete -[CIPHER] [cn4] 2026-04-01T13:48:34.064803Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 24, ts: 32743917308252416007952876164488961, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:48:34.065077Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 112, ts: 32743917308256566525369460062181605, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-04-01T13:48:34.065079Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 24, ts: 32743917308253947087710994086166597, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:48:34.065075Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 112, ts: 32743917308255976229559101164848993, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:48:34.065523Z  INFO e3_events::eventbus: >>> DecryptionshareCreated EnclaveEvent { payload: DecryptionshareCreated(DecryptionshareCreated { party_id: 1, decryption_share: [], e3_id: E3id { id: "0", chain_id: 31337 }, node: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", signed_decryption_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }], wrapped_proofs: [] }), ctx: EventContext { id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 36, ts: 32743917308266435533448891706257757, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [ag] 2026-04-01T13:48:34.068457Z  INFO e3_aggregator::threshold_plaintext_aggregator: Adding share for party_id=1 -[CIPHER] [ag] 2026-04-01T13:48:34.068463Z  INFO e3_aggregator::threshold_plaintext_aggregator: pushing to share collection 1 [] -[CIPHER] [ag] 2026-04-01T13:48:34.068596Z  INFO e3_aggregator::threshold_plaintext_aggregator: Changing state to VerifyingC6 because received all 3 shares... -[CIPHER] [ag] 2026-04-01T13:48:34.069406Z  INFO e3_events::eventbus: >>> ShareVerificationDispatched EnclaveEvent { payload: ShareVerificationDispatched(ShareVerificationDispatched { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, share_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }], decryption_proofs: [], pre_dishonest: {} }), ctx: EventContext { id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), causation_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 37, ts: 32743917308327955424934713060897117, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.076555Z  INFO e3_zk_prover::actors::share_verification: handling ShareVerificationDispatched E3id { id: "0", chain_id: 31337 }, ThresholdDecryptionProofs -[CIPHER] [ag] 2026-04-01T13:48:34.079533Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckRequested EnclaveEvent { payload: CommitmentConsistencyCheckRequested(CommitmentConsistencyCheckRequested { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, correlation_id: 87, party_proofs: [PartyProofData { party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proofs: [(C6ThresholdShareDecryption, , [153, 166, 97, 232, 181, 2, 110, 212, 165, 230, 155, 112, 117, 208, 241, 99, 33, 221, 237, 237, 55, 224, 123, 6, 122, 161, 157, 170, 129, 149, 242, 182])] }, PartyProofData { party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proofs: [(C6ThresholdShareDecryption, , [196, 232, 229, 127, 58, 148, 28, 103, 5, 75, 188, 132, 177, 68, 236, 77, 241, 244, 82, 211, 97, 209, 194, 0, 190, 90, 187, 16, 181, 45, 160, 172])] }, PartyProofData { party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proofs: [(C6ThresholdShareDecryption, , [242, 183, 128, 214, 67, 163, 84, 195, 68, 70, 70, 187, 217, 158, 181, 128, 98, 212, 49, 151, 62, 92, 31, 231, 7, 81, 110, 69, 143, 113, 68, 70])] }] }), ctx: EventContext { id: EventId(0x0baf440d03bbe52fbdc2aad2e5271c872c584721fd7c4242e0238cceef1098dc), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 38, ts: 32743917308503051919682364124836189, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.085565Z  INFO e3_events::eventbus: >>> CommitmentConsistencyCheckComplete EnclaveEvent { payload: CommitmentConsistencyCheckComplete(CommitmentConsistencyCheckComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, correlation_id: 87, inconsistent_parties: {} }), ctx: EventContext { id: EventId(0xa2848a1bf74554b1a857d857468bc3776b70ea5c5428b46d30497a1e311fbc7d), causation_id: EventId(0x0baf440d03bbe52fbdc2aad2e5271c872c584721fd7c4242e0238cceef1098dc), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 39, ts: 32743917308630149986350222935470429, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.086126Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(VerifyShareProofs(VerifyShareProofsRequest { party_proofs: [PartyProofsToVerify { sender_party_id: 1, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 0, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }, PartyProofsToVerify { sender_party_id: 2, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C6ThresholdShareDecryption, proof: Proof { circuit: ThresholdShareDecryption, data: , public_signals: } }, signature: }] }] })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x3fe5c85c4646282bd6ff4d2dea417698d358da624d951f1962b0c3580aa6f06f), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 29, ts: 32743917308639188890946340615762269, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.093267Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_verify_share_proofs(55)` -[CIPHER] [ag] 2026-04-01T13:48:34.228227Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_verify_share_proofs`(55) in 134.951375ms -[CIPHER] [ag] 2026-04-01T13:48:34.228332Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(VerifyShareProofs(VerifyShareProofsResponse { party_results: [PartyVerificationResult { sender_party_id: 1, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 0, all_verified: true, failed_signed_payload: None, recovered_address: None }, PartyVerificationResult { sender_party_id: 2, all_verified: true, failed_signed_payload: None, recovered_address: None }] })), correlation_id: 88, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1d0efd168ac5c3f22cb89218b08a24c90c3d3cd411ce426d8e889428ba9072ad), causation_id: EventId(0x3fe5c85c4646282bd6ff4d2dea417698d358da624d951f1962b0c3580aa6f06f), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 41, ts: 32743917311270450912364344767820125, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.230878Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 1, address: 0x70997970c51812dc3a010c7d01b50e0d17dc79c8, proof_type: C6ThresholdShareDecryption, data_hash: [153, 166, 97, 232, 181, 2, 110, 212, 165, 230, 155, 112, 117, 208, 241, 99, 33, 221, 237, 237, 55, 224, 123, 6, 122, 161, 157, 170, 129, 149, 242, 182], public_signals: }), ctx: EventContext { id: EventId(0x2400918a0ae6a524c57375d8e6b62bd5b14d075e7d8ab71dc1340d6aa7070178), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 42, ts: 32743917311273291710951696038768989, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.232957Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 0, address: 0x90f79bf6eb2c4f870365e785982e1f101e93b906, proof_type: C6ThresholdShareDecryption, data_hash: [196, 232, 229, 127, 58, 148, 28, 103, 5, 75, 188, 132, 177, 68, 236, 77, 241, 244, 82, 211, 97, 209, 194, 0, 190, 90, 187, 16, 181, 45, 160, 172], public_signals: }), ctx: EventContext { id: EventId(0xd2adf75f9e59b4380dfa5b702b4937faab259b3c97c49d6e4e74855c0cb41702), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 43, ts: 32743917311273642199089096520249693, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.234920Z  INFO e3_events::eventbus: >>> ProofVerificationPassed EnclaveEvent { payload: ProofVerificationPassed(ProofVerificationPassed { e3_id: E3id { id: "0", chain_id: 31337 }, party_id: 2, address: 0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc, proof_type: C6ThresholdShareDecryption, data_hash: [242, 183, 128, 214, 67, 163, 84, 195, 68, 70, 70, 187, 217, 158, 181, 128, 98, 212, 49, 151, 62, 92, 31, 231, 7, 81, 110, 69, 143, 113, 68, 70], public_signals: }), ctx: EventContext { id: EventId(0x3cfdbda40c043e5dde466555ae19e7698da90b841560f8d9a96bd46efa106741), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 44, ts: 32743917311273974240482423292178781, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.236902Z  INFO e3_events::eventbus: >>> ShareVerificationComplete EnclaveEvent { payload: ShareVerificationComplete(ShareVerificationComplete { e3_id: E3id { id: "0", chain_id: 31337 }, kind: ThresholdDecryptionProofs, dishonest_parties: {} }), ctx: EventContext { id: EventId(0xd7c38ca6ed81f848a2cc195081ffa58c2351815845fb5b5df8d0d65644150016), causation_id: EventId(0x572ac458d6549133bdc674178032d7002f140f79ae9e545e50376c07fec30f34), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 45, ts: 32743917311274287835131676354556253, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.236998Z  INFO e3_aggregator::threshold_plaintext_aggregator: C6 verification passed: 3 honest parties, transitioning to Computing -[CIPHER] [ag] 2026-04-01T13:48:34.237030Z  INFO e3_aggregator::proof_fold: ThresholdPlaintextAggregator C6 fold: no proofs to fold -[CIPHER] [ag] 2026-04-01T13:48:34.237361Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: TrBFV(CalculateThresholdDecryption(CalculateThresholdDecryptionRequest { trbfv_config: TrBFVConfig { params: , num_parties: 3, threshold: 1 }, d_share_polys: [(0, []), (2, []), (1, [])], ciphertexts: [] })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x1d6a2bd72a9d9658dfdb389794897c1dc713fe479f56f0214d68c4278c533d85), causation_id: EventId(0xd7c38ca6ed81f848a2cc195081ffa58c2351815845fb5b5df8d0d65644150016), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 30, ts: 32743917311431786136033008506253661, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.238134Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `calculate_threshold_decryption(231)` -[CIPHER] [ag] 2026-04-01T13:48:34.238149Z  INFO e3_trbfv::calculate_threshold_decryption: Calculating threshold decryption... -[CIPHER] [ag] 2026-04-01T13:48:34.249665Z  INFO e3_trbfv::calculate_threshold_decryption: Calculating threshold decryption for ciphertext 0... -[CIPHER] [ag] 2026-04-01T13:48:34.252363Z  INFO e3_trbfv::calculate_threshold_decryption: Successfully calculated threshold decryption! Returning... -[CIPHER] [ag] 2026-04-01T13:48:34.252407Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `calculate_threshold_decryption`(231) in 14.267125ms -[CIPHER] [ag] 2026-04-01T13:48:34.252514Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: TrBFV(CalculateThresholdDecryption(CalculateThresholdDecryptionResponse { plaintext: [] })), correlation_id: 89, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x624cf4d5933beaa3b233bdd3d376bcb2e8fbd68dfcd9abe8bb3fc70102ec52c3), causation_id: EventId(0x1d6a2bd72a9d9658dfdb389794897c1dc713fe479f56f0214d68c4278c533d85), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 46, ts: 32743917311716622311275157692756317, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.252727Z  INFO e3_aggregator::threshold_plaintext_aggregator: Received TrBFV threshold decryption response -[CIPHER] [ag] 2026-04-01T13:48:34.252824Z  INFO e3_events::eventbus: >>> AggregationProofPending EnclaveEvent { payload: AggregationProofPending(AggregationProofPending { e3_id: E3id { id: "0", chain_id: 31337 }, proof_request: DecryptedSharesAggregationProofRequest { d_share_polys: [(0, []), (2, []), (1, [])], plaintext: [], params_preset: InsecureThreshold512, threshold_m: 1, threshold_n: 3 }, plaintext: [], shares: [(0, []), (2, []), (1, [])] }), ctx: EventContext { id: EventId(0x32cb30ab0abb6a56c0b96d04d68acb1ee788480285d5ca36911a994e55dfc6e7), causation_id: EventId(0x624cf4d5933beaa3b233bdd3d376bcb2e8fbd68dfcd9abe8bb3fc70102ec52c3), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 47, ts: 32743917311721934973568386043621725, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.254015Z  INFO e3_zk_prover::actors::proof_request: Requesting C7 DecryptedSharesAggregation proof for E3 31337:0 -[CIPHER] [ag] 2026-04-01T13:48:34.254444Z  INFO e3_events::eventbus: >>> ComputeRequest EnclaveEvent { payload: ComputeRequest(ComputeRequest { request: Zk(DecryptedSharesAggregation(DecryptedSharesAggregationProofRequest { d_share_polys: [(0, []), (2, []), (1, [])], plaintext: [], params_preset: InsecureThreshold512, threshold_m: 1, threshold_n: 3 })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xf3690c4cd5272006504920bd09f3fb1d6ec3796e3f3a82f8decebdec6a147f13), causation_id: EventId(0x32cb30ab0abb6a56c0b96d04d68acb1ee788480285d5ca36911a994e55dfc6e7), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 31, ts: 32743917311745675933191250236551517, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:34.255069Z  INFO e3_multithread::multithread: STARTING MULTITHREAD `zk_decrypted_shares_aggregation(49)` -[CIPHER] [ag] 2026-04-01T13:48:35.294765Z  INFO e3_zk_prover::prover: generated proof (9408 bytes) for decrypted_shares_aggregation / 31337:0 -[CIPHER] [ag] 2026-04-01T13:48:35.294817Z  INFO e3_multithread::multithread: FINISHED MULTITHREAD `zk_decrypted_shares_aggregation`(49) in 1.039744542s -[CIPHER] [ag] 2026-04-01T13:48:35.294963Z  INFO e3_events::eventbus: >>> ComputeResponse EnclaveEvent { payload: ComputeResponse(ComputeResponse { response: Zk(DecryptedSharesAggregation(DecryptedSharesAggregationProofResponse { proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }] })), correlation_id: 90, e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0xb8dbb70dd71110eff72b5c8c94d5331047776c8b4759b8c24391481bc6a394fe), causation_id: EventId(0xf3690c4cd5272006504920bd09f3fb1d6ec3796e3f3a82f8decebdec6a147f13), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 48, ts: 32743917330946006395799984455168349, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:35.295502Z  INFO e3_zk_prover::actors::proof_request: All C7 proofs signed for E3 31337:0 (signer: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266) -[CIPHER] [ag] 2026-04-01T13:48:35.295592Z  INFO e3_events::eventbus: >>> AggregationProofSigned EnclaveEvent { payload: AggregationProofSigned(AggregationProofSigned { e3_id: E3id { id: "0", chain_id: 31337 }, signed_proofs: [SignedProofPayload { payload: ProofPayload { e3_id: E3id { id: "0", chain_id: 31337 }, proof_type: C7DecryptedSharesAggregation, proof: Proof { circuit: DecryptedSharesAggregation, data: , public_signals: } }, signature: }] }), ctx: EventContext { id: EventId(0xf28fe8320094594d48cdf057b07459027e106823884fd29782372e9e6a4de03e), causation_id: EventId(0x32cb30ab0abb6a56c0b96d04d68acb1ee788480285d5ca36911a994e55dfc6e7), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 49, ts: 32743917330957756971774937439547741, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:35.296144Z  INFO e3_aggregator::threshold_plaintext_aggregator: C7 proof signed — waiting for C6 cross-node fold to complete... -[CIPHER] [ag] 2026-04-01T13:48:35.296149Z  INFO e3_aggregator::threshold_plaintext_aggregator: Both C7 and C6 fold proof ready — publishing PlaintextAggregated -[CIPHER] [ag] 2026-04-01T13:48:35.296168Z  INFO e3_aggregator::threshold_plaintext_aggregator: Dispatching plaintext event with C7 and C6 proofs PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None } -[CIPHER] [ag] 2026-04-01T13:48:35.297690Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xf28fe8320094594d48cdf057b07459027e106823884fd29782372e9e6a4de03e), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 50, ts: 32743917330977568774910101497983325, aggregate_id: AggregateId(31337), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:35.298187Z  WARN e3_net::net_event_translator: GossipPublish event: PlaintextAggregated -[CIPHER] [ag] 2026-04-01T13:48:35.301323Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xc2f4ccb4c0d19977e93aae877d0bc0248698265be764a9be49b9fe1d55e72204), seq: 32, ts: 32743917331006935991475447104155997, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:35.302124Z  INFO e3_evm::enclave_sol_writer: publishPlaintextOutput() e3_id=0 -[CIPHER] [cn1] 2026-04-01T13:48:35.304434Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 113, ts: 32743917331096937655811077364152636, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn2] 2026-04-01T13:48:35.304461Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 113, ts: 32743917331094760940010381245438181, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn4] 2026-04-01T13:48:35.304496Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 25, ts: 32743917331095332789076666992959233, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn5] 2026-04-01T13:48:35.304460Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 25, ts: 32743917331089743425622333027713093, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:48:35.304480Z  INFO e3_events::eventbus: >>> PlaintextAggregated EnclaveEvent { payload: PlaintextAggregated(PlaintextAggregated { e3_id: E3id { id: "0", chain_id: 31337 }, decrypted_output: [], aggregation_proofs: [Proof { circuit: DecryptedSharesAggregation, data: , public_signals: }], c6_aggregated_proof: None }), ctx: EventContext { id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 113, ts: 32743917331094244431176317186312033, aggregate_id: AggregateId(31337), block: None, source: Net } } -[CIPHER] [cn3] 2026-04-01T13:48:35.306927Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 63, ts: 32743917331140066143455411712526177, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn3] 2026-04-01T13:48:35.306958Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:48:35.306927Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 63, ts: 32743917331131156366067808582400316, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:48:35.306958Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 -[CIPHER] [cn1] 2026-04-01T13:48:35.306988Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) -[CIPHER] [cn3] 2026-04-01T13:48:35.306986Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) -[CIPHER] [cn2] 2026-04-01T13:48:35.307058Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 63, ts: 32743917331133480655821097594280165, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:48:35.307090Z  INFO e3_net::document_publisher: Pruning 5 DHT records for completed E3 31337:0 -[CIPHER] [cn2] 2026-04-01T13:48:35.307106Z  INFO e3_net::net_interface: DHT removed 5 records for completed E3 (10 remaining) -[CIPHER] [cn5] 2026-04-01T13:48:35.307493Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 27, ts: 32743917331137040877427324318056517, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-04-01T13:48:35.307605Z  INFO e3_events::eventbus: >>> E3RequestComplete EnclaveEvent { payload: E3RequestComplete(E3RequestComplete { e3_id: E3id { id: "0", chain_id: 31337 } }), ctx: EventContext { id: EventId(0x35e2b3d1ebf617985162dbd491fff03395031eff9a958e6c256931c99709bac5), causation_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), origin_id: EventId(0xd15c171937ee541cd8b0600b2d8fa1500ff869b7bb38218ec6480c4b25d6457d), seq: 27, ts: 32743917331135786498830312039653121, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-04-01T13:48:36.106024Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 26, ts: 32743917345905079907725495993245441, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } -[CIPHER] [cn3] 2026-04-01T13:48:36.106024Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32743917345905079907725495050143585, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:48:36.106036Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 26, ts: 32743917345906186712369918595235909, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } -[CIPHER] [cn5] 2026-04-01T13:48:36.106328Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn1] 2026-04-01T13:48:36.106084Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32743917345908455661890982481393980, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } -[CIPHER] [cn1] 2026-04-01T13:48:36.106271Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 -[CIPHER] [cn1] 2026-04-01T13:48:36.106239Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [ag] 2026-04-01T13:48:36.106093Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 51, ts: 32743917345905209034934008242647389, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } -[CIPHER] [ag] 2026-04-01T13:48:36.106404Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn2] 2026-04-01T13:48:36.106171Z  INFO e3_events::eventbus: >>> E3StageChanged EnclaveEvent { payload: E3StageChanged(E3StageChanged { e3_id: E3id { id: "0", chain_id: 31337 }, previous_stage: CiphertextReady, new_stage: Complete }), ctx: EventContext { id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), causation_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), origin_id: EventId(0x2c092cab12186eaa28058f0fc7c034428f2bf8d87d724b511081fd072ef946cd), seq: 114, ts: 32743917345907477984455077483534565, aggregate_id: AggregateId(31337), block: Some(409), source: Evm } } -[CIPHER] [cn2] 2026-04-01T13:48:36.106310Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn2] 2026-04-01T13:48:36.106396Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down -[CIPHER] [cn3] 2026-04-01T13:48:36.106226Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn3] 2026-04-01T13:48:36.106273Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 -[CIPHER] [cn3] 2026-04-01T13:48:36.106277Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down -[CIPHER] [cn4] 2026-04-01T13:48:36.106234Z  INFO e3_sortition::sortition: No committee found (might have been completed already) e3_id=E3id { id: "0", chain_id: 31337 } reason="E3StageChanged to Complete" -[CIPHER] [cn2] 2026-04-01T13:48:36.106328Z  INFO e3_keyshare::threshold_keyshare: E3 reached terminal stage Complete. Shutting down ThresholdKeyshare for e3_id=31337:0 -[CIPHER] [cn1] 2026-04-01T13:48:36.106278Z  WARN e3_keyshare::threshold_keyshare: ThresholdKeyshare is shutting down -[TEST] stdout | tests/integration.spec.ts > Integration > should run an integration test -[TEST] Answer was correct -[TEST] -[TEST] ✓ tests/integration.spec.ts (1 test) 318792ms -[TEST] -[TEST] Test Files 1 passed (1) -[TEST] Tests 1 passed (1) -[TEST] Start at 14:43:16 -[TEST] Duration 319.54s (transform 237ms, setup 0ms, collect 581ms, tests 318.79s, environment 0ms, prepare 33ms) -[TEST] -[TEST] wait-on http://localhost:13151/health && pnpm vitest run ./tests/integration.spec.ts exited with code 0 ---> Sending SIGTERM to other processes.. -[EVM] anvil --host 0.0.0.0 --chain-id 31337 --block-time 1 --mnemonic 'test test test test test test test test test test test junk' --silent exited with code 0 ---> Sending SIGTERM to other processes.. -[CIPHER] [cn4] 2026-04-01T13:48:36.206009Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [ag] 2026-04-01T13:48:36.206039Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [cn5] 2026-04-01T13:48:36.206047Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [cn2] 2026-04-01T13:48:36.206116Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [cn3] 2026-04-01T13:48:36.206159Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [cn1] 2026-04-01T13:48:36.206241Z ERROR alloy_transport_ws::native: WS connection error err=WebSocket protocol error: Connection reset without closing handshake -[CIPHER] [cn3] 2026-04-01T13:48:36.207789Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] [ag] 2026-04-01T13:48:36.207898Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] [cn5] 2026-04-01T13:48:36.208021Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] [cn4] 2026-04-01T13:48:36.208021Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] [cn1] 2026-04-01T13:48:36.208040Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] [cn2] 2026-04-01T13:48:36.207821Z  WARN alloy_pubsub::service: Reconnection attempt 1/10 failed: IO error: Connection refused (os error 61). Retrying in 3.0s... -[CIPHER] Cleaning up processes... -[CIPHER] 2026-04-01T13:48:36.314545Z  INFO execute:execute: actix_server::server: SIGTERM received; starting graceful shutdown -[CIPHER] 2026-04-01T13:48:36.315110Z  INFO e3_entrypoint::nodes::process_manager: Received SIGTERM, shutting down all processes... -[CIPHER] 2026-04-01T13:48:36.315233Z  INFO e3_entrypoint::nodes::process_manager: starting to terminate processes... -[CIPHER] 2026-04-01T13:48:36.315257Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn5 -[CIPHER] 2026-04-01T13:48:36.315883Z  INFO actix_server::accept: accept thread stopped -[CIPHER] [ag] 2026-04-01T13:48:36.314391Z  INFO execute: enclave::start: SIGTERM received -[CIPHER] 2026-04-01T13:48:36.316728Z  INFO actix_server::worker: shutting down idle worker -[CIPHER] [ag] 2026-04-01T13:48:36.314409Z  INFO execute: enclave::start: initiating graceful shutdown... -[CIPHER] [ag] 2026-04-01T13:48:36.314717Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 34, ts: 32743917349753531890103147481674077, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn2] 2026-04-01T13:48:36.314613Z  INFO execute: enclave::start: SIGTERM received -[CIPHER] [cn2] 2026-04-01T13:48:36.314806Z  INFO execute: enclave::start: initiating graceful shutdown... -[CIPHER] [cn2] 2026-04-01T13:48:36.314880Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 65, ts: 32743917349760560099595233786878181, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:48:36.314653Z  INFO execute: enclave::start: SIGTERM received -[CIPHER] [cn1] 2026-04-01T13:48:36.315690Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 65, ts: 32743917349757922215192691712620860, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn4] 2026-04-01T13:48:36.314815Z  INFO execute: enclave::start: SIGTERM received -[CIPHER] [cn4] 2026-04-01T13:48:36.314835Z  INFO execute: enclave::start: initiating graceful shutdown... -[CIPHER] [cn3] 2026-04-01T13:48:36.314864Z  INFO execute: enclave::start: SIGTERM received -[CIPHER] [cn3] 2026-04-01T13:48:36.314881Z  INFO execute: enclave::start: initiating graceful shutdown... -[CIPHER] [cn3] 2026-04-01T13:48:36.314981Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 65, ts: 32743917349761925158656688102016865, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [cn1] 2026-04-01T13:48:36.314665Z  INFO execute: enclave::start: initiating graceful shutdown... -[CIPHER] [cn4] 2026-04-01T13:48:36.314927Z  INFO e3_events::eventbus: >>> Shutdown EnclaveEvent { payload: Shutdown(Shutdown), ctx: EventContext { id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), causation_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), origin_id: EventId(0xaf088f259c563353ed7f9fb5edc2cb44cd8e4c7798703ee5cc828f57c4f1ca8f), seq: 29, ts: 32743917349761076608429298405744385, aggregate_id: AggregateId(0), block: None, source: Local } } -[CIPHER] [ag] 2026-04-01T13:48:36.322971Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector -[CIPHER] [ag] 2026-04-01T13:48:36.323057Z  INFO e3_aggregator::committee_finalizer: Killing CommitteeFinalizer -[CIPHER] [ag] 2026-04-01T13:48:36.323120Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream -[CIPHER] [cn3] 2026-04-01T13:48:36.323716Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector -[CIPHER] [cn3] 2026-04-01T13:48:36.323750Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream -[CIPHER] 2026-04-01T13:48:36.324020Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn5... -[CIPHER] 2026-04-01T13:48:36.324025Z  INFO e3_entrypoint::nodes::process_manager: Process cn5 terminated. -[CIPHER] 2026-04-01T13:48:36.324028Z  INFO e3_entrypoint::nodes::process_manager: Terminating ag -[CIPHER] [cn1] 2026-04-01T13:48:36.326009Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector -[CIPHER] [cn1] 2026-04-01T13:48:36.326040Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream -[CIPHER] [cn4] 2026-04-01T13:48:36.326129Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector -[CIPHER] [cn4] 2026-04-01T13:48:36.326164Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream -[CIPHER] [cn2] 2026-04-01T13:48:36.326705Z  INFO e3_sortition::ciphernode_selector: Killing CiphernodeSelector -[CIPHER] [cn2] 2026-04-01T13:48:36.326744Z  INFO evm_interface: e3_evm::evm_read_interface: Shutdown signal received, stopping EVM stream -[CIPHER] 2026-04-01T13:48:36.329562Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: ag... -[CIPHER] 2026-04-01T13:48:36.329575Z  INFO e3_entrypoint::nodes::process_manager: Process ag terminated. -[CIPHER] 2026-04-01T13:48:36.329581Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn3 -[CIPHER] 2026-04-01T13:48:36.335080Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn3... -[CIPHER] 2026-04-01T13:48:36.335087Z  INFO e3_entrypoint::nodes::process_manager: Process cn3 terminated. -[CIPHER] 2026-04-01T13:48:36.335091Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn4 -[CIPHER] 2026-04-01T13:48:36.338493Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn4... -[CIPHER] 2026-04-01T13:48:36.338508Z  INFO e3_entrypoint::nodes::process_manager: Process cn4 terminated. -[CIPHER] 2026-04-01T13:48:36.338514Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn1 -[CIPHER] 2026-04-01T13:48:36.343642Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn1... -[CIPHER] 2026-04-01T13:48:36.343655Z  INFO e3_entrypoint::nodes::process_manager: Process cn1 terminated. -[CIPHER] 2026-04-01T13:48:36.343661Z  INFO e3_entrypoint::nodes::process_manager: Terminating cn2 -[CIPHER] 2026-04-01T13:48:36.348031Z  INFO e3_entrypoint::nodes::process_manager: Terminating process: cn2... -[CIPHER] 2026-04-01T13:48:36.348042Z  INFO e3_entrypoint::nodes::process_manager: Process cn2 terminated. -[CIPHER] 2026-04-01T13:48:36.348046Z  INFO e3_entrypoint::nodes::process_manager: SWARM All processes terminated, exiting -[PROGRAM]  ELIFECYCLE  Command failed. -[SERVER]  ELIFECYCLE  Command failed. -[SERVER] TEST_MODE=1 pnpm dev:server exited with code SIGTERM ---> Sending SIGTERM to other processes.. -[PROGRAM] pnpm dev:program exited with code SIGTERM ---> Sending SIGTERM to other processes.. -[CIPHER] Cleanup complete -[CIPHER] pnpm dev:ciphernodes exited with code SIGTERM - ------------------------- - ✅ Test has passed! ------------------------- - From eb653b0cdf8146b46807d68ce30be3e4ee0c160d Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Tue, 7 Apr 2026 14:36:43 +0100 Subject: [PATCH 06/10] chore: crisp build --- .../packages/crisp-contracts/contracts/Mocks/MockEnclave.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/CRISP/packages/crisp-contracts/contracts/Mocks/MockEnclave.sol b/examples/CRISP/packages/crisp-contracts/contracts/Mocks/MockEnclave.sol index dbe342ee63..cb9b37b441 100644 --- a/examples/CRISP/packages/crisp-contracts/contracts/Mocks/MockEnclave.sol +++ b/examples/CRISP/packages/crisp-contracts/contracts/Mocks/MockEnclave.sol @@ -27,7 +27,7 @@ contract MockEnclave { inputWindow: [uint256(0), uint256(0)], encryptionSchemeId: bytes32(0), e3Program: IE3Program(address(0)), - paramSet: IEnclave.ParamSet.Insecure512, + paramSet: 0, // Insecure512 customParams: abi.encode(address(0), nextE3Id, 2, 0, 0), decryptionVerifier: IDecryptionVerifier(address(0)), pkVerifier: IPkVerifier(address(0)), @@ -64,7 +64,7 @@ contract MockEnclave { inputWindow: [uint256(0), block.timestamp + 100], encryptionSchemeId: bytes32(0), e3Program: IE3Program(address(0)), - paramSet: IEnclave.ParamSet.Insecure512, + paramSet: 0, // Insecure512 customParams: abi.encode(address(0), 0, 2, 0, 0), decryptionVerifier: IDecryptionVerifier(address(0)), pkVerifier: IPkVerifier(address(0)), From 15fe8e24d576fc5092c701fa6ef1c5c26eeedd5b Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Tue, 7 Apr 2026 14:52:46 +0100 Subject: [PATCH 07/10] chore: pr comments --- examples/CRISP/enclave.config.yaml | 24 +-- .../crisp-contracts/deployed_contracts.json | 142 +++++++++--------- .../contracts/Enclave.sol/Enclave.json | 6 +- .../enclave-contracts/contracts/Enclave.sol | 4 + 4 files changed, 90 insertions(+), 86 deletions(-) diff --git a/examples/CRISP/enclave.config.yaml b/examples/CRISP/enclave.config.yaml index 6d5d086065..0a33266823 100644 --- a/examples/CRISP/enclave.config.yaml +++ b/examples/CRISP/enclave.config.yaml @@ -3,23 +3,23 @@ chains: rpc_url: ws://localhost:8545 contracts: e3_program: - address: "0x4c5859f0F772848b2D91F1D83E2Fe57935348029" - deploy_block: 51 + address: "0x809d550fca64d94Bd9F66E60752A544199cfAC3D" + deploy_block: 32 enclave: - address: "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0" - deploy_block: 13 + address: "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e" + deploy_block: 14 ciphernode_registry: - address: "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6" - deploy_block: 9 - bonding_registry: - address: "0x610178dA211FEF7D417bC0e6FeD39F05609AD788" + address: "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853" deploy_block: 10 + bonding_registry: + address: "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318" + deploy_block: 11 slashing_manager: - address: "0x0165878A594ca255338adfa4d48449f69242Eb8F" - deploy_block: 8 + address: "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707" + deploy_block: 9 fee_token: - address: "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0" - deploy_block: 4 + address: "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512" + deploy_block: 5 program: dev: true # risc0: diff --git a/examples/CRISP/packages/crisp-contracts/deployed_contracts.json b/examples/CRISP/packages/crisp-contracts/deployed_contracts.json index 36cc43091f..bc26c7fda9 100644 --- a/examples/CRISP/packages/crisp-contracts/deployed_contracts.json +++ b/examples/CRISP/packages/crisp-contracts/deployed_contracts.json @@ -151,38 +151,38 @@ }, "localhost": { "PoseidonT3": { - "blockNumber": 3, + "blockNumber": 4, "address": "0x3333333C0A88F9BE4fd23ed0536F9B6c427e3B93" }, "MockUSDC": { "constructorArgs": { "initialSupply": "1000000" }, - "blockNumber": 4, - "address": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0" + "blockNumber": 5, + "address": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512" }, "EnclaveToken": { "constructorArgs": { "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 5, - "address": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9" + "blockNumber": 6, + "address": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0" }, "EnclaveTicketToken": { "constructorArgs": { - "baseToken": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "baseToken": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", "registry": "0x0000000000000000000000000000000000000001", "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 7, - "address": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707" + "blockNumber": 8, + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9" }, "SlashingManager": { "constructorArgs": { "admin": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, - "blockNumber": 8, - "address": "0x0165878A594ca255338adfa4d48449f69242Eb8F" + "blockNumber": 9, + "address": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707" }, "CiphernodeRegistryOwnable": { "constructorArgs": { @@ -192,19 +192,19 @@ "proxyRecords": { "initData": "0xcd6dc687000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000000000000000000000000000000000000000000a", "initialOwner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "proxyAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", - "proxyAdminAddress": "0x94099942864EA81cCF197E9D71ac53310b1468D8", - "implementationAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853" + "proxyAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "proxyAdminAddress": "0x9bd03768a7DCc129555dE410FF8E85528A4F88b5", + "implementationAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F" }, - "blockNumber": 9, - "address": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6" + "blockNumber": 10, + "address": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853" }, "BondingRegistry": { "constructorArgs": { "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "ticketToken": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", - "licenseToken": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", - "registry": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "ticketToken": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "licenseToken": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "registry": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", "slashedFundsTreasury": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", "ticketPrice": "10000000", "licenseRequiredBond": "100000000000000000000", @@ -212,112 +212,112 @@ "exitDelay": "604800" }, "proxyRecords": { - "initData": "0x7333fa82000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb922660000000000000000000000005fc8d32690cc91d4c39d9d3abcbd16989f875707000000000000000000000000cf7ed3acca5a467e9e704c703e8d87f634fb0fc90000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb9226600000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000093a80", + "initData": "0x7333fa82000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000dc64a140aa3e981100a9beca4e685f962f0cf6c90000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c853000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb9226600000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000093a80", "initialOwner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "proxyAddress": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788", - "proxyAdminAddress": "0x6F1216D1BFe15c98520CA1434FC1d9D57AC95321", - "implementationAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318" + "proxyAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "proxyAdminAddress": "0x8aCd85898458400f7Db866d53FCFF6f0D49741FF", + "implementationAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6" }, - "blockNumber": 10, - "address": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788" + "blockNumber": 11, + "address": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318" }, "Enclave": { "constructorArgs": { "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "registry": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", - "bondingRegistry": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788", + "registry": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "bondingRegistry": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", "e3RefundManager": "0x0000000000000000000000000000000000000001", - "feeToken": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "feeToken": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", "maxDuration": "2592000", "timeoutConfig": "{\"committeeFormationWindow\":3600,\"dkgWindow\":7200,\"computeWindow\":86400,\"decryptionWindow\":3600}" }, "proxyRecords": { - "initData": "0x4d600e5d000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb922660000000000000000000000002279b7a0a67db372996a5fab50d91eaa73d2ebe6000000000000000000000000610178da211fef7d417bc0e6fed39f05609ad78800000000000000000000000000000000000000000000000000000000000000010000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e00000000000000000000000000000000000000000000000000000000000278d000000000000000000000000000000000000000000000000000000000000001c2000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000e10", + "initData": "0x4d600e5d000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c8530000000000000000000000008a791620dd6260079bf849dc5567adc3f2fdc3180000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e7f1725e7734ce288f8367e1bb143e90bb3f05120000000000000000000000000000000000000000000000000000000000278d000000000000000000000000000000000000000000000000000000000000001c2000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000e10", "initialOwner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "proxyAddress": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", - "proxyAdminAddress": "0x1F708C24a0D3A740cD47cC0444E9480899f3dA7D", - "implementationAddress": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e" + "proxyAddress": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", + "proxyAdminAddress": "0x8dAF17A20c9DBA35f005b6324F493785D239719d", + "implementationAddress": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788" }, - "blockNumber": 13, - "address": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0" + "blockNumber": 14, + "address": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e" }, "E3RefundManager": { "constructorArgs": { "owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "enclave": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", + "enclave": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", "treasury": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" }, "proxyRecords": { - "initData": "0xc0c53b8b000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000a51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "initData": "0xc0c53b8b000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266000000000000000000000000b7f8bc63bbcad18155201308c8f3540b07f84f5e000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266", "initialOwner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", - "proxyAddress": "0x9A676e781A523b5d0C0e43731313A708CB607508", - "proxyAdminAddress": "0x8e80FFe6Dc044F4A766Afd6e5a8732Fe0977A493", - "implementationAddress": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82" + "proxyAddress": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82", + "proxyAdminAddress": "0x32467b43BFa67273FC7dDda0999Ee9A12F2AaA08", + "implementationAddress": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0" }, - "blockNumber": 15, - "address": "0x9A676e781A523b5d0C0e43731313A708CB607508" + "blockNumber": 16, + "address": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82" }, "MockComputeProvider": { - "blockNumber": 35, - "address": "0x9E545E3C0baAB3E08CdfD552C960A1050f373042" + "blockNumber": 18, + "address": "0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB" }, "MockDecryptionVerifier": { - "blockNumber": 36, - "address": "0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9" + "blockNumber": 19, + "address": "0x9E545E3C0baAB3E08CdfD552C960A1050f373042" }, "MockPkVerifier": { - "blockNumber": 37, - "address": "0x1613beB3B2C4f22Ee086B2b38C1476A3cE7f78E8" + "blockNumber": 20, + "address": "0xa82fF9aFd8f496c3d6ac40E2a0F282E47488CFc9" }, "MockE3Program": { - "blockNumber": 38, - "address": "0x851356ae760d987E095750cCeb3bC6014560891C" + "blockNumber": 21, + "address": "0x1613beB3B2C4f22Ee086B2b38C1476A3cE7f78E8" }, "ZKTranscriptLib": { - "blockNumber": 40, - "address": "0x95401dc811bb5740090279Ba06cfA8fcF6113778" + "blockNumber": 23, + "address": "0xf5059a5D33d5853360D16C683c16e67980206f36" }, "RecursiveAggregationFoldVerifier": { - "blockNumber": 41, - "address": "0x998abeb3E57409262aE5b751f60747921B33613E" + "blockNumber": 24, + "address": "0x95401dc811bb5740090279Ba06cfA8fcF6113778" }, "ThresholdDecryptedSharesAggregationVerifier": { - "blockNumber": 42, - "address": "0x70e0bA845a1A0F2DA3359C97E0285013525FFC49" + "blockNumber": 25, + "address": "0x998abeb3E57409262aE5b751f60747921B33613E" }, "ThresholdPkAggregationVerifier": { - "blockNumber": 43, - "address": "0x4826533B4897376654Bb4d4AD88B7faFD0C98528" + "blockNumber": 26, + "address": "0x70e0bA845a1A0F2DA3359C97E0285013525FFC49" }, "BfvDecryptionVerifier": { - "blockNumber": 44, - "address": "0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf" + "blockNumber": 27, + "address": "0x4826533B4897376654Bb4d4AD88B7faFD0C98528" }, "BfvPkVerifier": { - "blockNumber": 46, - "address": "0x8f86403A4DE0BB5791fa46B8e795C547942fE4Cf" + "blockNumber": 29, + "address": "0x0E801D84Fa97b50751Dbf25036d067dCf18858bF" }, "MockRISC0Verifier": { - "address": "0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00", - "blockNumber": 48 + "address": "0x9d4454B023096f34B160D6B654540c56A1F81688", + "blockNumber": 31 }, "HonkVerifier": { - "address": "0x809d550fca64d94Bd9F66E60752A544199cfAC3D", - "blockNumber": 50 + "address": "0x36C02dA8a0983159322a80FFE9F24b1acfF8B570", + "blockNumber": 32 }, "CRISPProgram": { - "address": "0x4c5859f0F772848b2D91F1D83E2Fe57935348029", - "blockNumber": 51, + "address": "0x809d550fca64d94Bd9F66E60752A544199cfAC3D", + "blockNumber": 32, "constructorArgs": { - "enclave": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", - "verifierAddress": "0x5eb3Bc0a489C5A8288765d2336659EbCA68FCd00", - "honkVerifierAddress": "0x809d550fca64d94Bd9F66E60752A544199cfAC3D", + "enclave": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", + "verifierAddress": "0x9d4454B023096f34B160D6B654540c56A1F81688", + "honkVerifierAddress": "0x36C02dA8a0983159322a80FFE9F24b1acfF8B570", "imageId": "0x23734b77b0f76e85623a88d7a82f24c34c94834f2501964ea123b7a2027013a2" } }, "MockVotingToken": { - "address": "0x5f3f1dBD7B74C6B46e8c44f98792A1dAf8d69154", - "blockNumber": 53 + "address": "0x1291Be112d480055DaFd8a610b7d1e203891C274", + "blockNumber": 34 } } } \ No newline at end of file diff --git a/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json b/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json index 4d28e892fe..2a34d6c780 100644 --- a/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json +++ b/packages/enclave-contracts/artifacts/contracts/Enclave.sol/Enclave.json @@ -2539,11 +2539,11 @@ "type": "function" } ], - "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6159ad806100d65f395ff3fe608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e03660046145b3565b61092e565b005b61030f6102f53660046145d5565b5f908152600960205260409020546001600160a01b031690565b60405161031c91906145f9565b60405180910390f35b61030f6103333660046145d5565b60096020525f90815260409020546001600160a01b031681565b61036061035b366004614620565b6109da565b60405163ffffffff909116815260200161031c565b6102e56103833660046145b3565b610a16565b6102e5610396366004614658565b610abb565b6103bd6103a93660046145d5565b5f908152600f602052604090205460ff1690565b60405161031c919061469a565b6103dd6103d83660046145d5565b610acf565b60405161031c9e9d9c9b9a999897969594939291906146e6565b61040a6104053660046145d5565b610c7a565b60405161031c91906148c0565b6104366104253660046145d5565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e56104523660046148dd565b610ef7565b6102e56104653660046145d5565b611134565b6102e56104783660046145b3565b6111c3565b61049061048b366004614973565b611256565b60405161031c919061498c565b60045461030f906001600160a01b031681565b61043660055481565b6102e56112ed565b6102e56104cf36600461499e565b611300565b6102e56104e23660046145d5565b611389565b6102e56104f53660046149cc565b611488565b6102e5610508366004614a29565b61157c565b60015461030f906001600160a01b031681565b61030f611688565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b6105556116b6565b60405161031c9190614a77565b6102e56105703660046145d5565b6116fc565b6105556105833660046145d5565b61186a565b61059b6105963660046145d5565b6118c3565b60405161031c929190614a98565b61030f6105b73660046145d5565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614aae565b6118ea565b604051901515815260200161031c565b610436610602366004614b25565b611b82565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614b5c565b61030f6107673660046145d5565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614c69565b612106565b6102e56107a2366004614d0e565b612336565b6102e56107b53660046145b3565b6123f2565b6102e56107c83660046149cc565b612499565b6105e46107db3660046145b3565b60076020525f908152604090205460ff1681565b61043660065481565b6102e561080636600461499e565b612556565b6102e56108193660046145d5565b612610565b61084061082c3660046145d5565b5f908152600d602052604090205460ff1690565b60405161031c9190614d48565b6102e561085b366004614d56565b61264d565b6102e561086e3660046145b3565b6128da565b6102e5610881366004614d70565b612974565b60025461030f906001600160a01b031681565b6102e56108a73660046145b3565b612c21565b6108bf6108ba366004614b25565b612c5b565b60405161031c929190614da7565b6103bd6108db3660046145d5565b61356c565b6102e56108ee3660046145b3565b613706565b61030f6109013660046145d5565b600a6020525f90815260409020546001600160a01b031681565b6102e56109293660046145b3565b61379e565b61093661382d565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e61382d565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b815260040161098891906145f9565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab09083906145f9565b60405180910390a150565b610ac361382d565b610acc8161385f565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614dc7565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614dc7565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c82614421565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf614672565b6003811115610cd057610cd0614672565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152600160a01b900460ff166060820152600782018054608090920191610d5290614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90614dc7565b8015610dc95780601f10610da057610100808354040283529160200191610dc9565b820191905f5260205f20905b815481529060010190602001808311610dac57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e1a90614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690614dc7565b8015610e915780601f10610e6857610100808354040283529160200191610e91565b820191905f5260205f20905b815481529060010190602001808311610e7457829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610ef15760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f0061391c565b805490915060ff600160401b82041615906001600160401b03165f81158015610f265750825b90505f826001600160401b03166001148015610f415750303b155b905081158015610f4f575080155b15610f6d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f9757845460ff60401b1916600160401b1785555b610fa033613946565b610fa987612610565b610fb28b613706565b610fbb8a6128da565b610fc48961092e565b610fcd88610a16565b610fd68661385f565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110bf611688565b6001600160a01b03168c6001600160a01b0316146110e0576110e08c612c21565b831561112657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61113c61382d565b5f8181526009602052604090205481906001600160a01b0316611175576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111cb61382d565b6001600160a01b0381165f90815260076020526040902054819060ff16611206576040516321ac7c5f60e01b815260040161098891906145f9565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab09083906145f9565b600b6020525f90815260409020805461126e90614dc7565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90614dc7565b80156112e55780601f106112bc576101008083540402835291602001916112e5565b820191905f5260205f20905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b6112f561382d565b6112fe5f613957565b565b61130861382d565b6001600160a01b0381161580159061133957505f828152600a60205260409020546001600160a01b03828116911614155b829061135b576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113b35760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113d8576113d8614672565b146113fd57816001826040516337e1404160e01b815260040161098893929190614df9565b5f828152600d60205260409020805460ff191660021790556015546114229042614e2e565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f5160206159815f395f51905f526001600260405161147c929190614e41565b60405180910390a25050565b5f546001600160a01b031633146114b25760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff1660028160068111156114e2576114e2614672565b1461150757836002826040516337e1404160e01b815260040161098893929190614df9565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f5160206159815f395f51905f526002600360405161156e929190614e41565b60405180910390a250505050565b61158461382d565b806115c05760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b60ff83165f908152600b6020526040902080546115dc90614dc7565b15905061162b5760405162461bcd60e51b815260206004820152601b60248201527f506172616d53657420616c7265616479207265676973746572656400000000006044820152606401610988565b60ff83165f908152600b60205260409020611647828483614ecf565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161167b93929190614fab565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6116d760405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff16600681600681111561172157611721614672565b14829061174457604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c60205260409020548281611775576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c6020526040812081905561178f846139c7565b5f858152601160205260409020546002549192506001600160a01b03908116916117bc9183911685613ab4565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b697906117f2908890879087908790600401615013565b5f604051808303815f87803b158015611809575f5ffd5b505af115801561181b573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a0731784845160405161185b929190918252602082015260400190565b60405180910390a25050505050565b61188b60405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118e08482613b11565b9250925050915091565b5f5f6118f587610c7a565b5f888152600d602052604090205490915060ff16600381600681111561191d5761191d614672565b1488600383909192611945576040516337e1404160e01b815260040161098893929190614df9565b5050505f888152600e60209081526040918290208251606081018452815481526001820154928101839052600290910154928101929092528990428110156119a9576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119e05760405163017e35e560e71b815260048101929092526024820152604401610988565b5050610160830151899015611a0b57604051637eb9cea960e11b815260040161098891815260200190565b505f8888604051611a1d92919061505e565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff19166004179055601754909150611a5f9042614e2e565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611aac908d9085908c908c9060040161506d565b6020604051808303815f875af1158015611ac8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aec9190615099565b9450888886611b1057604051632f9f8ab960e01b81526004016109889291906150b4565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611b449291906150b4565b60405180910390a2895f5160206159815f395f51905f5260036004604051611b6d929190614e41565b60405180910390a25050505095945050505050565b5f80601281611b9460208601866150c7565b6003811115611ba557611ba5614672565b6003811115611bb657611bb6614672565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611bdd579050505050505090505f81600160028110611c3457611c3461504a565b602002015163ffffffff1611835f016020810190611c5291906150c7565b90611c715760405163286c068d60e11b815260040161098891906150e0565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d9c576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d7b91906150c7565b90611d9a5760405163010b971d60e31b815260040161098891906150e0565b505b6101c081015163ffffffff1615611deb576101c081015184519063ffffffff9081169082161015611de957604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611e185760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611e369161ffff16906150ee565b611e409190615105565b61271061ffff1683610160015161ffff16601560010154611e6191906150ee565b611e6b9190615105565b61271061ffff1684610140015161ffff1660155f0154611e8b91906150ee565b611e959190615105565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611ee1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f059190615124565b611f0f9190614e2e565b611f19919061513b565b611f239190614e2e565b611f2d9190614e2e565b611f379190614e2e565b90505f611f4560018661513b565b611f509060026150ee565b611f5b9060026150ee565b611f66906006614e2e565b90505f85845f0151611f7891906150ee565b905081868560200151611f8b91906150ee565b611f9591906150ee565b611f9f9082614e2e565b90506001861115611fe7576002611fb760018861513b565b611fc190886150ee565b8560400151611fd091906150ee565b611fda9190615105565b611fe49082614e2e565b90505b81868560c00151611ff891906150ee565b61200291906150ee565b61200c9082614e2e565b90508286856060015161201f91906150ee565b61202991906150ee565b6120339082614e2e565b905084846080015161204591906150ee565b61204f9082614e2e565b9050600185111561209757600261206760018761513b565b61207190876150ee565b856040015161208091906150ee565b61208a9190615105565b6120949082614e2e565b90505b60a08401516120a69082614e2e565b610100850151909150612710906120c19061ffff1682614e2e565b6120cb90836150ee565b6120d59190615105565b975087806120f957604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f61211189610c7a565b5f8a8152600d602052604090205490915060ff16600481600681111561213957612139614672565b148a600483909192612161576040516337e1404160e01b815260040161098893929190614df9565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b90428110156121c4576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121e18a8c83614ecf565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b60405161222592919061505e565b6040519081900381206001600160e01b031960e084901b168252612253918c908c908c908c9060040161514e565b602060405180830381865afa15801561226e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122929190615099565b93508989856122b657604051632f9f8ab960e01b81526004016109889291906150b4565b50506122c18b613c99565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b6040516122f79493929190615186565b60405180910390a28a5f5160206159815f395f51905f5260046005604051612320929190614e41565b60405180910390a2505050979650505050505050565b5f546001600160a01b031633148061235857506003546001600160a01b031633145b61237557604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff1611801561238b5750600d60ff821611155b6123d05760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b6123ee828260ff16600d8111156123e9576123e9614672565b614105565b5050565b6123fa61382d565b6001600160a01b0381166124505760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b031633146124c4576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b15801561250e575f5ffd5b505af1158015612520573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161147c91815260200190565b61255e61382d565b6001600160a01b0381161580159061258f57505f828152600960205260409020546001600160a01b03828116911614155b82906125b1576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b61261861382d565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b61265561382d565b61271061266a610120830161010084016151d1565b61ffff161115612682610120830161010084016151d1565b906126a7576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126bd610140830161012084016151d1565b61ffff1611156126d5610140830161012084016151d1565b906126fa576040516301027fc160e21b815261ffff9091166004820152602401610988565b50612710612710610160830161014084016151d1565b61ffff161115612728610160830161014084016151d1565b9061274d57604051633239953960e01b815261ffff9091166004820152602401610988565b50612710612763610180830161016084016151d1565b61ffff16111561277b610180830161016084016151d1565b906127a057604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127b66101a0830161018084016151d1565b61ffff1611156127ce6101a0830161018084016151d1565b906127f357604051633239953960e01b815261ffff9091166004820152602401610988565b50612806610140820161012083016151d1565b61ffff16158061282f57505f612823610100830160e084016145b3565b6001600160a01b031614155b61284c5760405163015f92ff60e51b815260040160405180910390fd5b61285e6101e082016101c08301615208565b63ffffffff166128766101c083016101a08401615208565b63ffffffff16101561289b576040516392f55c6560e01b815260040160405180910390fd5b8060186128a88282615247565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab09190615405565b6128e261382d565b6001600160a01b0381161580159061290857506001546001600160a01b03828116911614155b8190612928576040516320252f0b60e01b815260040161098891906145f9565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab09083906145f9565b61297c61382d565b6129896020820182615208565b63ffffffff1661299f6040830160208401615208565b63ffffffff16101580156129c457505f6129bc6020830183615208565b63ffffffff16115b6129e157604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612b1a576101a081015163ffffffff16612aca6040840160208501615208565b63ffffffff161015612ae26040840160208501615208565b826101a001519091612b1757604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b91576101c081015163ffffffff16612b446020840184615208565b63ffffffff161015612b596020840184615208565b826101c001519091612b8e5760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612ba757612ba7614672565b6003811115612bb857612bb8614672565b815260208101919091526040015f20612bd291600261449e565b50826003811115612be557612be5614672565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612c14919061550f565b60405180910390a2505050565b612c2961382d565b6001600160a01b038116612c52575f604051631e4fbdf760e01b815260040161098891906145f9565b610acc81613957565b5f612c64614421565b5f601281612c7560208701876150c7565b6003811115612c8657612c86614672565b6003811115612c9757612c97614672565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612cbe579050505050505090505f81600160028110612d1557612d1561504a565b602002015163ffffffff1611845f016020810190612d3391906150c7565b90612d525760405163286c068d60e11b815260040161098891906150e0565b50602084013542811015612d7c57604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612daa5760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612dc242604089013561513b565b612dcc9190614e2e565b612dd69190614e2e565b905060055481108190612dff576040516313b783af60e21b815260040161098891815260200190565b5060075f612e1360808801606089016145b3565b6001600160a01b0316815260208101919091526040015f205460ff16612e3f60808701606088016145b3565b90612e5e5760405163295a6a6f60e11b815260040161098891906145f9565b505f612e6986611b82565b60068054965090915085905f612e7e8361554f565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612f599190890135614e2e565b5f878152600e6020908152604090912060010191909155818652612f7f908801886150c7565b85602001906003811115612f9557612f95614672565b90816003811115612fa857612fa8614672565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612ff090608089019089016145b3565b6001600160a01b031660a08087019190915261301190880160808901614973565b60ff1660c08087019190915261302990880188615567565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526130769061010089019089016155a9565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a086018190526004546130c6916001600160a01b03909116903085614260565b5f600b816130da60a08b0160808c01614973565b60ff1660ff1681526020019081526020015f2080546130f890614dc7565b80601f016020809104026020016040519081016040528092919081815260200182805461312490614dc7565b801561316f5780601f106131465761010080835404028352916020019161316f565b820191905f5260205f20905b81548152906001019060200180831161315257829003601f168201915b505050505090505f8151116131c65760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f6131d760808a0160608b016145b3565b6001600160a01b031663fefd9a8b8985856131f560a08f018f615567565b8f8060c001906132059190615567565b6040518863ffffffff1660e01b815260040161322797969594939291906155c4565b6020604051808303815f875af1158015613243573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132679190615124565b5f818152600960205260409020549091506001600160a01b031681816132a3576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b031682816132dd576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff19919091169083600381111561333b5761333b614672565b02179055506040820151816002015560608201518160030190600261336192919061453f565b506080820151600582015560a082015160068201805460c085015160ff16600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560e082015160078201906133ba9082615618565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906134229082615618565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b90613488908d9089908d906004016156cd565b6020604051808303815f875af11580156134a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c89190615099565b6134e557604051630d8dbe2560e01b815260040160405180910390fd5b6134f560808c0160608d016145b3565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b60405161352f929190614da7565b60405180910390a2895f5160206159815f395f51905f525f6001604051613557929190614e41565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff168181600681111561359057613590614672565b036135b557826001826040516337e1404160e01b815260040161098893929190614df9565b60058160068111156135c9576135c9614672565b036135ea5760405163462c7bed60e01b815260048101849052602401610988565b60068160068111156135fe576135fe614672565b0361361f57604051633de16e3560e11b815260048101849052602401610988565b5f61362a8483613b11565b935090508061364f57604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d81111561369857613698614672565b0217905550835f5160206159815f395f51905f528360066040516136bd929190614e41565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb83856040516136f7929190615712565b60405180910390a25050919050565b61370e61382d565b6001600160a01b0381161580159061373357505f546001600160a01b03828116911614155b8190613753576040516375ac4eb760e11b815260040161098891906145f9565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab09083906145f9565b6001600160a01b0381165f90815260076020526040902054819060ff16156137da5760405163b29d459560e01b815260040161098891906145f9565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab09083906145f9565b33613836611688565b6001600160a01b0316146112fe573360405163118cdaa760e01b815260040161098891906145f9565b803561387e5760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138a25760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138c65760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b61394e61429f565b610acc816142c4565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d8111156139ef576139ef614672565b1480613a0c5750600281600d811115613a0a57613a0a614672565b145b15613a44575f5b604051908082528060200260200182016040528015613a3c578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613aaa57506040513d5f823e601f3d908101601f19168201604052613aa791908101906157e9565b60015b613a3c575f613a13565b613b0c83846001600160a01b031663a9059cbb8585604051602401613ada9291906158ae565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506142cc565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613b8b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613baf9190615124565b90506001856006811115613bc557613bc5614672565b148015613bd157508042115b15613be457600180935093505050613c92565b6002856006811115613bf857613bf8614672565b148015613c055750815142115b15613c195760016003935093505050613c92565b6003856006811115613c2d57613c2d614672565b148015613c3d5750816020015142115b15613c515760016006935093505050613c92565b6004856006811115613c6557613c65614672565b148015613c755750816040015142115b15613c89576001600a935093505050613c92565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613cde573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d0591908101906157e9565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613da4576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d70908890889086906004016158c7565b5f604051808303815f87803b158015613d87575f5ffd5b505af1158015613d99573d5f5f3e3d5ffd5b505050505050505050565b825f03613e45575f858152601060205260409020546001600160a01b03168015613ddc57613ddc6001600160a01b0383168285613ab4565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e10908990899087906004016158c7565b5f604051808303815f87803b158015613e27575f5ffd5b505af1158015613e39573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613e8557506001600160a01b03811615155b15613ec157612710613e9b61ffff8416876150ee565b613ea59190615105565b92508215613ec157613ec16001600160a01b0385168285613ab4565b5f613ecc848761513b565b90505f876001600160401b03811115613ee757613ee7614e5c565b604051908082528060200260200182016040528015613f10578160200160208202803683370190505b5090505f613f1e8984615105565b90505f805b8a811015613f5d5782848281518110613f3e57613f3e61504a565b6020908102919091010152613f538383614e2e565b9150600101613f23565b505f613f69828661513b565b90508015613fa6578084613f7e60018e61513b565b81518110613f8e57613f8e61504a565b60200260200101818151613fa29190614e2e565b9052505b600154613fc0906001600160a01b038b811691168761432f565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b815260040161400493929190615927565b5f604051808303815f87803b15801561401b575f5ffd5b505af115801561402d573d5f5f3e3d5ffd5b505060015461404b92506001600160a01b038c81169250165f61432f565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d8660405161407d92919061595c565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b81526004016140c9939291906158c7565b5f604051808303815f87803b1580156140e0575f5ffd5b505af11580156140f2573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff169081600681111561412957614129614672565b0361414e57826001826040516337e1404160e01b815260040161098893929190614df9565b600581600681111561416257614162614672565b036141835760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561419757614197614672565b036141b857604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561420157614201614672565b0217905550825f5160206159815f395f51905f52826006604051614226929190614e41565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612c14929190615712565b6040516001600160a01b0384811660248301528381166044830152606482018390526142999186918216906323b872dd90608401613ada565b50505050565b6142a76143bf565b6112fe57604051631afcd79f60e31b815260040160405180910390fd5b612c2961429f565b5f5f60205f8451602086015f885af1806142eb576040513d5f823e3d81fd5b50505f513d9150811561430257806001141561430f565b6001600160a01b0384163b155b156142995783604051635274afe760e01b815260040161098891906145f9565b5f836001600160a01b031663095ea7b384846040516024016143529291906158ae565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050905061438b84826143d8565b614299576143b584856001600160a01b031663095ea7b3865f604051602401613ada9291906158ae565b61429984826142cc565b5f6143c861391c565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f519050828015614417575081156144095780600114614417565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f815260200161444961456d565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b60018301918390821561452f579160200282015f5b838211156144fd57833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144b3565b801561452d5782816101000a81549063ffffffff02191690556004016020816003010492830192600103026144fd565b505b5061453b92915061458b565b5090565b826002810192821561452f579160200282015b8281111561452f578251825591602001919060010190614552565b60405180604001604052806002906020820280368337509192915050565b5b8082111561453b575f815560010161458c565b6001600160a01b0381168114610acc575f5ffd5b5f602082840312156145c3575f5ffd5b81356145ce8161459f565b9392505050565b5f602082840312156145e5575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b80356004811061461b575f5ffd5b919050565b5f5f60408385031215614631575f5ffd5b61463a8361460d565b946020939093013593505050565b5f60608284031215610ef1575f5ffd5b5f60608284031215614668575f5ffd5b6145ce8383614648565b634e487b7160e01b5f52602160045260245ffd5b600e811061469657614696614672565b9052565b602081016139408284614686565b6004811061469657614696614672565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e81526146f6602082018f6146a8565b8c60408201528b606082015261470f608082018c6145ec565b60ff8a1660a08201526101c060c08201525f61472f6101c083018b6146b8565b61473c60e084018b6145ec565b61474a61010084018a6145ec565b876101208401528661014084015282810361016084015261476b81876146b8565b91505061477c6101808301856145ec565b8215156101a08301529f9e505050505050505050505050505050565b805f5b600281101561429957815184526020938401939091019060010161479b565b805182525f60208201516147d160208501826146a8565b506040820151604084015260608201516147ee6060850182614798565b50608082015160a084015260a082015161480b60c08501826145ec565b5060c082015160ff811660e08501525060e08201516102006101008501526148376102008501826146b8565b905061010083015161484d6101208601826145ec565b506101208301516148626101408601826145ec565b506101408301516101608501526101608301516101808501526101808301518482036101a086015261489482826146b8565b9150506101a08301516148ab6101c08601826145ec565b506101c08301518015156101e0860152613a3c565b602081525f6145ce60208301846147ba565b803561461b8161459f565b5f5f5f5f5f5f5f610120888a0312156148f4575f5ffd5b87356148ff8161459f565b9650602088013561490f8161459f565b9550604088013561491f8161459f565b9450606088013561492f8161459f565b9350608088013561493f8161459f565b925060a088013591506149558960c08a01614648565b905092959891949750929550565b803560ff8116811461461b575f5ffd5b5f60208284031215614983575f5ffd5b6145ce82614963565b602081525f6145ce60208301846146b8565b5f5f604083850312156149af575f5ffd5b8235915060208301356149c18161459f565b809150509250929050565b5f5f604083850312156149dd575f5ffd5b50508035926020909101359150565b5f5f83601f8401126149fc575f5ffd5b5081356001600160401b03811115614a12575f5ffd5b602083019150836020828501011115613c92575f5ffd5b5f5f5f60408486031215614a3b575f5ffd5b614a4484614963565b925060208401356001600160401b03811115614a5e575f5ffd5b614a6a868287016149ec565b9497909650939450505050565b81518152602080830151908201526040808301519082015260608101613940565b8215158152604081016145ce6020830184614686565b5f5f5f5f5f60608688031215614ac2575f5ffd5b8535945060208601356001600160401b03811115614ade575f5ffd5b614aea888289016149ec565b90955093505060408601356001600160401b03811115614b08575f5ffd5b614b14888289016149ec565b969995985093965092949392505050565b5f60208284031215614b35575f5ffd5b81356001600160401b03811115614b4a575f5ffd5b820161010081850312156145ce575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614bb660e08401826145ec565b50610100830151614bce61010084018261ffff169052565b50610120830151614be661012084018261ffff169052565b50610140830151614bfe61014084018261ffff169052565b50610160830151614c1661016084018261ffff169052565b50610180830151614c2e61018084018261ffff169052565b506101a0830151614c486101a084018263ffffffff169052565b506101c0830151614c626101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614c7f575f5ffd5b8735965060208801356001600160401b03811115614c9b575f5ffd5b614ca78a828b016149ec565b90975095505060408801356001600160401b03811115614cc5575f5ffd5b614cd18a828b016149ec565b90955093505060608801356001600160401b03811115614cef575f5ffd5b614cfb8a828b016149ec565b989b979a50959850939692959293505050565b5f5f60408385031215614d1f575f5ffd5b82359150614d2f60208401614963565b90509250929050565b6007811061469657614696614672565b602081016139408284614d38565b5f6101e0828403128015614d68575f5ffd5b509092915050565b5f5f60608385031215614d81575f5ffd5b614d8a8361460d565b915083606084011115614d9b575f5ffd5b50926020919091019150565b828152604060208201525f614dbf60408301846147ba565b949350505050565b600181811c90821680614ddb57607f821691505b602082108103610ef157634e487b7160e01b5f52602260045260245ffd5b83815260608101614e0d6020830185614d38565b614dbf6040830184614d38565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561394057613940614e1a565b60408101614e4f8285614d38565b6145ce6020830184614d38565b634e487b7160e01b5f52604160045260245ffd5b601f821115613b0c57805f5260205f20601f840160051c81016020851015614e955750805b601f840160051c820191505b81811015614eb4575f8155600101614ea1565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614ee657614ee6614e5c565b614efa83614ef48354614dc7565b83614e70565b5f601f841160018114614f26575f8515614f145750838201355b614f1e8682614ebb565b845550614eb4565b5f83815260208120601f198716915b82811015614f555786850135825560209485019460019092019101614f35565b5086821015614f71575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60ff84168152604060208201525f614fc7604083018486614f83565b95945050505050565b5f8151808452602084019350602083015f5b828110156150095781516001600160a01b0316865260209586019590910190600101614fe2565b5093949350505050565b848152836020820152608060408201525f6150316080830185614fd0565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f614417606083018486614f83565b8015158114610acc575f5ffd5b5f602082840312156150a9575f5ffd5b81516145ce8161508c565b602081525f614dbf602083018486614f83565b5f602082840312156150d7575f5ffd5b6145ce8261460d565b6020810161394082846146a8565b808202811582820484141761394057613940614e1a565b5f8261511f57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215615134575f5ffd5b5051919050565b8181038181111561394057613940614e1a565b858152606060208201525f615167606083018688614f83565b828103604084015261517a818587614f83565b98975050505050505050565b604081525f615199604083018688614f83565b82810360208401526151ac818587614f83565b979650505050505050565b61ffff81168114610acc575f5ffd5b803561461b816151b7565b5f602082840312156151e1575f5ffd5b81356145ce816151b7565b63ffffffff81168114610acc575f5ffd5b803561461b816151ec565b5f60208284031215615218575f5ffd5b81356145ce816151ec565b5f81356139408161459f565b5f8135613940816151b7565b5f8135613940816151ec565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c08201356006820155600781016152b761529a60e08501615223565b82546001600160a01b0319166001600160a01b0391909116178255565b6152e76152c7610100850161522f565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6153176152f7610120850161522f565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b615347615327610140850161522f565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b615377615357610160850161522f565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6153a7615387610180850161522f565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b50600881016153d36153bc6101a0850161523b565b825463ffffffff191663ffffffff91909116178255565b613b0c6153e36101c0850161523b565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e0810161545660e084016148d2565b61546360e08401826145ec565b5061547161010084016151c6565b61ffff1661010083015261548861012084016151c6565b61ffff1661012083015261549f61014084016151c6565b61ffff166101408301526154b661016084016151c6565b61ffff166101608301526154cd61018084016151c6565b61ffff166101808301526154e46101a084016151fd565b63ffffffff166101a08301526154fd6101c084016151fd565b63ffffffff81166101c0840152614c62565b6040810181835f5b600281101561554657813561552b816151ec565b63ffffffff1683526020928301929190910190600101615517565b50505092915050565b5f6001820161556057615560614e1a565b5060010190565b5f5f8335601e1984360301811261557c575f5ffd5b8301803591506001600160401b03821115615595575f5ffd5b602001915036819003821315613c92575f5ffd5b5f602082840312156155b9575f5ffd5b81356145ce8161508c565b87815286602082015260a060408201525f6155e260a08301886146b8565b82810360608401526155f5818789614f83565b9050828103608084015261560a818587614f83565b9a9950505050505050505050565b81516001600160401b0381111561563157615631614e5c565b6156458161563f8454614dc7565b84614e70565b6020601f821160018114615672575f83156156605750848201515b61566a8482614ebb565b855550614eb4565b5f84815260208120601f198516915b828110156156a15787850151825560209485019460019092019101615681565b50848210156156be57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561570757815163ffffffff168352602092830192909101906001016156e2565b505050949350505050565b604081016157208285614d38565b6145ce6020830184614686565b604051601f8201601f191681016001600160401b038111828210171561575557615755614e5c565b604052919050565b5f6001600160401b0382111561577557615775614e5c565b5060051b60200190565b5f82601f83011261578e575f5ffd5b81516157a161579c8261575d565b61572d565b8082825260208201915060208360051b8601019250858311156157c2575f5ffd5b602085015b838110156157df5780518352602092830192016157c7565b5095945050505050565b5f5f604083850312156157fa575f5ffd5b82516001600160401b0381111561580f575f5ffd5b8301601f8101851361581f575f5ffd5b805161582d61579c8261575d565b8082825260208201915060208360051b85010192508783111561584e575f5ffd5b6020840193505b828410156158795783516158688161459f565b825260209384019390910190615855565b8095505050505060208301516001600160401b03811115615898575f5ffd5b6158a48582860161577f565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f6158df6060830185614fd0565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b82811015615009578151865260209586019590910190600101615909565b6001600160a01b03841681526060602082018190525f9061594a90830185614fd0565b828103604084015261441781856158f7565b604081525f61596e6040830185614fd0565b8281036020840152614fc781856158f756fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", - "deployedBytecode": "0x608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e03660046145b3565b61092e565b005b61030f6102f53660046145d5565b5f908152600960205260409020546001600160a01b031690565b60405161031c91906145f9565b60405180910390f35b61030f6103333660046145d5565b60096020525f90815260409020546001600160a01b031681565b61036061035b366004614620565b6109da565b60405163ffffffff909116815260200161031c565b6102e56103833660046145b3565b610a16565b6102e5610396366004614658565b610abb565b6103bd6103a93660046145d5565b5f908152600f602052604090205460ff1690565b60405161031c919061469a565b6103dd6103d83660046145d5565b610acf565b60405161031c9e9d9c9b9a999897969594939291906146e6565b61040a6104053660046145d5565b610c7a565b60405161031c91906148c0565b6104366104253660046145d5565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e56104523660046148dd565b610ef7565b6102e56104653660046145d5565b611134565b6102e56104783660046145b3565b6111c3565b61049061048b366004614973565b611256565b60405161031c919061498c565b60045461030f906001600160a01b031681565b61043660055481565b6102e56112ed565b6102e56104cf36600461499e565b611300565b6102e56104e23660046145d5565b611389565b6102e56104f53660046149cc565b611488565b6102e5610508366004614a29565b61157c565b60015461030f906001600160a01b031681565b61030f611688565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b6105556116b6565b60405161031c9190614a77565b6102e56105703660046145d5565b6116fc565b6105556105833660046145d5565b61186a565b61059b6105963660046145d5565b6118c3565b60405161031c929190614a98565b61030f6105b73660046145d5565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614aae565b6118ea565b604051901515815260200161031c565b610436610602366004614b25565b611b82565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614b5c565b61030f6107673660046145d5565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614c69565b612106565b6102e56107a2366004614d0e565b612336565b6102e56107b53660046145b3565b6123f2565b6102e56107c83660046149cc565b612499565b6105e46107db3660046145b3565b60076020525f908152604090205460ff1681565b61043660065481565b6102e561080636600461499e565b612556565b6102e56108193660046145d5565b612610565b61084061082c3660046145d5565b5f908152600d602052604090205460ff1690565b60405161031c9190614d48565b6102e561085b366004614d56565b61264d565b6102e561086e3660046145b3565b6128da565b6102e5610881366004614d70565b612974565b60025461030f906001600160a01b031681565b6102e56108a73660046145b3565b612c21565b6108bf6108ba366004614b25565b612c5b565b60405161031c929190614da7565b6103bd6108db3660046145d5565b61356c565b6102e56108ee3660046145b3565b613706565b61030f6109013660046145d5565b600a6020525f90815260409020546001600160a01b031681565b6102e56109293660046145b3565b61379e565b61093661382d565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e61382d565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b815260040161098891906145f9565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab09083906145f9565b60405180910390a150565b610ac361382d565b610acc8161385f565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614dc7565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614dc7565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c82614421565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf614672565b6003811115610cd057610cd0614672565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152600160a01b900460ff166060820152600782018054608090920191610d5290614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90614dc7565b8015610dc95780601f10610da057610100808354040283529160200191610dc9565b820191905f5260205f20905b815481529060010190602001808311610dac57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e1a90614dc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690614dc7565b8015610e915780601f10610e6857610100808354040283529160200191610e91565b820191905f5260205f20905b815481529060010190602001808311610e7457829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610ef15760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f0061391c565b805490915060ff600160401b82041615906001600160401b03165f81158015610f265750825b90505f826001600160401b03166001148015610f415750303b155b905081158015610f4f575080155b15610f6d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f9757845460ff60401b1916600160401b1785555b610fa033613946565b610fa987612610565b610fb28b613706565b610fbb8a6128da565b610fc48961092e565b610fcd88610a16565b610fd68661385f565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110bf611688565b6001600160a01b03168c6001600160a01b0316146110e0576110e08c612c21565b831561112657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61113c61382d565b5f8181526009602052604090205481906001600160a01b0316611175576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111cb61382d565b6001600160a01b0381165f90815260076020526040902054819060ff16611206576040516321ac7c5f60e01b815260040161098891906145f9565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab09083906145f9565b600b6020525f90815260409020805461126e90614dc7565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90614dc7565b80156112e55780601f106112bc576101008083540402835291602001916112e5565b820191905f5260205f20905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b6112f561382d565b6112fe5f613957565b565b61130861382d565b6001600160a01b0381161580159061133957505f828152600a60205260409020546001600160a01b03828116911614155b829061135b576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113b35760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113d8576113d8614672565b146113fd57816001826040516337e1404160e01b815260040161098893929190614df9565b5f828152600d60205260409020805460ff191660021790556015546114229042614e2e565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f5160206159815f395f51905f526001600260405161147c929190614e41565b60405180910390a25050565b5f546001600160a01b031633146114b25760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff1660028160068111156114e2576114e2614672565b1461150757836002826040516337e1404160e01b815260040161098893929190614df9565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f5160206159815f395f51905f526002600360405161156e929190614e41565b60405180910390a250505050565b61158461382d565b806115c05760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b60ff83165f908152600b6020526040902080546115dc90614dc7565b15905061162b5760405162461bcd60e51b815260206004820152601b60248201527f506172616d53657420616c7265616479207265676973746572656400000000006044820152606401610988565b60ff83165f908152600b60205260409020611647828483614ecf565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161167b93929190614fab565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6116d760405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff16600681600681111561172157611721614672565b14829061174457604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c60205260409020548281611775576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c6020526040812081905561178f846139c7565b5f858152601160205260409020546002549192506001600160a01b03908116916117bc9183911685613ab4565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b697906117f2908890879087908790600401615013565b5f604051808303815f87803b158015611809575f5ffd5b505af115801561181b573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a0731784845160405161185b929190918252602082015260400190565b60405180910390a25050505050565b61188b60405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118e08482613b11565b9250925050915091565b5f5f6118f587610c7a565b5f888152600d602052604090205490915060ff16600381600681111561191d5761191d614672565b1488600383909192611945576040516337e1404160e01b815260040161098893929190614df9565b5050505f888152600e60209081526040918290208251606081018452815481526001820154928101839052600290910154928101929092528990428110156119a9576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119e05760405163017e35e560e71b815260048101929092526024820152604401610988565b5050610160830151899015611a0b57604051637eb9cea960e11b815260040161098891815260200190565b505f8888604051611a1d92919061505e565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff19166004179055601754909150611a5f9042614e2e565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611aac908d9085908c908c9060040161506d565b6020604051808303815f875af1158015611ac8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aec9190615099565b9450888886611b1057604051632f9f8ab960e01b81526004016109889291906150b4565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611b449291906150b4565b60405180910390a2895f5160206159815f395f51905f5260036004604051611b6d929190614e41565b60405180910390a25050505095945050505050565b5f80601281611b9460208601866150c7565b6003811115611ba557611ba5614672565b6003811115611bb657611bb6614672565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611bdd579050505050505090505f81600160028110611c3457611c3461504a565b602002015163ffffffff1611835f016020810190611c5291906150c7565b90611c715760405163286c068d60e11b815260040161098891906150e0565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611d9c576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611d7b91906150c7565b90611d9a5760405163010b971d60e31b815260040161098891906150e0565b505b6101c081015163ffffffff1615611deb576101c081015184519063ffffffff9081169082161015611de957604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611e185760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611e369161ffff16906150ee565b611e409190615105565b61271061ffff1683610160015161ffff16601560010154611e6191906150ee565b611e6b9190615105565b61271061ffff1684610140015161ffff1660155f0154611e8b91906150ee565b611e959190615105565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611ee1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f059190615124565b611f0f9190614e2e565b611f19919061513b565b611f239190614e2e565b611f2d9190614e2e565b611f379190614e2e565b90505f611f4560018661513b565b611f509060026150ee565b611f5b9060026150ee565b611f66906006614e2e565b90505f85845f0151611f7891906150ee565b905081868560200151611f8b91906150ee565b611f9591906150ee565b611f9f9082614e2e565b90506001861115611fe7576002611fb760018861513b565b611fc190886150ee565b8560400151611fd091906150ee565b611fda9190615105565b611fe49082614e2e565b90505b81868560c00151611ff891906150ee565b61200291906150ee565b61200c9082614e2e565b90508286856060015161201f91906150ee565b61202991906150ee565b6120339082614e2e565b905084846080015161204591906150ee565b61204f9082614e2e565b9050600185111561209757600261206760018761513b565b61207190876150ee565b856040015161208091906150ee565b61208a9190615105565b6120949082614e2e565b90505b60a08401516120a69082614e2e565b610100850151909150612710906120c19061ffff1682614e2e565b6120cb90836150ee565b6120d59190615105565b975087806120f957604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f61211189610c7a565b5f8a8152600d602052604090205490915060ff16600481600681111561213957612139614672565b148a600483909192612161576040516337e1404160e01b815260040161098893929190614df9565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b90428110156121c4576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016121e18a8c83614ecf565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b60405161222592919061505e565b6040519081900381206001600160e01b031960e084901b168252612253918c908c908c908c9060040161514e565b602060405180830381865afa15801561226e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122929190615099565b93508989856122b657604051632f9f8ab960e01b81526004016109889291906150b4565b50506122c18b613c99565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b6040516122f79493929190615186565b60405180910390a28a5f5160206159815f395f51905f5260046005604051612320929190614e41565b60405180910390a2505050979650505050505050565b5f546001600160a01b031633148061235857506003546001600160a01b031633145b61237557604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff1611801561238b5750600d60ff821611155b6123d05760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b6123ee828260ff16600d8111156123e9576123e9614672565b614105565b5050565b6123fa61382d565b6001600160a01b0381166124505760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b031633146124c4576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b15801561250e575f5ffd5b505af1158015612520573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161147c91815260200190565b61255e61382d565b6001600160a01b0381161580159061258f57505f828152600960205260409020546001600160a01b03828116911614155b82906125b1576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b61261861382d565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b61265561382d565b61271061266a610120830161010084016151d1565b61ffff161115612682610120830161010084016151d1565b906126a7576040516301027fc160e21b815261ffff9091166004820152602401610988565b506127106126bd610140830161012084016151d1565b61ffff1611156126d5610140830161012084016151d1565b906126fa576040516301027fc160e21b815261ffff9091166004820152602401610988565b50612710612710610160830161014084016151d1565b61ffff161115612728610160830161014084016151d1565b9061274d57604051633239953960e01b815261ffff9091166004820152602401610988565b50612710612763610180830161016084016151d1565b61ffff16111561277b610180830161016084016151d1565b906127a057604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127b66101a0830161018084016151d1565b61ffff1611156127ce6101a0830161018084016151d1565b906127f357604051633239953960e01b815261ffff9091166004820152602401610988565b50612806610140820161012083016151d1565b61ffff16158061282f57505f612823610100830160e084016145b3565b6001600160a01b031614155b61284c5760405163015f92ff60e51b815260040160405180910390fd5b61285e6101e082016101c08301615208565b63ffffffff166128766101c083016101a08401615208565b63ffffffff16101561289b576040516392f55c6560e01b815260040160405180910390fd5b8060186128a88282615247565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab09190615405565b6128e261382d565b6001600160a01b0381161580159061290857506001546001600160a01b03828116911614155b8190612928576040516320252f0b60e01b815260040161098891906145f9565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab09083906145f9565b61297c61382d565b6129896020820182615208565b63ffffffff1661299f6040830160208401615208565b63ffffffff16101580156129c457505f6129bc6020830183615208565b63ffffffff16115b6129e157604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612b1a576101a081015163ffffffff16612aca6040840160208501615208565b63ffffffff161015612ae26040840160208501615208565b826101a001519091612b1757604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612b91576101c081015163ffffffff16612b446020840184615208565b63ffffffff161015612b596020840184615208565b826101c001519091612b8e5760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612ba757612ba7614672565b6003811115612bb857612bb8614672565b815260208101919091526040015f20612bd291600261449e565b50826003811115612be557612be5614672565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612c14919061550f565b60405180910390a2505050565b612c2961382d565b6001600160a01b038116612c52575f604051631e4fbdf760e01b815260040161098891906145f9565b610acc81613957565b5f612c64614421565b5f601281612c7560208701876150c7565b6003811115612c8657612c86614672565b6003811115612c9757612c97614672565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612cbe579050505050505090505f81600160028110612d1557612d1561504a565b602002015163ffffffff1611845f016020810190612d3391906150c7565b90612d525760405163286c068d60e11b815260040161098891906150e0565b50602084013542811015612d7c57604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612daa5760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612dc242604089013561513b565b612dcc9190614e2e565b612dd69190614e2e565b905060055481108190612dff576040516313b783af60e21b815260040161098891815260200190565b5060075f612e1360808801606089016145b3565b6001600160a01b0316815260208101919091526040015f205460ff16612e3f60808701606088016145b3565b90612e5e5760405163295a6a6f60e11b815260040161098891906145f9565b505f612e6986611b82565b60068054965090915085905f612e7e8361554f565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612f599190890135614e2e565b5f878152600e6020908152604090912060010191909155818652612f7f908801886150c7565b85602001906003811115612f9557612f95614672565b90816003811115612fa857612fa8614672565b905250436040808701919091528051808201825290602089019060029083908390808284375f920191909152505050606080870191909152612ff090608089019089016145b3565b6001600160a01b031660a08087019190915261301190880160808901614973565b60ff1660c08087019190915261302990880188615567565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526130769061010089019089016155a9565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a086018190526004546130c6916001600160a01b03909116903085614260565b5f600b816130da60a08b0160808c01614973565b60ff1660ff1681526020019081526020015f2080546130f890614dc7565b80601f016020809104026020016040519081016040528092919081815260200182805461312490614dc7565b801561316f5780601f106131465761010080835404028352916020019161316f565b820191905f5260205f20905b81548152906001019060200180831161315257829003601f168201915b505050505090505f8151116131c65760405162461bcd60e51b815260206004820152601c60248201527f42465620706172616d20736574206e6f742072656769737465726564000000006044820152606401610988565b5f6131d760808a0160608b016145b3565b6001600160a01b031663fefd9a8b8985856131f560a08f018f615567565b8f8060c001906132059190615567565b6040518863ffffffff1660e01b815260040161322797969594939291906155c4565b6020604051808303815f875af1158015613243573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132679190615124565b5f818152600960205260409020549091506001600160a01b031681816132a3576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b031682816132dd576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff19919091169083600381111561333b5761333b614672565b02179055506040820151816002015560608201518160030190600261336192919061453f565b506080820151600582015560a082015160068201805460c085015160ff16600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560e082015160078201906133ba9082615618565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906134229082615618565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b90613488908d9089908d906004016156cd565b6020604051808303815f875af11580156134a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c89190615099565b6134e557604051630d8dbe2560e01b815260040160405180910390fd5b6134f560808c0160608d016145b3565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b60405161352f929190614da7565b60405180910390a2895f5160206159815f395f51905f525f6001604051613557929190614e41565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff168181600681111561359057613590614672565b036135b557826001826040516337e1404160e01b815260040161098893929190614df9565b60058160068111156135c9576135c9614672565b036135ea5760405163462c7bed60e01b815260048101849052602401610988565b60068160068111156135fe576135fe614672565b0361361f57604051633de16e3560e11b815260048101849052602401610988565b5f61362a8483613b11565b935090508061364f57604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d81111561369857613698614672565b0217905550835f5160206159815f395f51905f528360066040516136bd929190614e41565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb83856040516136f7929190615712565b60405180910390a25050919050565b61370e61382d565b6001600160a01b0381161580159061373357505f546001600160a01b03828116911614155b8190613753576040516375ac4eb760e11b815260040161098891906145f9565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab09083906145f9565b6001600160a01b0381165f90815260076020526040902054819060ff16156137da5760405163b29d459560e01b815260040161098891906145f9565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab09083906145f9565b33613836611688565b6001600160a01b0316146112fe573360405163118cdaa760e01b815260040161098891906145f9565b803561387e5760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138a25760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138c65760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b61394e61429f565b610acc816142c4565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d8111156139ef576139ef614672565b1480613a0c5750600281600d811115613a0a57613a0a614672565b145b15613a44575f5b604051908082528060200260200182016040528015613a3c578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613aaa57506040513d5f823e601f3d908101601f19168201604052613aa791908101906157e9565b60015b613a3c575f613a13565b613b0c83846001600160a01b031663a9059cbb8585604051602401613ada9291906158ae565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506142cc565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613b8b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613baf9190615124565b90506001856006811115613bc557613bc5614672565b148015613bd157508042115b15613be457600180935093505050613c92565b6002856006811115613bf857613bf8614672565b148015613c055750815142115b15613c195760016003935093505050613c92565b6003856006811115613c2d57613c2d614672565b148015613c3d5750816020015142115b15613c515760016006935093505050613c92565b6004856006811115613c6557613c65614672565b148015613c755750816040015142115b15613c89576001600a935093505050613c92565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613cde573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d0591908101906157e9565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613da4576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d70908890889086906004016158c7565b5f604051808303815f87803b158015613d87575f5ffd5b505af1158015613d99573d5f5f3e3d5ffd5b505050505050505050565b825f03613e45575f858152601060205260409020546001600160a01b03168015613ddc57613ddc6001600160a01b0383168285613ab4565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e10908990899087906004016158c7565b5f604051808303815f87803b158015613e27575f5ffd5b505af1158015613e39573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613e8557506001600160a01b03811615155b15613ec157612710613e9b61ffff8416876150ee565b613ea59190615105565b92508215613ec157613ec16001600160a01b0385168285613ab4565b5f613ecc848761513b565b90505f876001600160401b03811115613ee757613ee7614e5c565b604051908082528060200260200182016040528015613f10578160200160208202803683370190505b5090505f613f1e8984615105565b90505f805b8a811015613f5d5782848281518110613f3e57613f3e61504a565b6020908102919091010152613f538383614e2e565b9150600101613f23565b505f613f69828661513b565b90508015613fa6578084613f7e60018e61513b565b81518110613f8e57613f8e61504a565b60200260200101818151613fa29190614e2e565b9052505b600154613fc0906001600160a01b038b811691168761432f565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b815260040161400493929190615927565b5f604051808303815f87803b15801561401b575f5ffd5b505af115801561402d573d5f5f3e3d5ffd5b505060015461404b92506001600160a01b038c81169250165f61432f565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d8660405161407d92919061595c565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b81526004016140c9939291906158c7565b5f604051808303815f87803b1580156140e0575f5ffd5b505af11580156140f2573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff169081600681111561412957614129614672565b0361414e57826001826040516337e1404160e01b815260040161098893929190614df9565b600581600681111561416257614162614672565b036141835760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561419757614197614672565b036141b857604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561420157614201614672565b0217905550825f5160206159815f395f51905f52826006604051614226929190614e41565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612c14929190615712565b6040516001600160a01b0384811660248301528381166044830152606482018390526142999186918216906323b872dd90608401613ada565b50505050565b6142a76143bf565b6112fe57604051631afcd79f60e31b815260040160405180910390fd5b612c2961429f565b5f5f60205f8451602086015f885af1806142eb576040513d5f823e3d81fd5b50505f513d9150811561430257806001141561430f565b6001600160a01b0384163b155b156142995783604051635274afe760e01b815260040161098891906145f9565b5f836001600160a01b031663095ea7b384846040516024016143529291906158ae565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050905061438b84826143d8565b614299576143b584856001600160a01b031663095ea7b3865f604051602401613ada9291906158ae565b61429984826142cc565b5f6143c861391c565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f519050828015614417575081156144095780600114614417565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f815260200161444961456d565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b60018301918390821561452f579160200282015f5b838211156144fd57833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144b3565b801561452d5782816101000a81549063ffffffff02191690556004016020816003010492830192600103026144fd565b505b5061453b92915061458b565b5090565b826002810192821561452f579160200282015b8281111561452f578251825591602001919060010190614552565b60405180604001604052806002906020820280368337509192915050565b5b8082111561453b575f815560010161458c565b6001600160a01b0381168114610acc575f5ffd5b5f602082840312156145c3575f5ffd5b81356145ce8161459f565b9392505050565b5f602082840312156145e5575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b80356004811061461b575f5ffd5b919050565b5f5f60408385031215614631575f5ffd5b61463a8361460d565b946020939093013593505050565b5f60608284031215610ef1575f5ffd5b5f60608284031215614668575f5ffd5b6145ce8383614648565b634e487b7160e01b5f52602160045260245ffd5b600e811061469657614696614672565b9052565b602081016139408284614686565b6004811061469657614696614672565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e81526146f6602082018f6146a8565b8c60408201528b606082015261470f608082018c6145ec565b60ff8a1660a08201526101c060c08201525f61472f6101c083018b6146b8565b61473c60e084018b6145ec565b61474a61010084018a6145ec565b876101208401528661014084015282810361016084015261476b81876146b8565b91505061477c6101808301856145ec565b8215156101a08301529f9e505050505050505050505050505050565b805f5b600281101561429957815184526020938401939091019060010161479b565b805182525f60208201516147d160208501826146a8565b506040820151604084015260608201516147ee6060850182614798565b50608082015160a084015260a082015161480b60c08501826145ec565b5060c082015160ff811660e08501525060e08201516102006101008501526148376102008501826146b8565b905061010083015161484d6101208601826145ec565b506101208301516148626101408601826145ec565b506101408301516101608501526101608301516101808501526101808301518482036101a086015261489482826146b8565b9150506101a08301516148ab6101c08601826145ec565b506101c08301518015156101e0860152613a3c565b602081525f6145ce60208301846147ba565b803561461b8161459f565b5f5f5f5f5f5f5f610120888a0312156148f4575f5ffd5b87356148ff8161459f565b9650602088013561490f8161459f565b9550604088013561491f8161459f565b9450606088013561492f8161459f565b9350608088013561493f8161459f565b925060a088013591506149558960c08a01614648565b905092959891949750929550565b803560ff8116811461461b575f5ffd5b5f60208284031215614983575f5ffd5b6145ce82614963565b602081525f6145ce60208301846146b8565b5f5f604083850312156149af575f5ffd5b8235915060208301356149c18161459f565b809150509250929050565b5f5f604083850312156149dd575f5ffd5b50508035926020909101359150565b5f5f83601f8401126149fc575f5ffd5b5081356001600160401b03811115614a12575f5ffd5b602083019150836020828501011115613c92575f5ffd5b5f5f5f60408486031215614a3b575f5ffd5b614a4484614963565b925060208401356001600160401b03811115614a5e575f5ffd5b614a6a868287016149ec565b9497909650939450505050565b81518152602080830151908201526040808301519082015260608101613940565b8215158152604081016145ce6020830184614686565b5f5f5f5f5f60608688031215614ac2575f5ffd5b8535945060208601356001600160401b03811115614ade575f5ffd5b614aea888289016149ec565b90955093505060408601356001600160401b03811115614b08575f5ffd5b614b14888289016149ec565b969995985093965092949392505050565b5f60208284031215614b35575f5ffd5b81356001600160401b03811115614b4a575f5ffd5b820161010081850312156145ce575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614bb660e08401826145ec565b50610100830151614bce61010084018261ffff169052565b50610120830151614be661012084018261ffff169052565b50610140830151614bfe61014084018261ffff169052565b50610160830151614c1661016084018261ffff169052565b50610180830151614c2e61018084018261ffff169052565b506101a0830151614c486101a084018263ffffffff169052565b506101c0830151614c626101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614c7f575f5ffd5b8735965060208801356001600160401b03811115614c9b575f5ffd5b614ca78a828b016149ec565b90975095505060408801356001600160401b03811115614cc5575f5ffd5b614cd18a828b016149ec565b90955093505060608801356001600160401b03811115614cef575f5ffd5b614cfb8a828b016149ec565b989b979a50959850939692959293505050565b5f5f60408385031215614d1f575f5ffd5b82359150614d2f60208401614963565b90509250929050565b6007811061469657614696614672565b602081016139408284614d38565b5f6101e0828403128015614d68575f5ffd5b509092915050565b5f5f60608385031215614d81575f5ffd5b614d8a8361460d565b915083606084011115614d9b575f5ffd5b50926020919091019150565b828152604060208201525f614dbf60408301846147ba565b949350505050565b600181811c90821680614ddb57607f821691505b602082108103610ef157634e487b7160e01b5f52602260045260245ffd5b83815260608101614e0d6020830185614d38565b614dbf6040830184614d38565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561394057613940614e1a565b60408101614e4f8285614d38565b6145ce6020830184614d38565b634e487b7160e01b5f52604160045260245ffd5b601f821115613b0c57805f5260205f20601f840160051c81016020851015614e955750805b601f840160051c820191505b81811015614eb4575f8155600101614ea1565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614ee657614ee6614e5c565b614efa83614ef48354614dc7565b83614e70565b5f601f841160018114614f26575f8515614f145750838201355b614f1e8682614ebb565b845550614eb4565b5f83815260208120601f198716915b82811015614f555786850135825560209485019460019092019101614f35565b5086821015614f71575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60ff84168152604060208201525f614fc7604083018486614f83565b95945050505050565b5f8151808452602084019350602083015f5b828110156150095781516001600160a01b0316865260209586019590910190600101614fe2565b5093949350505050565b848152836020820152608060408201525f6150316080830185614fd0565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f614417606083018486614f83565b8015158114610acc575f5ffd5b5f602082840312156150a9575f5ffd5b81516145ce8161508c565b602081525f614dbf602083018486614f83565b5f602082840312156150d7575f5ffd5b6145ce8261460d565b6020810161394082846146a8565b808202811582820484141761394057613940614e1a565b5f8261511f57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215615134575f5ffd5b5051919050565b8181038181111561394057613940614e1a565b858152606060208201525f615167606083018688614f83565b828103604084015261517a818587614f83565b98975050505050505050565b604081525f615199604083018688614f83565b82810360208401526151ac818587614f83565b979650505050505050565b61ffff81168114610acc575f5ffd5b803561461b816151b7565b5f602082840312156151e1575f5ffd5b81356145ce816151b7565b63ffffffff81168114610acc575f5ffd5b803561461b816151ec565b5f60208284031215615218575f5ffd5b81356145ce816151ec565b5f81356139408161459f565b5f8135613940816151b7565b5f8135613940816151ec565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c08201356006820155600781016152b761529a60e08501615223565b82546001600160a01b0319166001600160a01b0391909116178255565b6152e76152c7610100850161522f565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b6153176152f7610120850161522f565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b615347615327610140850161522f565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b615377615357610160850161522f565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6153a7615387610180850161522f565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b50600881016153d36153bc6101a0850161523b565b825463ffffffff191663ffffffff91909116178255565b613b0c6153e36101c0850161523b565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e0810161545660e084016148d2565b61546360e08401826145ec565b5061547161010084016151c6565b61ffff1661010083015261548861012084016151c6565b61ffff1661012083015261549f61014084016151c6565b61ffff166101408301526154b661016084016151c6565b61ffff166101608301526154cd61018084016151c6565b61ffff166101808301526154e46101a084016151fd565b63ffffffff166101a08301526154fd6101c084016151fd565b63ffffffff81166101c0840152614c62565b6040810181835f5b600281101561554657813561552b816151ec565b63ffffffff1683526020928301929190910190600101615517565b50505092915050565b5f6001820161556057615560614e1a565b5060010190565b5f5f8335601e1984360301811261557c575f5ffd5b8301803591506001600160401b03821115615595575f5ffd5b602001915036819003821315613c92575f5ffd5b5f602082840312156155b9575f5ffd5b81356145ce8161508c565b87815286602082015260a060408201525f6155e260a08301886146b8565b82810360608401526155f5818789614f83565b9050828103608084015261560a818587614f83565b9a9950505050505050505050565b81516001600160401b0381111561563157615631614e5c565b6156458161563f8454614dc7565b84614e70565b6020601f821160018114615672575f83156156605750848201515b61566a8482614ebb565b855550614eb4565b5f84815260208120601f198516915b828110156156a15787850151825560209485019460019092019101615681565b50848210156156be57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561570757815163ffffffff168352602092830192909101906001016156e2565b505050949350505050565b604081016157208285614d38565b6145ce6020830184614686565b604051601f8201601f191681016001600160401b038111828210171561575557615755614e5c565b604052919050565b5f6001600160401b0382111561577557615775614e5c565b5060051b60200190565b5f82601f83011261578e575f5ffd5b81516157a161579c8261575d565b61572d565b8082825260208201915060208360051b8601019250858311156157c2575f5ffd5b602085015b838110156157df5780518352602092830192016157c7565b5095945050505050565b5f5f604083850312156157fa575f5ffd5b82516001600160401b0381111561580f575f5ffd5b8301601f8101851361581f575f5ffd5b805161582d61579c8261575d565b8082825260208201915060208360051b85010192508783111561584e575f5ffd5b6020840193505b828410156158795783516158688161459f565b825260209384019390910190615855565b8095505050505060208301516001600160401b03811115615898575f5ffd5b6158a48582860161577f565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f6158df6060830185614fd0565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b82811015615009578151865260209586019590910190600101615909565b6001600160a01b03841681526060602082018190525f9061594a90830185614fd0565b828103604084015261441781856158f7565b604081525f61596e6040830185614fd0565b8281036020840152614fc781856158f756fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", + "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615a05806100d65f395ff3fe608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e03660046145d4565b61092e565b005b61030f6102f53660046145f6565b5f908152600960205260409020546001600160a01b031690565b60405161031c919061461a565b60405180910390f35b61030f6103333660046145f6565b60096020525f90815260409020546001600160a01b031681565b61036061035b366004614641565b6109da565b60405163ffffffff909116815260200161031c565b6102e56103833660046145d4565b610a16565b6102e5610396366004614679565b610abb565b6103bd6103a93660046145f6565b5f908152600f602052604090205460ff1690565b60405161031c91906146bb565b6103dd6103d83660046145f6565b610acf565b60405161031c9e9d9c9b9a99989796959493929190614707565b61040a6104053660046145f6565b610c7a565b60405161031c91906148e1565b6104366104253660046145f6565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e56104523660046148fe565b610ef7565b6102e56104653660046145f6565b611134565b6102e56104783660046145d4565b6111c3565b61049061048b366004614994565b611256565b60405161031c91906149ad565b60045461030f906001600160a01b031681565b61043660055481565b6102e56112ed565b6102e56104cf3660046149bf565b611300565b6102e56104e23660046145f6565b611389565b6102e56104f53660046149ed565b611488565b6102e5610508366004614a4a565b61157c565b60015461030f906001600160a01b031681565b61030f611688565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b6105556116b6565b60405161031c9190614a98565b6102e56105703660046145f6565b6116fc565b6105556105833660046145f6565b61186a565b61059b6105963660046145f6565b6118c3565b60405161031c929190614ab9565b61030f6105b73660046145f6565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614acf565b6118ea565b604051901515815260200161031c565b610436610602366004614b46565b611b82565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614b7d565b61030f6107673660046145f6565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614c8a565b612157565b6102e56107a2366004614d2f565b612387565b6102e56107b53660046145d4565b612443565b6102e56107c83660046149ed565b6124ea565b6105e46107db3660046145d4565b60076020525f908152604090205460ff1681565b61043660065481565b6102e56108063660046149bf565b6125a7565b6102e56108193660046145f6565b612661565b61084061082c3660046145f6565b5f908152600d602052604090205460ff1690565b60405161031c9190614d69565b6102e561085b366004614d77565b61269e565b6102e561086e3660046145d4565b61292b565b6102e5610881366004614d91565b6129c5565b60025461030f906001600160a01b031681565b6102e56108a73660046145d4565b612c72565b6108bf6108ba366004614b46565b612cac565b60405161031c929190614dc8565b6103bd6108db3660046145f6565b61358d565b6102e56108ee3660046145d4565b613727565b61030f6109013660046145f6565b600a6020525f90815260409020546001600160a01b031681565b6102e56109293660046145d4565b6137bf565b61093661384e565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e61384e565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b8152600401610988919061461a565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab090839061461a565b60405180910390a150565b610ac361384e565b610acc81613880565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614de8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614de8565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614de8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614de8565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c82614442565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf614693565b6003811115610cd057610cd0614693565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152600160a01b900460ff166060820152600782018054608090920191610d5290614de8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90614de8565b8015610dc95780601f10610da057610100808354040283529160200191610dc9565b820191905f5260205f20905b815481529060010190602001808311610dac57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e1a90614de8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690614de8565b8015610e915780601f10610e6857610100808354040283529160200191610e91565b820191905f5260205f20905b815481529060010190602001808311610e7457829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610ef15760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f0061393d565b805490915060ff600160401b82041615906001600160401b03165f81158015610f265750825b90505f826001600160401b03166001148015610f415750303b155b905081158015610f4f575080155b15610f6d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f9757845460ff60401b1916600160401b1785555b610fa033613967565b610fa987612661565b610fb28b613727565b610fbb8a61292b565b610fc48961092e565b610fcd88610a16565b610fd686613880565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110bf611688565b6001600160a01b03168c6001600160a01b0316146110e0576110e08c612c72565b831561112657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61113c61384e565b5f8181526009602052604090205481906001600160a01b0316611175576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111cb61384e565b6001600160a01b0381165f90815260076020526040902054819060ff16611206576040516321ac7c5f60e01b8152600401610988919061461a565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab090839061461a565b600b6020525f90815260409020805461126e90614de8565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90614de8565b80156112e55780601f106112bc576101008083540402835291602001916112e5565b820191905f5260205f20905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b6112f561384e565b6112fe5f613978565b565b61130861384e565b6001600160a01b0381161580159061133957505f828152600a60205260409020546001600160a01b03828116911614155b829061135b576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113b35760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113d8576113d8614693565b146113fd57816001826040516337e1404160e01b815260040161098893929190614e1a565b5f828152600d60205260409020805460ff191660021790556015546114229042614e4f565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f5160206159d95f395f51905f526001600260405161147c929190614e62565b60405180910390a25050565b5f546001600160a01b031633146114b25760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff1660028160068111156114e2576114e2614693565b1461150757836002826040516337e1404160e01b815260040161098893929190614e1a565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f5160206159d95f395f51905f526002600360405161156e929190614e62565b60405180910390a250505050565b61158461384e565b806115c05760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b60ff83165f908152600b6020526040902080546115dc90614de8565b15905061162b5760405162461bcd60e51b815260206004820152601b60248201527f506172616d53657420616c7265616479207265676973746572656400000000006044820152606401610988565b60ff83165f908152600b60205260409020611647828483614ef0565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161167b93929190614fcc565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6116d760405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff16600681600681111561172157611721614693565b14829061174457604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c60205260409020548281611775576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c6020526040812081905561178f846139e8565b5f858152601160205260409020546002549192506001600160a01b03908116916117bc9183911685613ad5565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b697906117f2908890879087908790600401615034565b5f604051808303815f87803b158015611809575f5ffd5b505af115801561181b573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a0731784845160405161185b929190918252602082015260400190565b60405180910390a25050505050565b61188b60405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118e08482613b32565b9250925050915091565b5f5f6118f587610c7a565b5f888152600d602052604090205490915060ff16600381600681111561191d5761191d614693565b1488600383909192611945576040516337e1404160e01b815260040161098893929190614e1a565b5050505f888152600e60209081526040918290208251606081018452815481526001820154928101839052600290910154928101929092528990428110156119a9576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119e05760405163017e35e560e71b815260048101929092526024820152604401610988565b5050610160830151899015611a0b57604051637eb9cea960e11b815260040161098891815260200190565b505f8888604051611a1d92919061507f565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff19166004179055601754909150611a5f9042614e4f565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611aac908d9085908c908c9060040161508e565b6020604051808303815f875af1158015611ac8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aec91906150ba565b9450888886611b1057604051632f9f8ab960e01b81526004016109889291906150d5565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611b449291906150d5565b60405180910390a2895f5160206159d95f395f51905f5260036004604051611b6d929190614e62565b60405180910390a25050505095945050505050565b5f80600b81611b9760a0860160808701614994565b60ff1660ff1681526020019081526020015f208054611bb590614de8565b905011611bd45760405162461bcd60e51b8152600401610988906150e8565b5f601281611be5602086018661511f565b6003811115611bf657611bf6614693565b6003811115611c0757611c07614693565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611c2e579050505050505090505f81600160028110611c8557611c8561506b565b602002015163ffffffff1611835f016020810190611ca3919061511f565b90611cc25760405163286c068d60e11b81526004016109889190615138565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611ded576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611dcc919061511f565b90611deb5760405163010b971d60e31b81526004016109889190615138565b505b6101c081015163ffffffff1615611e3c576101c081015184519063ffffffff9081169082161015611e3a57604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611e695760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611e879161ffff1690615146565b611e91919061515d565b61271061ffff1683610160015161ffff16601560010154611eb29190615146565b611ebc919061515d565b61271061ffff1684610140015161ffff1660155f0154611edc9190615146565b611ee6919061515d565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611f32573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f56919061517c565b611f609190614e4f565b611f6a9190615193565b611f749190614e4f565b611f7e9190614e4f565b611f889190614e4f565b90505f611f96600186615193565b611fa1906002615146565b611fac906002615146565b611fb7906006614e4f565b90505f85845f0151611fc99190615146565b905081868560200151611fdc9190615146565b611fe69190615146565b611ff09082614e4f565b90506001861115612038576002612008600188615193565b6120129088615146565b85604001516120219190615146565b61202b919061515d565b6120359082614e4f565b90505b81868560c001516120499190615146565b6120539190615146565b61205d9082614e4f565b9050828685606001516120709190615146565b61207a9190615146565b6120849082614e4f565b90508484608001516120969190615146565b6120a09082614e4f565b905060018511156120e85760026120b8600187615193565b6120c29087615146565b85604001516120d19190615146565b6120db919061515d565b6120e59082614e4f565b90505b60a08401516120f79082614e4f565b610100850151909150612710906121129061ffff1682614e4f565b61211c9083615146565b612126919061515d565b9750878061214a57604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f61216289610c7a565b5f8a8152600d602052604090205490915060ff16600481600681111561218a5761218a614693565b148a6004839091926121b2576040516337e1404160e01b815260040161098893929190614e1a565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b9042811015612215576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016122328a8c83614ef0565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b60405161227692919061507f565b6040519081900381206001600160e01b031960e084901b1682526122a4918c908c908c908c906004016151a6565b602060405180830381865afa1580156122bf573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122e391906150ba565b935089898561230757604051632f9f8ab960e01b81526004016109889291906150d5565b50506123128b613cba565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b60405161234894939291906151de565b60405180910390a28a5f5160206159d95f395f51905f5260046005604051612371929190614e62565b60405180910390a2505050979650505050505050565b5f546001600160a01b03163314806123a957506003546001600160a01b031633145b6123c657604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156123dc5750600d60ff821611155b6124215760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b61243f828260ff16600d81111561243a5761243a614693565b614126565b5050565b61244b61384e565b6001600160a01b0381166124a15760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b03163314612515576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b15801561255f575f5ffd5b505af1158015612571573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161147c91815260200190565b6125af61384e565b6001600160a01b038116158015906125e057505f828152600960205260409020546001600160a01b03828116911614155b8290612602576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b61266961384e565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b6126a661384e565b6127106126bb61012083016101008401615229565b61ffff1611156126d361012083016101008401615229565b906126f8576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061270e61014083016101208401615229565b61ffff16111561272661014083016101208401615229565b9061274b576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061276161016083016101408401615229565b61ffff16111561277961016083016101408401615229565b9061279e57604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127b461018083016101608401615229565b61ffff1611156127cc61018083016101608401615229565b906127f157604051633239953960e01b815261ffff9091166004820152602401610988565b506127106128076101a083016101808401615229565b61ffff16111561281f6101a083016101808401615229565b9061284457604051633239953960e01b815261ffff9091166004820152602401610988565b5061285761014082016101208301615229565b61ffff16158061288057505f612874610100830160e084016145d4565b6001600160a01b031614155b61289d5760405163015f92ff60e51b815260040160405180910390fd5b6128af6101e082016101c08301615260565b63ffffffff166128c76101c083016101a08401615260565b63ffffffff1610156128ec576040516392f55c6560e01b815260040160405180910390fd5b8060186128f9828261529f565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab0919061545d565b61293361384e565b6001600160a01b0381161580159061295957506001546001600160a01b03828116911614155b8190612979576040516320252f0b60e01b8152600401610988919061461a565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab090839061461a565b6129cd61384e565b6129da6020820182615260565b63ffffffff166129f06040830160208401615260565b63ffffffff1610158015612a1557505f612a0d6020830183615260565b63ffffffff16115b612a3257604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612b6b576101a081015163ffffffff16612b1b6040840160208501615260565b63ffffffff161015612b336040840160208501615260565b826101a001519091612b6857604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612be2576101c081015163ffffffff16612b956020840184615260565b63ffffffff161015612baa6020840184615260565b826101c001519091612bdf5760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612bf857612bf8614693565b6003811115612c0957612c09614693565b815260208101919091526040015f20612c239160026144bf565b50826003811115612c3657612c36614693565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612c659190615567565b60405180910390a2505050565b612c7a61384e565b6001600160a01b038116612ca3575f604051631e4fbdf760e01b8152600401610988919061461a565b610acc81613978565b5f612cb5614442565b5f601281612cc6602087018761511f565b6003811115612cd757612cd7614693565b6003811115612ce857612ce8614693565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612d0f579050505050505090505f81600160028110612d6657612d6661506b565b602002015163ffffffff1611845f016020810190612d84919061511f565b90612da35760405163286c068d60e11b81526004016109889190615138565b50602084013542811015612dcd57604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612dfb5760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612e13426040890135615193565b612e1d9190614e4f565b612e279190614e4f565b905060055481108190612e50576040516313b783af60e21b815260040161098891815260200190565b5060075f612e6460808801606089016145d4565b6001600160a01b0316815260208101919091526040015f205460ff16612e9060808701606088016145d4565b90612eaf5760405163295a6a6f60e11b8152600401610988919061461a565b505f612eba86611b82565b60068054965090915085905f612ecf836155a7565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612faa9190890135614e4f565b5f878152600e6020908152604090912060010191909155818652612fd09088018861511f565b85602001906003811115612fe657612fe6614693565b90816003811115612ff957612ff9614693565b905250436040808701919091528051808201825290602089019060029083908390808284375f92019190915250505060608087019190915261304190608089019089016145d4565b6001600160a01b031660a08087019190915261306290880160808901614994565b60ff1660c08087019190915261307a908801886155bf565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526130c7906101008901908901615601565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a08601819052600454613117916001600160a01b03909116903085614281565b5f600b8161312b60a08b0160808c01614994565b60ff1660ff1681526020019081526020015f20805461314990614de8565b80601f016020809104026020016040519081016040528092919081815260200182805461317590614de8565b80156131c05780601f10613197576101008083540402835291602001916131c0565b820191905f5260205f20905b8154815290600101906020018083116131a357829003601f168201915b505050505090505f8151116131e75760405162461bcd60e51b8152600401610988906150e8565b5f6131f860808a0160608b016145d4565b6001600160a01b031663fefd9a8b89858561321660a08f018f6155bf565b8f8060c0019061322691906155bf565b6040518863ffffffff1660e01b8152600401613248979695949392919061561c565b6020604051808303815f875af1158015613264573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613288919061517c565b5f818152600960205260409020549091506001600160a01b031681816132c4576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b031682816132fe576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff19919091169083600381111561335c5761335c614693565b021790555060408201518160020155606082015181600301906002613382929190614560565b506080820151600582015560a082015160068201805460c085015160ff16600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560e082015160078201906133db9082615670565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906134439082615670565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b906134a9908d9089908d90600401615725565b6020604051808303815f875af11580156134c5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134e991906150ba565b61350657604051630d8dbe2560e01b815260040160405180910390fd5b61351660808c0160608d016145d4565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b604051613550929190614dc8565b60405180910390a2895f5160206159d95f395f51905f525f6001604051613578929190614e62565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff16818160068111156135b1576135b1614693565b036135d657826001826040516337e1404160e01b815260040161098893929190614e1a565b60058160068111156135ea576135ea614693565b0361360b5760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561361f5761361f614693565b0361364057604051633de16e3560e11b815260048101849052602401610988565b5f61364b8483613b32565b935090508061367057604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d8111156136b9576136b9614693565b0217905550835f5160206159d95f395f51905f528360066040516136de929190614e62565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb838560405161371892919061576a565b60405180910390a25050919050565b61372f61384e565b6001600160a01b0381161580159061375457505f546001600160a01b03828116911614155b8190613774576040516375ac4eb760e11b8152600401610988919061461a565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab090839061461a565b6001600160a01b0381165f90815260076020526040902054819060ff16156137fb5760405163b29d459560e01b8152600401610988919061461a565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab090839061461a565b33613857611688565b6001600160a01b0316146112fe573360405163118cdaa760e01b8152600401610988919061461a565b803561389f5760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138c35760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138e75760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b61396f6142c0565b610acc816142e5565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d811115613a1057613a10614693565b1480613a2d5750600281600d811115613a2b57613a2b614693565b145b15613a65575f5b604051908082528060200260200182016040528015613a5d578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613acb57506040513d5f823e601f3d908101601f19168201604052613ac89190810190615841565b60015b613a5d575f613a34565b613b2d83846001600160a01b031663a9059cbb8585604051602401613afb929190615906565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506142ed565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613bac573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bd0919061517c565b90506001856006811115613be657613be6614693565b148015613bf257508042115b15613c0557600180935093505050613cb3565b6002856006811115613c1957613c19614693565b148015613c265750815142115b15613c3a5760016003935093505050613cb3565b6003856006811115613c4e57613c4e614693565b148015613c5e5750816020015142115b15613c725760016006935093505050613cb3565b6004856006811115613c8657613c86614693565b148015613c965750816040015142115b15613caa576001600a935093505050613cb3565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613cff573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d269190810190615841565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613dc5576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d919088908890869060040161591f565b5f604051808303815f87803b158015613da8575f5ffd5b505af1158015613dba573d5f5f3e3d5ffd5b505050505050505050565b825f03613e66575f858152601060205260409020546001600160a01b03168015613dfd57613dfd6001600160a01b0383168285613ad5565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e319089908990879060040161591f565b5f604051808303815f87803b158015613e48575f5ffd5b505af1158015613e5a573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613ea657506001600160a01b03811615155b15613ee257612710613ebc61ffff841687615146565b613ec6919061515d565b92508215613ee257613ee26001600160a01b0385168285613ad5565b5f613eed8487615193565b90505f876001600160401b03811115613f0857613f08614e7d565b604051908082528060200260200182016040528015613f31578160200160208202803683370190505b5090505f613f3f898461515d565b90505f805b8a811015613f7e5782848281518110613f5f57613f5f61506b565b6020908102919091010152613f748383614e4f565b9150600101613f44565b505f613f8a8286615193565b90508015613fc7578084613f9f60018e615193565b81518110613faf57613faf61506b565b60200260200101818151613fc39190614e4f565b9052505b600154613fe1906001600160a01b038b8116911687614350565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b81526004016140259392919061597f565b5f604051808303815f87803b15801561403c575f5ffd5b505af115801561404e573d5f5f3e3d5ffd5b505060015461406c92506001600160a01b038c81169250165f614350565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d8660405161409e9291906159b4565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b81526004016140ea9392919061591f565b5f604051808303815f87803b158015614101575f5ffd5b505af1158015614113573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff169081600681111561414a5761414a614693565b0361416f57826001826040516337e1404160e01b815260040161098893929190614e1a565b600581600681111561418357614183614693565b036141a45760405163462c7bed60e01b815260048101849052602401610988565b60068160068111156141b8576141b8614693565b036141d957604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561422257614222614693565b0217905550825f5160206159d95f395f51905f52826006604051614247929190614e62565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612c6592919061576a565b6040516001600160a01b0384811660248301528381166044830152606482018390526142ba9186918216906323b872dd90608401613afb565b50505050565b6142c86143e0565b6112fe57604051631afcd79f60e31b815260040160405180910390fd5b612c7a6142c0565b5f5f60205f8451602086015f885af18061430c576040513d5f823e3d81fd5b50505f513d91508115614323578060011415614330565b6001600160a01b0384163b155b156142ba5783604051635274afe760e01b8152600401610988919061461a565b5f836001600160a01b031663095ea7b38484604051602401614373929190615906565b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505090506143ac84826143f9565b6142ba576143d684856001600160a01b031663095ea7b3865f604051602401613afb929190615906565b6142ba84826142ed565b5f6143e961393d565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f5190508280156144385750811561442a5780600114614438565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f815260200161446a61458e565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b600183019183908215614550579160200282015f5b8382111561451e57833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144d4565b801561454e5782816101000a81549063ffffffff021916905560040160208160030104928301926001030261451e565b505b5061455c9291506145ac565b5090565b8260028101928215614550579160200282015b82811115614550578251825591602001919060010190614573565b60405180604001604052806002906020820280368337509192915050565b5b8082111561455c575f81556001016145ad565b6001600160a01b0381168114610acc575f5ffd5b5f602082840312156145e4575f5ffd5b81356145ef816145c0565b9392505050565b5f60208284031215614606575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b80356004811061463c575f5ffd5b919050565b5f5f60408385031215614652575f5ffd5b61465b8361462e565b946020939093013593505050565b5f60608284031215610ef1575f5ffd5b5f60608284031215614689575f5ffd5b6145ef8383614669565b634e487b7160e01b5f52602160045260245ffd5b600e81106146b7576146b7614693565b9052565b6020810161396182846146a7565b600481106146b7576146b7614693565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e8152614717602082018f6146c9565b8c60408201528b6060820152614730608082018c61460d565b60ff8a1660a08201526101c060c08201525f6147506101c083018b6146d9565b61475d60e084018b61460d565b61476b61010084018a61460d565b876101208401528661014084015282810361016084015261478c81876146d9565b91505061479d61018083018561460d565b8215156101a08301529f9e505050505050505050505050505050565b805f5b60028110156142ba5781518452602093840193909101906001016147bc565b805182525f60208201516147f260208501826146c9565b5060408201516040840152606082015161480f60608501826147b9565b50608082015160a084015260a082015161482c60c085018261460d565b5060c082015160ff811660e08501525060e08201516102006101008501526148586102008501826146d9565b905061010083015161486e61012086018261460d565b5061012083015161488361014086018261460d565b506101408301516101608501526101608301516101808501526101808301518482036101a08601526148b582826146d9565b9150506101a08301516148cc6101c086018261460d565b506101c08301518015156101e0860152613a5d565b602081525f6145ef60208301846147db565b803561463c816145c0565b5f5f5f5f5f5f5f610120888a031215614915575f5ffd5b8735614920816145c0565b96506020880135614930816145c0565b95506040880135614940816145c0565b94506060880135614950816145c0565b93506080880135614960816145c0565b925060a088013591506149768960c08a01614669565b905092959891949750929550565b803560ff8116811461463c575f5ffd5b5f602082840312156149a4575f5ffd5b6145ef82614984565b602081525f6145ef60208301846146d9565b5f5f604083850312156149d0575f5ffd5b8235915060208301356149e2816145c0565b809150509250929050565b5f5f604083850312156149fe575f5ffd5b50508035926020909101359150565b5f5f83601f840112614a1d575f5ffd5b5081356001600160401b03811115614a33575f5ffd5b602083019150836020828501011115613cb3575f5ffd5b5f5f5f60408486031215614a5c575f5ffd5b614a6584614984565b925060208401356001600160401b03811115614a7f575f5ffd5b614a8b86828701614a0d565b9497909650939450505050565b81518152602080830151908201526040808301519082015260608101613961565b8215158152604081016145ef60208301846146a7565b5f5f5f5f5f60608688031215614ae3575f5ffd5b8535945060208601356001600160401b03811115614aff575f5ffd5b614b0b88828901614a0d565b90955093505060408601356001600160401b03811115614b29575f5ffd5b614b3588828901614a0d565b969995985093965092949392505050565b5f60208284031215614b56575f5ffd5b81356001600160401b03811115614b6b575f5ffd5b820161010081850312156145ef575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614bd760e084018261460d565b50610100830151614bef61010084018261ffff169052565b50610120830151614c0761012084018261ffff169052565b50610140830151614c1f61014084018261ffff169052565b50610160830151614c3761016084018261ffff169052565b50610180830151614c4f61018084018261ffff169052565b506101a0830151614c696101a084018263ffffffff169052565b506101c0830151614c836101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614ca0575f5ffd5b8735965060208801356001600160401b03811115614cbc575f5ffd5b614cc88a828b01614a0d565b90975095505060408801356001600160401b03811115614ce6575f5ffd5b614cf28a828b01614a0d565b90955093505060608801356001600160401b03811115614d10575f5ffd5b614d1c8a828b01614a0d565b989b979a50959850939692959293505050565b5f5f60408385031215614d40575f5ffd5b82359150614d5060208401614984565b90509250929050565b600781106146b7576146b7614693565b602081016139618284614d59565b5f6101e0828403128015614d89575f5ffd5b509092915050565b5f5f60608385031215614da2575f5ffd5b614dab8361462e565b915083606084011115614dbc575f5ffd5b50926020919091019150565b828152604060208201525f614de060408301846147db565b949350505050565b600181811c90821680614dfc57607f821691505b602082108103610ef157634e487b7160e01b5f52602260045260245ffd5b83815260608101614e2e6020830185614d59565b614de06040830184614d59565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561396157613961614e3b565b60408101614e708285614d59565b6145ef6020830184614d59565b634e487b7160e01b5f52604160045260245ffd5b601f821115613b2d57805f5260205f20601f840160051c81016020851015614eb65750805b601f840160051c820191505b81811015614ed5575f8155600101614ec2565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614f0757614f07614e7d565b614f1b83614f158354614de8565b83614e91565b5f601f841160018114614f47575f8515614f355750838201355b614f3f8682614edc565b845550614ed5565b5f83815260208120601f198716915b82811015614f765786850135825560209485019460019092019101614f56565b5086821015614f92575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60ff84168152604060208201525f614fe8604083018486614fa4565b95945050505050565b5f8151808452602084019350602083015f5b8281101561502a5781516001600160a01b0316865260209586019590910190600101615003565b5093949350505050565b848152836020820152608060408201525f6150526080830185614ff1565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f614438606083018486614fa4565b8015158114610acc575f5ffd5b5f602082840312156150ca575f5ffd5b81516145ef816150ad565b602081525f614de0602083018486614fa4565b6020808252601c908201527f42465620706172616d20736574206e6f74207265676973746572656400000000604082015260600190565b5f6020828403121561512f575f5ffd5b6145ef8261462e565b6020810161396182846146c9565b808202811582820484141761396157613961614e3b565b5f8261517757634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561518c575f5ffd5b5051919050565b8181038181111561396157613961614e3b565b858152606060208201525f6151bf606083018688614fa4565b82810360408401526151d2818587614fa4565b98975050505050505050565b604081525f6151f1604083018688614fa4565b8281036020840152615204818587614fa4565b979650505050505050565b61ffff81168114610acc575f5ffd5b803561463c8161520f565b5f60208284031215615239575f5ffd5b81356145ef8161520f565b63ffffffff81168114610acc575f5ffd5b803561463c81615244565b5f60208284031215615270575f5ffd5b81356145ef81615244565b5f8135613961816145c0565b5f81356139618161520f565b5f813561396181615244565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c082013560068201556007810161530f6152f260e0850161527b565b82546001600160a01b0319166001600160a01b0391909116178255565b61533f61531f6101008501615287565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b61536f61534f6101208501615287565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b61539f61537f6101408501615287565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b6153cf6153af6101608501615287565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6153ff6153df6101808501615287565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b506008810161542b6154146101a08501615293565b825463ffffffff191663ffffffff91909116178255565b613b2d61543b6101c08501615293565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e081016154ae60e084016148f3565b6154bb60e084018261460d565b506154c9610100840161521e565b61ffff166101008301526154e0610120840161521e565b61ffff166101208301526154f7610140840161521e565b61ffff1661014083015261550e610160840161521e565b61ffff16610160830152615525610180840161521e565b61ffff1661018083015261553c6101a08401615255565b63ffffffff166101a08301526155556101c08401615255565b63ffffffff81166101c0840152614c83565b6040810181835f5b600281101561559e57813561558381615244565b63ffffffff168352602092830192919091019060010161556f565b50505092915050565b5f600182016155b8576155b8614e3b565b5060010190565b5f5f8335601e198436030181126155d4575f5ffd5b8301803591506001600160401b038211156155ed575f5ffd5b602001915036819003821315613cb3575f5ffd5b5f60208284031215615611575f5ffd5b81356145ef816150ad565b87815286602082015260a060408201525f61563a60a08301886146d9565b828103606084015261564d818789614fa4565b90508281036080840152615662818587614fa4565b9a9950505050505050505050565b81516001600160401b0381111561568957615689614e7d565b61569d816156978454614de8565b84614e91565b6020601f8211600181146156ca575f83156156b85750848201515b6156c28482614edc565b855550614ed5565b5f84815260208120601f198516915b828110156156f957878501518255602094850194600190920191016156d9565b508482101561571657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561575f57815163ffffffff1683526020928301929091019060010161573a565b505050949350505050565b604081016157788285614d59565b6145ef60208301846146a7565b604051601f8201601f191681016001600160401b03811182821017156157ad576157ad614e7d565b604052919050565b5f6001600160401b038211156157cd576157cd614e7d565b5060051b60200190565b5f82601f8301126157e6575f5ffd5b81516157f96157f4826157b5565b615785565b8082825260208201915060208360051b86010192508583111561581a575f5ffd5b602085015b8381101561583757805183526020928301920161581f565b5095945050505050565b5f5f60408385031215615852575f5ffd5b82516001600160401b03811115615867575f5ffd5b8301601f81018513615877575f5ffd5b80516158856157f4826157b5565b8082825260208201915060208360051b8501019250878311156158a6575f5ffd5b6020840193505b828410156158d15783516158c0816145c0565b8252602093840193909101906158ad565b8095505050505060208301516001600160401b038111156158f0575f5ffd5b6158fc858286016157d7565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f6159376060830185614ff1565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b8281101561502a578151865260209586019590910190600101615961565b6001600160a01b03841681526060602082018190525f906159a290830185614ff1565b8281036040840152614438818561594f565b604081525f6159c66040830185614ff1565b8281036020840152614fe8818561594f56fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", + "deployedBytecode": "0x608060405234801561000f575f5ffd5b50600436106102ce575f3560e01c80639117173c11610182578063cb649617116100e0578063f0691cba1161008f578063f0691cba14610886578063f2fde38b14610899578063f3ceba3a146108ac578063f81b8ef6146108cd578063fad8e111146108e0578063fbdb3237146108f3578063fd2f3d011461091b575f5ffd5b8063cb649617146107ef578063cbd16872146107f8578063cf0f34c41461080b578063cfbdc98d1461081e578063d8afed3e1461084d578063e59e469514610860578063ea71aa5714610873575f5ffd5b8063a87f4ab91161013c578063a87f4ab914610607578063ac3d2f4214610759578063b27392d514610781578063bb2d1b8214610794578063bff232c1146107a7578063c1ab0f1f146107ba578063c4ccafa2146107cd575f5ffd5b80639117173c146105625780639231238614610575578063929a8faf1461058857806399c6679d146105a95780639c8570c8146105d15780639e57b934146105f4575f5ffd5b80635d1684181161022f57806381476ec2116101e957806381476ec2146104e7578063830d7181146104fa578063858142431461050d5780638da5cb5b146105205780638dcdd86b146105285780638e5ce3ad1461053a57806390173a411461054d575f5ffd5b80635d1684181461047d578063647846a51461049d5780636db5c8fd146104b0578063715018a6146104b95780637c8c3b4d146104c15780637cfa9d74146104d4575f5ffd5b806336c5d38a1161028b57806336c5d38a1461039b5780634017daf0146103ca578063406ed35c146103f75780634147a360146104175780634d600e5d146104445780634e92ec63146104575780634fc772641461046a575f5ffd5b806302a3a9c9146102d25780630ef81b2f146102e757806310bc62811461032557806311bd61d91461034d57806315cce224146103755780631ba7294514610388575b5f5ffd5b6102e56102e03660046145d4565b61092e565b005b61030f6102f53660046145f6565b5f908152600960205260409020546001600160a01b031690565b60405161031c919061461a565b60405180910390f35b61030f6103333660046145f6565b60096020525f90815260409020546001600160a01b031681565b61036061035b366004614641565b6109da565b60405163ffffffff909116815260200161031c565b6102e56103833660046145d4565b610a16565b6102e5610396366004614679565b610abb565b6103bd6103a93660046145f6565b5f908152600f602052604090205460ff1690565b60405161031c91906146bb565b6103dd6103d83660046145f6565b610acf565b60405161031c9e9d9c9b9a99989796959493929190614707565b61040a6104053660046145f6565b610c7a565b60405161031c91906148e1565b6104366104253660046145f6565b600c6020525f908152604090205481565b60405190815260200161031c565b6102e56104523660046148fe565b610ef7565b6102e56104653660046145f6565b611134565b6102e56104783660046145d4565b6111c3565b61049061048b366004614994565b611256565b60405161031c91906149ad565b60045461030f906001600160a01b031681565b61043660055481565b6102e56112ed565b6102e56104cf3660046149bf565b611300565b6102e56104e23660046145f6565b611389565b6102e56104f53660046149ed565b611488565b6102e5610508366004614a4a565b61157c565b60015461030f906001600160a01b031681565b61030f611688565b5f5461030f906001600160a01b031681565b60035461030f906001600160a01b031681565b6105556116b6565b60405161031c9190614a98565b6102e56105703660046145f6565b6116fc565b6105556105833660046145f6565b61186a565b61059b6105963660046145f6565b6118c3565b60405161031c929190614ab9565b61030f6105b73660046145f6565b5f908152601060205260409020546001600160a01b031690565b6105e46105df366004614acf565b6118ea565b604051901515815260200161031c565b610436610602366004614b46565b611b82565b61074c604080516101e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081019190915250604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a0840152640100000000909104166101c082015290565b60405161031c9190614b7d565b61030f6107673660046145f6565b5f908152600a60205260409020546001600160a01b031690565b6105e461078f366004614c8a565b612157565b6102e56107a2366004614d2f565b612387565b6102e56107b53660046145d4565b612443565b6102e56107c83660046149ed565b6124ea565b6105e46107db3660046145d4565b60076020525f908152604090205460ff1681565b61043660065481565b6102e56108063660046149bf565b6125a7565b6102e56108193660046145f6565b612661565b61084061082c3660046145f6565b5f908152600d602052604090205460ff1690565b60405161031c9190614d69565b6102e561085b366004614d77565b61269e565b6102e561086e3660046145d4565b61292b565b6102e5610881366004614d91565b6129c5565b60025461030f906001600160a01b031681565b6102e56108a73660046145d4565b612c72565b6108bf6108ba366004614b46565b612cac565b60405161031c929190614dc8565b6103bd6108db3660046145f6565b61358d565b6102e56108ee3660046145d4565b613727565b61030f6109013660046145f6565b600a6020525f90815260409020546001600160a01b031681565b6102e56109293660046145d4565b6137bf565b61093661384e565b6001600160a01b0381166109915760405162461bcd60e51b815260206004820152601f60248201527f496e76616c6964204533526566756e644d616e6167657220616464726573730060448201526064015b60405180910390fd5b600280546001600160a01b0319166001600160a01b0383169081179091556040517f9557d04c1c0b16f93f13b69aed23b3b6ab935bff3c53ac81d17896d3583542ed905f90a250565b6012602052815f5260405f2081600281106109f3575f80fd5b60089182820401919006600402915091509054906101000a900463ffffffff1681565b610a1e61384e565b6001600160a01b03811615801590610a4457506004546001600160a01b03828116911614155b8190610a645760405163eddf07f560e01b8152600401610988919061461a565b50600480546001600160a01b0319166001600160a01b0383161790556040517f722ff84c1234b2482061def5c82c6b5080c117b3cbb69d686844a051e4b8e7f390610ab090839061461a565b60405180910390a150565b610ac361384e565b610acc81613880565b50565b60086020525f9081526040902080546001820154600283015460058401546006850154600786018054959660ff95861696949593946001600160a01b03841694600160a01b90940490931692909190610b2790614de8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614de8565b8015610b9e5780601f10610b7557610100808354040283529160200191610b9e565b820191905f5260205f20905b815481529060010190602001808311610b8157829003601f168201915b50505060088401546009850154600a860154600b870154600c8801805497986001600160a01b03958616989490951696509194509291610bdd90614de8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990614de8565b8015610c545780601f10610c2b57610100808354040283529160200191610c54565b820191905f5260205f20905b815481529060010190602001808311610c3757829003601f168201915b505050600d90930154919250506001600160a01b0381169060ff600160a01b909104168e565b610c82614442565b5f8281526008602090815260409182902082516101e08101909352805483526001810154909183019060ff166003811115610cbf57610cbf614693565b6003811115610cd057610cd0614693565b8152600282810154602083015260408051808201808352919093019291600385019182845b815481526020019060010190808311610cf55750505091835250506005820154602082015260068201546001600160a01b0381166040830152600160a01b900460ff166060820152600782018054608090920191610d5290614de8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90614de8565b8015610dc95780601f10610da057610100808354040283529160200191610dc9565b820191905f5260205f20905b815481529060010190602001808311610dac57829003601f168201915b505050918352505060088201546001600160a01b0390811660208301526009830154166040820152600a8201546060820152600b8201546080820152600c8201805460a090920191610e1a90614de8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690614de8565b8015610e915780601f10610e6857610100808354040283529160200191610e91565b820191905f5260205f20905b815481529060010190602001808311610e7457829003601f168201915b5050509183525050600d91909101546001600160a01b038082166020840152600160a01b90910460ff16151560409092019190915260a0820151919250839116610ef15760405163cd6f4a4f60e01b815260040161098891815260200190565b50919050565b5f610f0061393d565b805490915060ff600160401b82041615906001600160401b03165f81158015610f265750825b90505f826001600160401b03166001148015610f415750303b155b905081158015610f4f575080155b15610f6d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f9757845460ff60401b1916600160401b1785555b610fa033613967565b610fa987612661565b610fb28b613727565b610fbb8a61292b565b610fc48961092e565b610fcd88610a16565b610fd686613880565b604080516101e08101825261c3508082526161a86020808401829052611388948401859052601460608501819052620249f0608086018190526207a12060a087018190526107d060c088018190525f60e089018190526103e86101008a015261012089018190526109c46101408a018190526101608a018b90526101808a01526101a089018190526101c090980197909752601895909555601993909355601a95909555601b94909455601c55601d55601e55601f80546001600160f01b031916690138827101388000007d60a31b179055805467ffffffffffffffff191690556110bf611688565b6001600160a01b03168c6001600160a01b0316146110e0576110e08c612c72565b831561112657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b61113c61384e565b5f8181526009602052604090205481906001600160a01b0316611175576040516381c4951960e01b815260040161098891815260200190565b505f818152600960205260409081902080546001600160a01b0319169055517f104eb329a192aef26eddea07c2af5ad2587792e62b37ed4045b6ba59bc5540fc90610ab09083815260200190565b6111cb61384e565b6001600160a01b0381165f90815260076020526040902054819060ff16611206576040516321ac7c5f60e01b8152600401610988919061461a565b506001600160a01b0381165f9081526007602052604090819020805460ff19169055517f56070b80bd617fcd2f7a284861edb488830a38f9dedcd77b2cb2f4eac17743e790610ab090839061461a565b600b6020525f90815260409020805461126e90614de8565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90614de8565b80156112e55780601f106112bc576101008083540402835291602001916112e5565b820191905f5260205f20905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b6112f561384e565b6112fe5f613978565b565b61130861384e565b6001600160a01b0381161580159061133957505f828152600a60205260409020546001600160a01b03828116911614155b829061135b576040516381c4951960e01b815260040161098891815260200190565b505f918252600a602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b5f546001600160a01b031633146113b35760405163b56831db60e01b815260040160405180910390fd5b5f818152600d602052604090205460ff1660018160068111156113d8576113d8614693565b146113fd57816001826040516337e1404160e01b815260040161098893929190614e1a565b5f828152600d60205260409020805460ff191660021790556015546114229042614e4f565b5f838152600e602052604080822092909255905183917fc44405af9078047712501f519e1fb900c2896c62b488336f84529c72ae16e6f191a2815f5160206159d95f395f51905f526001600260405161147c929190614e62565b60405180910390a25050565b5f546001600160a01b031633146114b25760405163b56831db60e01b815260040160405180910390fd5b5f828152600860209081526040808320600d9092529091205460ff1660028160068111156114e2576114e2614693565b1461150757836002826040516337e1404160e01b815260040161098893929190614e1a565b5f848152600d6020526040808220805460ff19166003179055600a84018590555185917f11df18edb9bc9cd90a79068e0e208b630202148643d797d6150e7bacb733e63c91a2835f5160206159d95f395f51905f526002600360405161156e929190614e62565b60405180910390a250505050565b61158461384e565b806115c05760405162461bcd60e51b815260206004820152600c60248201526b456d70747920706172616d7360a01b6044820152606401610988565b60ff83165f908152600b6020526040902080546115dc90614de8565b15905061162b5760405162461bcd60e51b815260206004820152601b60248201527f506172616d53657420616c7265616479207265676973746572656400000000006044820152606401610988565b60ff83165f908152600b60205260409020611647828483614ef0565b507f6e4a4ea7f38fc775e616080b155744337e6216848e886a69c918b4ab84da219583838360405161167b93929190614fcc565b60405180910390a1505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6116d760405180606001604052805f81526020015f81526020015f81525090565b5060408051606081018252601554815260165460208201526017549181019190915290565b5f818152600d602052604090205460ff16600681600681111561172157611721614693565b14829061174457604051637cb2d48360e11b815260040161098891815260200190565b505f828152600c60205260409020548281611775576040516345ba89d560e11b815260040161098891815260200190565b505f838152600c6020526040812081905561178f846139e8565b5f858152601160205260409020546002549192506001600160a01b03908116916117bc9183911685613ad5565b60025460405163da19b69760e01b81526001600160a01b039091169063da19b697906117f2908890879087908790600401615034565b5f604051808303815f87803b158015611809575f5ffd5b505af115801561181b573d5f5f3e3d5ffd5b50505050847f5297818f48a66292b8b3e2caab83eec531b669bb20807fd38cf006adb2a0731784845160405161185b929190918252602082015260400190565b60405180910390a25050505050565b61188b60405180606001604052805f81526020015f81526020015f81525090565b505f908152600e6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b5f818152600d6020526040812054819060ff166118e08482613b32565b9250925050915091565b5f5f6118f587610c7a565b5f888152600d602052604090205490915060ff16600381600681111561191d5761191d614693565b1488600383909192611945576040516337e1404160e01b815260040161098893929190614e1a565b5050505f888152600e60209081526040918290208251606081018452815481526001820154928101839052600290910154928101929092528990428110156119a9576040516308f3034360e31b815260048101929092526024820152604401610988565b50506060830151602001518990428111156119e05760405163017e35e560e71b815260048101929092526024820152604401610988565b5050610160830151899015611a0b57604051637eb9cea960e11b815260040161098891815260200190565b505f8888604051611a1d92919061507f565b60408051918290039091205f8c815260086020908152838220600b01839055600d905291909120805460ff19166004179055601754909150611a5f9042614e4f565b5f8b8152600e6020526040908190206002019190915560a08501519051632f0e1bbf60e01b81526001600160a01b0390911690632f0e1bbf90611aac908d9085908c908c9060040161508e565b6020604051808303815f875af1158015611ac8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aec91906150ba565b9450888886611b1057604051632f9f8ab960e01b81526004016109889291906150d5565b5050897f7cc27e4a5626cbc4f8ba1a927b0448de55e6a114bc87660331270c5109ade0718a8a604051611b449291906150d5565b60405180910390a2895f5160206159d95f395f51905f5260036004604051611b6d929190614e62565b60405180910390a25050505095945050505050565b5f80600b81611b9760a0860160808701614994565b60ff1660ff1681526020019081526020015f208054611bb590614de8565b905011611bd45760405162461bcd60e51b8152600401610988906150e8565b5f601281611be5602086018661511f565b6003811115611bf657611bf6614693565b6003811115611c0757611c07614693565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411611c2e579050505050505090505f81600160028110611c8557611c8561506b565b602002015163ffffffff1611835f016020810190611ca3919061511f565b90611cc25760405163286c068d60e11b81526004016109889190615138565b506020808201518251604080516101e081018252601854815260195481860152601a5491810191909152601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e0830152600160a01b810461ffff908116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152925463ffffffff8181166101a0860181905264010000000090920481166101c086015292831693919092169115611ded576101a081015163ffffffff16846001602002015163ffffffff161015865f016020810190611dcc919061511f565b90611deb5760405163010b971d60e31b81526004016109889190615138565b505b6101c081015163ffffffff1615611e3c576101c081015184519063ffffffff9081169082161015611e3a57604051630a4b6b6360e11b815263ffffffff9091166004820152602401610988565b505b60408601356020870135811015611e695760405163174b5a0760e21b815260040161098891815260200190565b506101808101516017545f9161271091611e879161ffff1690615146565b611e91919061515d565b61271061ffff1683610160015161ffff16601560010154611eb29190615146565b611ebc919061515d565b61271061ffff1684610140015161ffff1660155f0154611edc9190615146565b611ee6919061515d565b5f5460408051634f87c3a560e11b8152815160208e81013594938f0135936001600160a01b031692639f0f874a92600480830193928290030181865afa158015611f32573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f56919061517c565b611f609190614e4f565b611f6a9190615193565b611f749190614e4f565b611f7e9190614e4f565b611f889190614e4f565b90505f611f96600186615193565b611fa1906002615146565b611fac906002615146565b611fb7906006614e4f565b90505f85845f0151611fc99190615146565b905081868560200151611fdc9190615146565b611fe69190615146565b611ff09082614e4f565b90506001861115612038576002612008600188615193565b6120129088615146565b85604001516120219190615146565b61202b919061515d565b6120359082614e4f565b90505b81868560c001516120499190615146565b6120539190615146565b61205d9082614e4f565b9050828685606001516120709190615146565b61207a9190615146565b6120849082614e4f565b90508484608001516120969190615146565b6120a09082614e4f565b905060018511156120e85760026120b8600187615193565b6120c29087615146565b85604001516120d19190615146565b6120db919061515d565b6120e59082614e4f565b90505b60a08401516120f79082614e4f565b610100850151909150612710906121129061ffff1682614e4f565b61211c9083615146565b612126919061515d565b9750878061214a57604051638c4fcd9360e01b815260040161098891815260200190565b5050505050505050919050565b5f5f61216289610c7a565b5f8a8152600d602052604090205490915060ff16600481600681111561218a5761218a614693565b148a6004839091926121b2576040516337e1404160e01b815260040161098893929190614e1a565b5050505f8a8152600e602090815260409182902082516060810184528154815260018201549281019290925260020154918101829052908b9042811015612215576040516308f3034360e31b815260048101929092526024820152604401610988565b50505f8b8152600860205260409020600c016122328a8c83614ef0565b505f8b8152600d6020526040902080546005919060ff191660018302179055508261010001516001600160a01b0316635bf48e3a8b8b60405161227692919061507f565b6040519081900381206001600160e01b031960e084901b1682526122a4918c908c908c908c906004016151a6565b602060405180830381865afa1580156122bf573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122e391906150ba565b935089898561230757604051632f9f8ab960e01b81526004016109889291906150d5565b50506123128b613cba565b8a7f3a140076c461ebc41d74833ae0ee8bbc8079a135a63392098cd381e84350b69b8b8b8b8b60405161234894939291906151de565b60405180910390a28a5f5160206159d95f395f51905f5260046005604051612371929190614e62565b60405180910390a2505050979650505050505050565b5f546001600160a01b03163314806123a957506003546001600160a01b031633145b6123c657604051639e75a8b560e01b815260040160405180910390fd5b5f8160ff161180156123dc5750600d60ff821611155b6124215760405162461bcd60e51b815260206004820152601660248201527524b73b30b634b2103330b4b63ab932903932b0b9b7b760511b6044820152606401610988565b61243f828260ff16600d81111561243a5761243a614693565b614126565b5050565b61244b61384e565b6001600160a01b0381166124a15760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420536c617368696e674d616e616765722061646472657373006044820152606401610988565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4ccc8ed483c7c44c3602c3c38afc2c014a8f1d2dc210dfe58ebeeeead230f8e0905f90a250565b6003546001600160a01b03163314612515576040516357d6948d60e11b815260040160405180910390fd5b60025460405163c1ab0f1f60e01b815260048101849052602481018390526001600160a01b039091169063c1ab0f1f906044015f604051808303815f87803b15801561255f575f5ffd5b505af1158015612571573d5f5f3e3d5ffd5b50505050817f4f41a3b0a032ebcae925f2ace77d507435840ca4b2dbaffdd7723fa8d72ee5428260405161147c91815260200190565b6125af61384e565b6001600160a01b038116158015906125e057505f828152600960205260409020546001600160a01b03828116911614155b8290612602576040516381c4951960e01b815260040161098891815260200190565b505f8281526009602090815260409182902080546001600160a01b0319166001600160a01b03851617905590518381527ff4041a3f914dac3bc9bf5f003ba41f28dbb84abe42f4e07c76266f5c8ceecb69910160405180910390a15050565b61266961384e565b60058190556040518181527fba0716ba1ee2ea8ecc4c64119b4537cdb42a99d82acf92af5b87607b8b52355290602001610ab0565b6126a661384e565b6127106126bb61012083016101008401615229565b61ffff1611156126d361012083016101008401615229565b906126f8576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061270e61014083016101208401615229565b61ffff16111561272661014083016101208401615229565b9061274b576040516301027fc160e21b815261ffff9091166004820152602401610988565b5061271061276161016083016101408401615229565b61ffff16111561277961016083016101408401615229565b9061279e57604051633239953960e01b815261ffff9091166004820152602401610988565b506127106127b461018083016101608401615229565b61ffff1611156127cc61018083016101608401615229565b906127f157604051633239953960e01b815261ffff9091166004820152602401610988565b506127106128076101a083016101808401615229565b61ffff16111561281f6101a083016101808401615229565b9061284457604051633239953960e01b815261ffff9091166004820152602401610988565b5061285761014082016101208301615229565b61ffff16158061288057505f612874610100830160e084016145d4565b6001600160a01b031614155b61289d5760405163015f92ff60e51b815260040160405180910390fd5b6128af6101e082016101c08301615260565b63ffffffff166128c76101c083016101a08401615260565b63ffffffff1610156128ec576040516392f55c6560e01b815260040160405180910390fd5b8060186128f9828261529f565b9050507fbf3951313e980027eb48ce363fdb707286195ec6a0f802ac153927cf929c3fc681604051610ab0919061545d565b61293361384e565b6001600160a01b0381161580159061295957506001546001600160a01b03828116911614155b8190612979576040516320252f0b60e01b8152600401610988919061461a565b50600180546001600160a01b0319166001600160a01b0383161790556040517fad4055f18cdad6f4bdd71afe3a72cbeee964217943e1bde38f138289e981a9a790610ab090839061461a565b6129cd61384e565b6129da6020820182615260565b63ffffffff166129f06040830160208401615260565b63ffffffff1610158015612a1557505f612a0d6020830183615260565b63ffffffff16115b612a3257604051634564ab9b60e01b815260040160405180910390fd5b604080516101e0810182526018548152601954602080830191909152601a5492820192909252601b546060820152601c546080820152601d5460a0820152601e5460c0820152601f546001600160a01b03811660e083015261ffff600160a01b82048116610100840152600160b01b82048116610120840152600160c01b82048116610140840152600160d01b82048116610160840152600160e01b90910416610180820152905463ffffffff8082166101a08401819052640100000000909204166101c083015215612b6b576101a081015163ffffffff16612b1b6040840160208501615260565b63ffffffff161015612b336040840160208501615260565b826101a001519091612b6857604051633ccc4c2160e21b815263ffffffff928316600482015291166024820152604401610988565b50505b6101c081015163ffffffff1615612be2576101c081015163ffffffff16612b956020840184615260565b63ffffffff161015612baa6020840184615260565b826101c001519091612bdf5760405163156c4e5b60e11b815263ffffffff928316600482015291166024820152604401610988565b50505b8160125f856003811115612bf857612bf8614693565b6003811115612c0957612c09614693565b815260208101919091526040015f20612c239160026144bf565b50826003811115612c3657612c36614693565b7f8b56fae526eee054f0849759a99fc7d4ff3823824ebf097a56f7d78adb6b34fa83604051612c659190615567565b60405180910390a2505050565b612c7a61384e565b6001600160a01b038116612ca3575f604051631e4fbdf760e01b8152600401610988919061461a565b610acc81613978565b5f612cb5614442565b5f601281612cc6602087018761511f565b6003811115612cd757612cd7614693565b6003811115612ce857612ce8614693565b8152602081019190915260409081015f20815180830190925260028282826020028201915f905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411612d0f579050505050505090505f81600160028110612d6657612d6661506b565b602002015163ffffffff1611845f016020810190612d84919061511f565b90612da35760405163286c068d60e11b81526004016109889190615138565b50602084013542811015612dcd57604051630b99e87960e01b815260040161098891815260200190565b5060408401356020850135811015612dfb5760405163174b5a0760e21b815260040161098891815260200190565b506017546016545f9190612e13426040890135615193565b612e1d9190614e4f565b612e279190614e4f565b905060055481108190612e50576040516313b783af60e21b815260040161098891815260200190565b5060075f612e6460808801606089016145d4565b6001600160a01b0316815260208101919091526040015f205460ff16612e9060808701606088016145d4565b90612eaf5760405163295a6a6f60e11b8152600401610988919061461a565b505f612eba86611b82565b60068054965090915085905f612ecf836155a7565b9091555050604080514460208201529081018690525f9060600160408051601f1981840301815291815281516020928301205f898152600c84528281208690556004546011855283822080546001600160a01b03199081166001600160a01b0393841617909155601f805460138852868520805461ffff191661ffff600160b01b909304929092169190911790555460148752858420805483169190931617909155600d8552838220805460ff191660011790556010909452829020805433941693909317909255601654919250612faa9190890135614e4f565b5f878152600e6020908152604090912060010191909155818652612fd09088018861511f565b85602001906003811115612fe657612fe6614693565b90816003811115612ff957612ff9614693565b905250436040808701919091528051808201825290602089019060029083908390808284375f92019190915250505060608087019190915261304190608089019089016145d4565b6001600160a01b031660a08087019190915261306290880160808901614994565b60ff1660c08087019190915261307a908801886155bf565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050505060e0808701919091526130c7906101008901908901615601565b15156101c08601525f610140860181905261016086018190526040805160208101909152908152610180860152336101a08601819052600454613117916001600160a01b03909116903085614281565b5f600b8161312b60a08b0160808c01614994565b60ff1660ff1681526020019081526020015f20805461314990614de8565b80601f016020809104026020016040519081016040528092919081815260200182805461317590614de8565b80156131c05780601f10613197576101008083540402835291602001916131c0565b820191905f5260205f20905b8154815290600101906020018083116131a357829003601f168201915b505050505090505f8151116131e75760405162461bcd60e51b8152600401610988906150e8565b5f6131f860808a0160608b016145d4565b6001600160a01b031663fefd9a8b89858561321660a08f018f6155bf565b8f8060c0019061322691906155bf565b6040518863ffffffff1660e01b8152600401613248979695949392919061561c565b6020604051808303815f875af1158015613264573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613288919061517c565b5f818152600960205260409020549091506001600160a01b031681816132c4576040516381c4951960e01b815260040161098891815260200190565b505f828152600a60205260409020546001600160a01b031682816132fe576040516381c4951960e01b815260040161098891815260200190565b50608089018390526001600160a01b038083166101008b015281166101208a01525f8a81526008602090815260409091208a518155908a0151600180830180548d94939260ff19919091169083600381111561335c5761335c614693565b021790555060408201518160020155606082015181600301906002613382929190614560565b506080820151600582015560a082015160068201805460c085015160ff16600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560e082015160078201906133db9082615670565b506101008201516008820180546001600160a01b039283166001600160a01b031991821617909155610120840151600984018054919093169116179055610140820151600a820155610160820151600b820155610180820151600c8201906134439082615670565b506101a0820151600d90910180546101c0909301511515600160a01b026001600160a81b03199093166001600160a01b0392831617929092179091555f5460405163291a691b60e01b815291169063291a691b906134a9908d9089908d90600401615725565b6020604051808303815f875af11580156134c5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134e991906150ba565b61350657604051630d8dbe2560e01b815260040160405180910390fd5b61351660808c0160608d016145d4565b6001600160a01b03167f5090c9764b5cd13df7afc0013f733dfbe6eaf1b6ddc22a5e291fa387efd4c15e8b8b604051613550929190614dc8565b60405180910390a2895f5160206159d95f395f51905f525f6001604051613578929190614e62565b60405180910390a25050505050505050915091565b5f818152600d602052604081205460ff16818160068111156135b1576135b1614693565b036135d657826001826040516337e1404160e01b815260040161098893929190614e1a565b60058160068111156135ea576135ea614693565b0361360b5760405163462c7bed60e01b815260048101849052602401610988565b600681600681111561361f5761361f614693565b0361364057604051633de16e3560e11b815260048101849052602401610988565b5f61364b8483613b32565b935090508061367057604051639f65d93560e01b815260048101859052602401610988565b5f848152600d6020526040902080546006919060ff191660018302179055505f848152600f60205260409020805484919060ff1916600183600d8111156136b9576136b9614693565b0217905550835f5160206159d95f395f51905f528360066040516136de929190614e62565b60405180910390a2837fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb838560405161371892919061576a565b60405180910390a25050919050565b61372f61384e565b6001600160a01b0381161580159061375457505f546001600160a01b03828116911614155b8190613774576040516375ac4eb760e11b8152600401610988919061461a565b505f80546001600160a01b0319166001600160a01b0383161790556040517f80052b810d39120cf6c976cca504a21703f585521dc7a41c6d241090e6c579b690610ab090839061461a565b6001600160a01b0381165f90815260076020526040902054819060ff16156137fb5760405163b29d459560e01b8152600401610988919061461a565b506001600160a01b0381165f9081526007602052604090819020805460ff19166001179055517fb8d368517268f297fff00825d67d098763117d061360d31027be5b2e1a59d46790610ab090839061461a565b33613857611688565b6001600160a01b0316146112fe573360405163118cdaa760e01b8152600401610988919061461a565b803561389f5760405163055f269d60e01b815260040160405180910390fd5b5f8160200135116138c35760405163055f269d60e01b815260040160405180910390fd5b5f8160400135116138e75760405163055f269d60e01b815260040160405180910390fd5b80356015819055602080830135601681905560408085013560178190558151948552928401919091528201527f7e86ba16b805e2835af5c5b7aa5a942ced8bcc1fb95a05fbe42dae3862350a1690606001610ab0565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b61396f6142c0565b610acc816142e5565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b5f818152600f602052604090205460609060ff16600181600d811115613a1057613a10614693565b1480613a2d5750600281600d811115613a2b57613a2b614693565b145b15613a65575f5b604051908082528060200260200182016040528015613a5d578160200160208202803683370190505b509392505050565b5f5460405162beb08960e51b8152600481018590526001600160a01b03909116906317d61120906024015f60405180830381865afa925050508015613acb57506040513d5f823e601f3d908101601f19168201604052613ac89190810190615841565b60015b613a5d575f613a34565b613b2d83846001600160a01b031663a9059cbb8585604051602401613afb929190615906565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506142ed565b505050565b5f828152600e60209081526040808320815160608101835281548152600182015493810193909352600201548282015282549051632800d82960e01b81526004810186905283929183916001600160a01b0390911690632800d82990602401602060405180830381865afa158015613bac573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bd0919061517c565b90506001856006811115613be657613be6614693565b148015613bf257508042115b15613c0557600180935093505050613cb3565b6002856006811115613c1957613c19614693565b148015613c265750815142115b15613c3a5760016003935093505050613cb3565b6003856006811115613c4e57613c4e614693565b148015613c5e5750816020015142115b15613c725760016006935093505050613cb3565b6004856006811115613c8657613c86614693565b148015613c965750816040015142115b15613caa576001600a935093505050613cb3565b5f5f9350935050505b9250929050565b5f805460405162beb08960e51b8152600481018490526001600160a01b03909116906317d61120906024015f60405180830381865afa158015613cff573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d269190810190615841565b5080515f848152600c60209081526040808320805490849055601190925282205493945091926001600160a01b031690829003613dc5576002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613d919088908890869060040161591f565b5f604051808303815f87803b158015613da8575f5ffd5b505af1158015613dba573d5f5f3e3d5ffd5b505050505050505050565b825f03613e66575f858152601060205260409020546001600160a01b03168015613dfd57613dfd6001600160a01b0383168285613ad5565b6002546040516341489f1560e01b81526001600160a01b03909116906341489f1590613e319089908990879060040161591f565b5f604051808303815f87803b158015613e48575f5ffd5b505af1158015613e5a573d5f5f3e3d5ffd5b50505050505050505050565b5f85815260136020908152604080832054601490925282205461ffff909116906001600160a01b03168115801590613ea657506001600160a01b03811615155b15613ee257612710613ebc61ffff841687615146565b613ec6919061515d565b92508215613ee257613ee26001600160a01b0385168285613ad5565b5f613eed8487615193565b90505f876001600160401b03811115613f0857613f08614e7d565b604051908082528060200260200182016040528015613f31578160200160208202803683370190505b5090505f613f3f898461515d565b90505f805b8a811015613f7e5782848281518110613f5f57613f5f61506b565b6020908102919091010152613f748383614e4f565b9150600101613f44565b505f613f8a8286615193565b90508015613fc7578084613f9f60018e615193565b81518110613faf57613faf61506b565b60200260200101818151613fc39190614e4f565b9052505b600154613fe1906001600160a01b038b8116911687614350565b60015f9054906101000a90046001600160a01b03166001600160a01b031663dd8c818e8a8e876040518463ffffffff1660e01b81526004016140259392919061597f565b5f604051808303815f87803b15801561403c575f5ffd5b505af115801561404e573d5f5f3e3d5ffd5b505060015461406c92506001600160a01b038c81169250165f614350565b8c7fac9fe8ad7f55eac03284399116ecafc104f10459773f4cdf47063c46e5be335a8d8660405161409e9291906159b4565b60405180910390a260025f9054906101000a90046001600160a01b03166001600160a01b03166341489f158e8e8c6040518463ffffffff1660e01b81526004016140ea9392919061591f565b5f604051808303815f87803b158015614101575f5ffd5b505af1158015614113573d5f5f3e3d5ffd5b5050505050505050505050505050505050565b5f828152600d602052604081205460ff169081600681111561414a5761414a614693565b0361416f57826001826040516337e1404160e01b815260040161098893929190614e1a565b600581600681111561418357614183614693565b036141a45760405163462c7bed60e01b815260048101849052602401610988565b60068160068111156141b8576141b8614693565b036141d957604051633de16e3560e11b815260048101849052602401610988565b5f838152600d6020526040902080546006919060ff191660018302179055505f838152600f60205260409020805483919060ff1916600183600d81111561422257614222614693565b0217905550825f5160206159d95f395f51905f52826006604051614247929190614e62565b60405180910390a2827fe20209be7caae6e76291267cfa711353981274bf127e94f16eb9ec44b68582bb8284604051612c6592919061576a565b6040516001600160a01b0384811660248301528381166044830152606482018390526142ba9186918216906323b872dd90608401613afb565b50505050565b6142c86143e0565b6112fe57604051631afcd79f60e31b815260040160405180910390fd5b612c7a6142c0565b5f5f60205f8451602086015f885af18061430c576040513d5f823e3d81fd5b50505f513d91508115614323578060011415614330565b6001600160a01b0384163b155b156142ba5783604051635274afe760e01b8152600401610988919061461a565b5f836001600160a01b031663095ea7b38484604051602401614373929190615906565b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505090506143ac84826143f9565b6142ba576143d684856001600160a01b031663095ea7b3865f604051602401613afb929190615906565b6142ba84826142ed565b5f6143e961393d565b54600160401b900460ff16919050565b5f5f5f5f60205f8651602088015f8a5af192503d91505f5190508280156144385750811561442a5780600114614438565b5f866001600160a01b03163b115b9695505050505050565b604080516101e081019091525f808252602082019081526020015f815260200161446a61458e565b81525f602082018190526040820181905260608083018290526080830181905260a0830182905260c0830182905260e08301829052610100830182905261012083015261014082018190526101609091015290565b600183019183908215614550579160200282015f5b8382111561451e57833563ffffffff1683826101000a81548163ffffffff021916908363ffffffff16021790555092602001926004016020816003010492830192600103026144d4565b801561454e5782816101000a81549063ffffffff021916905560040160208160030104928301926001030261451e565b505b5061455c9291506145ac565b5090565b8260028101928215614550579160200282015b82811115614550578251825591602001919060010190614573565b60405180604001604052806002906020820280368337509192915050565b5b8082111561455c575f81556001016145ad565b6001600160a01b0381168114610acc575f5ffd5b5f602082840312156145e4575f5ffd5b81356145ef816145c0565b9392505050565b5f60208284031215614606575f5ffd5b5035919050565b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b80356004811061463c575f5ffd5b919050565b5f5f60408385031215614652575f5ffd5b61465b8361462e565b946020939093013593505050565b5f60608284031215610ef1575f5ffd5b5f60608284031215614689575f5ffd5b6145ef8383614669565b634e487b7160e01b5f52602160045260245ffd5b600e81106146b7576146b7614693565b9052565b6020810161396182846146a7565b600481106146b7576146b7614693565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b8e8152614717602082018f6146c9565b8c60408201528b6060820152614730608082018c61460d565b60ff8a1660a08201526101c060c08201525f6147506101c083018b6146d9565b61475d60e084018b61460d565b61476b61010084018a61460d565b876101208401528661014084015282810361016084015261478c81876146d9565b91505061479d61018083018561460d565b8215156101a08301529f9e505050505050505050505050505050565b805f5b60028110156142ba5781518452602093840193909101906001016147bc565b805182525f60208201516147f260208501826146c9565b5060408201516040840152606082015161480f60608501826147b9565b50608082015160a084015260a082015161482c60c085018261460d565b5060c082015160ff811660e08501525060e08201516102006101008501526148586102008501826146d9565b905061010083015161486e61012086018261460d565b5061012083015161488361014086018261460d565b506101408301516101608501526101608301516101808501526101808301518482036101a08601526148b582826146d9565b9150506101a08301516148cc6101c086018261460d565b506101c08301518015156101e0860152613a5d565b602081525f6145ef60208301846147db565b803561463c816145c0565b5f5f5f5f5f5f5f610120888a031215614915575f5ffd5b8735614920816145c0565b96506020880135614930816145c0565b95506040880135614940816145c0565b94506060880135614950816145c0565b93506080880135614960816145c0565b925060a088013591506149768960c08a01614669565b905092959891949750929550565b803560ff8116811461463c575f5ffd5b5f602082840312156149a4575f5ffd5b6145ef82614984565b602081525f6145ef60208301846146d9565b5f5f604083850312156149d0575f5ffd5b8235915060208301356149e2816145c0565b809150509250929050565b5f5f604083850312156149fe575f5ffd5b50508035926020909101359150565b5f5f83601f840112614a1d575f5ffd5b5081356001600160401b03811115614a33575f5ffd5b602083019150836020828501011115613cb3575f5ffd5b5f5f5f60408486031215614a5c575f5ffd5b614a6584614984565b925060208401356001600160401b03811115614a7f575f5ffd5b614a8b86828701614a0d565b9497909650939450505050565b81518152602080830151908201526040808301519082015260608101613961565b8215158152604081016145ef60208301846146a7565b5f5f5f5f5f60608688031215614ae3575f5ffd5b8535945060208601356001600160401b03811115614aff575f5ffd5b614b0b88828901614a0d565b90955093505060408601356001600160401b03811115614b29575f5ffd5b614b3588828901614a0d565b969995985093965092949392505050565b5f60208284031215614b56575f5ffd5b81356001600160401b03811115614b6b575f5ffd5b820161010081850312156145ef575f5ffd5b5f6101e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151614bd760e084018261460d565b50610100830151614bef61010084018261ffff169052565b50610120830151614c0761012084018261ffff169052565b50610140830151614c1f61014084018261ffff169052565b50610160830151614c3761016084018261ffff169052565b50610180830151614c4f61018084018261ffff169052565b506101a0830151614c696101a084018263ffffffff169052565b506101c0830151614c836101c084018263ffffffff169052565b5092915050565b5f5f5f5f5f5f5f6080888a031215614ca0575f5ffd5b8735965060208801356001600160401b03811115614cbc575f5ffd5b614cc88a828b01614a0d565b90975095505060408801356001600160401b03811115614ce6575f5ffd5b614cf28a828b01614a0d565b90955093505060608801356001600160401b03811115614d10575f5ffd5b614d1c8a828b01614a0d565b989b979a50959850939692959293505050565b5f5f60408385031215614d40575f5ffd5b82359150614d5060208401614984565b90509250929050565b600781106146b7576146b7614693565b602081016139618284614d59565b5f6101e0828403128015614d89575f5ffd5b509092915050565b5f5f60608385031215614da2575f5ffd5b614dab8361462e565b915083606084011115614dbc575f5ffd5b50926020919091019150565b828152604060208201525f614de060408301846147db565b949350505050565b600181811c90821680614dfc57607f821691505b602082108103610ef157634e487b7160e01b5f52602260045260245ffd5b83815260608101614e2e6020830185614d59565b614de06040830184614d59565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561396157613961614e3b565b60408101614e708285614d59565b6145ef6020830184614d59565b634e487b7160e01b5f52604160045260245ffd5b601f821115613b2d57805f5260205f20601f840160051c81016020851015614eb65750805b601f840160051c820191505b81811015614ed5575f8155600101614ec2565b5050505050565b5f19600383901b1c191660019190911b1790565b6001600160401b03831115614f0757614f07614e7d565b614f1b83614f158354614de8565b83614e91565b5f601f841160018114614f47575f8515614f355750838201355b614f3f8682614edc565b845550614ed5565b5f83815260208120601f198716915b82811015614f765786850135825560209485019460019092019101614f56565b5086821015614f92575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60ff84168152604060208201525f614fe8604083018486614fa4565b95945050505050565b5f8151808452602084019350602083015f5b8281101561502a5781516001600160a01b0316865260209586019590910190600101615003565b5093949350505050565b848152836020820152608060408201525f6150526080830185614ff1565b905060018060a01b038316606083015295945050505050565b634e487b7160e01b5f52603260045260245ffd5b818382375f9101908152919050565b848152836020820152606060408201525f614438606083018486614fa4565b8015158114610acc575f5ffd5b5f602082840312156150ca575f5ffd5b81516145ef816150ad565b602081525f614de0602083018486614fa4565b6020808252601c908201527f42465620706172616d20736574206e6f74207265676973746572656400000000604082015260600190565b5f6020828403121561512f575f5ffd5b6145ef8261462e565b6020810161396182846146c9565b808202811582820484141761396157613961614e3b565b5f8261517757634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561518c575f5ffd5b5051919050565b8181038181111561396157613961614e3b565b858152606060208201525f6151bf606083018688614fa4565b82810360408401526151d2818587614fa4565b98975050505050505050565b604081525f6151f1604083018688614fa4565b8281036020840152615204818587614fa4565b979650505050505050565b61ffff81168114610acc575f5ffd5b803561463c8161520f565b5f60208284031215615239575f5ffd5b81356145ef8161520f565b63ffffffff81168114610acc575f5ffd5b803561463c81615244565b5f60208284031215615270575f5ffd5b81356145ef81615244565b5f8135613961816145c0565b5f81356139618161520f565b5f813561396181615244565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c082013560068201556007810161530f6152f260e0850161527b565b82546001600160a01b0319166001600160a01b0391909116178255565b61533f61531f6101008501615287565b82805461ffff60a01b191660a09290921b61ffff60a01b16919091179055565b61536f61534f6101208501615287565b82805461ffff60b01b191660b09290921b61ffff60b01b16919091179055565b61539f61537f6101408501615287565b82805461ffff60c01b191660c09290921b61ffff60c01b16919091179055565b6153cf6153af6101608501615287565b82805461ffff60d01b191660d09290921b61ffff60d01b16919091179055565b6153ff6153df6101808501615287565b82805461ffff60e01b191660e09290921b61ffff60e01b16919091179055565b506008810161542b6154146101a08501615293565b825463ffffffff191663ffffffff91909116178255565b613b2d61543b6101c08501615293565b825467ffffffff00000000191660209190911b67ffffffff0000000016178255565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c080830135908201526101e081016154ae60e084016148f3565b6154bb60e084018261460d565b506154c9610100840161521e565b61ffff166101008301526154e0610120840161521e565b61ffff166101208301526154f7610140840161521e565b61ffff1661014083015261550e610160840161521e565b61ffff16610160830152615525610180840161521e565b61ffff1661018083015261553c6101a08401615255565b63ffffffff166101a08301526155556101c08401615255565b63ffffffff81166101c0840152614c83565b6040810181835f5b600281101561559e57813561558381615244565b63ffffffff168352602092830192919091019060010161556f565b50505092915050565b5f600182016155b8576155b8614e3b565b5060010190565b5f5f8335601e198436030181126155d4575f5ffd5b8301803591506001600160401b038211156155ed575f5ffd5b602001915036819003821315613cb3575f5ffd5b5f60208284031215615611575f5ffd5b81356145ef816150ad565b87815286602082015260a060408201525f61563a60a08301886146d9565b828103606084015261564d818789614fa4565b90508281036080840152615662818587614fa4565b9a9950505050505050505050565b81516001600160401b0381111561568957615689614e7d565b61569d816156978454614de8565b84614e91565b6020601f8211600181146156ca575f83156156b85750848201515b6156c28482614edc565b855550614ed5565b5f84815260208120601f198516915b828110156156f957878501518255602094850194600190920191016156d9565b508482101561571657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b838152602081018390526080810160408201835f5b600281101561575f57815163ffffffff1683526020928301929091019060010161573a565b505050949350505050565b604081016157788285614d59565b6145ef60208301846146a7565b604051601f8201601f191681016001600160401b03811182821017156157ad576157ad614e7d565b604052919050565b5f6001600160401b038211156157cd576157cd614e7d565b5060051b60200190565b5f82601f8301126157e6575f5ffd5b81516157f96157f4826157b5565b615785565b8082825260208201915060208360051b86010192508583111561581a575f5ffd5b602085015b8381101561583757805183526020928301920161581f565b5095945050505050565b5f5f60408385031215615852575f5ffd5b82516001600160401b03811115615867575f5ffd5b8301601f81018513615877575f5ffd5b80516158856157f4826157b5565b8082825260208201915060208360051b8501019250878311156158a6575f5ffd5b6020840193505b828410156158d15783516158c0816145c0565b8252602093840193909101906158ad565b8095505050505060208301516001600160401b038111156158f0575f5ffd5b6158fc858286016157d7565b9150509250929050565b6001600160a01b03929092168252602082015260400190565b838152606060208201525f6159376060830185614ff1565b905060018060a01b0383166040830152949350505050565b5f8151808452602084019350602083015f5b8281101561502a578151865260209586019590910190600101615961565b6001600160a01b03841681526060602082018190525f906159a290830185614ff1565b8281036040840152614438818561594f565b604081525f6159c66040830185614ff1565b8281036020840152614fe8818561594f56fe1b418a230a21d37a078bf8f16decbde8ccceacd77159371f62f0d4ea00d19967a164736f6c634300081c000a", "linkReferences": {}, "deployedLinkReferences": {}, "immutableReferences": {}, "inputSourceName": "project/contracts/Enclave.sol", - "buildInfoId": "solc-0_8_28-a5591f76a7a8353e3d0dd83e83c16479678f73a9" + "buildInfoId": "solc-0_8_28-450dba89e3316019924fd97da52afa696f4be931" } \ No newline at end of file diff --git a/packages/enclave-contracts/contracts/Enclave.sol b/packages/enclave-contracts/contracts/Enclave.sol index 7fc516129e..42cd3c06aa 100644 --- a/packages/enclave-contracts/contracts/Enclave.sol +++ b/packages/enclave-contracts/contracts/Enclave.sol @@ -1019,6 +1019,10 @@ contract Enclave is IEnclave, OwnableUpgradeable { function getE3Quote( E3RequestParams calldata requestParams ) public view returns (uint256 fee) { + require( + paramSetRegistry[requestParams.paramSet].length > 0, + "BFV param set not registered" + ); uint32[2] memory threshold = committeeThresholds[ requestParams.committeeSize ]; From 06fac0cb1d5995424a65beeac4a718aee6f2ae1d Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Tue, 7 Apr 2026 15:19:07 +0100 Subject: [PATCH 08/10] chore: update e3 parsing in nodes --- crates/evm-helpers/src/events.rs | 2 +- crates/evm-helpers/tests/fixtures/fake_enclave.sol | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/evm-helpers/src/events.rs b/crates/evm-helpers/src/events.rs index b570fae253..0fd272e028 100644 --- a/crates/evm-helpers/src/events.rs +++ b/crates/evm-helpers/src/events.rs @@ -43,7 +43,7 @@ sol! { uint256[2] inputWindow; bytes32 encryptionSchemeId; IE3Program e3Program; - bytes e3ProgramParams; + uint8 paramSet; bytes customParams; IDecryptionVerifier decryptionVerifier; IPkVerifier pkVerifier; diff --git a/crates/evm-helpers/tests/fixtures/fake_enclave.sol b/crates/evm-helpers/tests/fixtures/fake_enclave.sol index dbe7649fce..7d7d45fa8f 100644 --- a/crates/evm-helpers/tests/fixtures/fake_enclave.sol +++ b/crates/evm-helpers/tests/fixtures/fake_enclave.sol @@ -42,7 +42,7 @@ contract FakeEnclave { encryptionSchemeId: bytes32(keccak256("AES-256-GCM")), e3Program: 0x7F3E4df648B8Cb96C1D343be976b91B97CaD5c21, decryptionVerifier: 0x4B0D8c2E5f7a6c832f8b16d3aB0e7F5d9E9B24b1, - e3ProgramParams: abi.encode(42, "testParams"), + paramSet: 0, customParams: abi.encode("custom_params"), committeePublicKey: bytes32(keccak256("committee_public_key")), ciphertextOutput: bytes32(keccak256("encrypted_data")), @@ -58,7 +58,7 @@ struct E3 { uint256[2] inputWindow; bytes32 encryptionSchemeId; address e3Program; - bytes e3ProgramParams; + uint8 paramSet; bytes customParams; address decryptionVerifier; bytes32 committeePublicKey; From f453d2a8afc612ae8e37808dc6243f66861fcfd3 Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Tue, 7 Apr 2026 15:53:56 +0100 Subject: [PATCH 09/10] chore: get params from contract --- crates/evm-helpers/src/contracts.rs | 10 ++++++++++ crates/indexer/src/indexer.rs | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/crates/evm-helpers/src/contracts.rs b/crates/evm-helpers/src/contracts.rs index 4644c3ef24..8a0ae61fac 100644 --- a/crates/evm-helpers/src/contracts.rs +++ b/crates/evm-helpers/src/contracts.rs @@ -129,6 +129,7 @@ sol! { function publishCiphertextOutput(uint256 e3Id, bytes calldata ciphertextOutput, bytes calldata proof) external returns (bool success); function publishPlaintextOutput(uint256 e3Id, bytes calldata data, bytes calldata proof, bytes calldata foldProof) external returns (bool success); function getE3(uint256 e3Id) external view returns (E3 memory e3); + function paramSetRegistry(uint8 paramSet) external view returns (bytes memory encodedParams); function getE3Quote(E3RequestParams memory request) external view returns (uint256 fee); function getE3Stage(uint256 e3Id) external view returns (E3Stage stage); function getFailureReason(uint256 e3Id) external view returns (FailureReason reason); @@ -173,6 +174,9 @@ pub trait EnclaveRead { async fn get_deadlines(&self, e3_id: U256) -> Result; async fn get_timeout_config(&self) -> Result; + + /// Look up the ABI-encoded BFV parameters for a param set index + async fn get_param_set_registry(&self, param_set: u8) -> Result; } /// Trait for write operations on the Enclave contract @@ -420,6 +424,12 @@ where let config = contract.getTimeoutConfig().call().await?; Ok(config) } + + async fn get_param_set_registry(&self, param_set: u8) -> Result { + let contract = Enclave::new(self.contract_address, &self.provider); + let params = contract.paramSetRegistry(param_set).call().await?; + Ok(params) + } } // Implement EnclaveWrite only for contracts with ReadWrite marker diff --git a/crates/indexer/src/indexer.rs b/crates/indexer/src/indexer.rs index 1d5ccb5d20..62e6afcec4 100644 --- a/crates/indexer/src/indexer.rs +++ b/crates/indexer/src/indexer.rs @@ -344,6 +344,7 @@ impl EnclaveIndexer { ); let e3 = contract.get_e3(e.e3Id).await?; + let e3_params = contract.get_param_set_registry(e3.paramSet).await?; let seed = e3.seed.to_be_bytes(); let request_block = u64_try_from(e3.requestBlock)?; let input_window = [ @@ -357,7 +358,7 @@ impl EnclaveIndexer { ciphertext_output: vec![], committee_public_key: e.publicKey.to_vec(), custom_params: e3.customParams.to_vec(), - e3_params: vec![e3.paramSet], + e3_params: e3_params.to_vec(), enclave_address, encryption_scheme_id: e3.encryptionSchemeId.to_vec(), id: e3_id, From 892ddaa3fff111f00d5e9637aa9b0107b48f2fbf Mon Sep 17 00:00:00 2001 From: ctrlc03 <93448202+ctrlc03@users.noreply.github.com> Date: Tue, 7 Apr 2026 16:33:58 +0100 Subject: [PATCH 10/10] chore: update fixtures --- crates/evm-helpers/tests/fixtures/fake_enclave.sol | 2 ++ crates/indexer/tests/fixtures/fake_enclave.sol | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/crates/evm-helpers/tests/fixtures/fake_enclave.sol b/crates/evm-helpers/tests/fixtures/fake_enclave.sol index 7d7d45fa8f..61e2a0cf6f 100644 --- a/crates/evm-helpers/tests/fixtures/fake_enclave.sol +++ b/crates/evm-helpers/tests/fixtures/fake_enclave.sol @@ -12,6 +12,8 @@ contract FakeEnclave { event PlaintextOutputPublished(uint256 indexed e3Id, bytes plaintextOutput, bytes proof); event CommitteePublished(uint256 indexed e3Id, address[] nodes, bytes publicKey, bytes proof); + mapping(uint8 => bytes) public paramSetRegistry; + // Emit InputPublished event with passed test data function emitInputPublished(uint256 e3Id, bytes memory data, uint256 inputHash, uint256 index) public { emit InputPublished(e3Id, data, inputHash, index); diff --git a/crates/indexer/tests/fixtures/fake_enclave.sol b/crates/indexer/tests/fixtures/fake_enclave.sol index 2ae26dc98c..0c306441e4 100644 --- a/crates/indexer/tests/fixtures/fake_enclave.sol +++ b/crates/indexer/tests/fixtures/fake_enclave.sol @@ -12,6 +12,8 @@ contract FakeEnclave { event PlaintextOutputPublished(uint256 indexed e3Id, bytes plaintextOutput, bytes proof); event CommitteePublished(uint256 indexed e3Id, address[] nodes, bytes publicKey, bytes proof); + mapping(uint8 => bytes) public paramSetRegistry; + // Emit InputPublished event with passed test data function emitInputPublished(uint256 e3Id, bytes memory data, uint256 inputHash, uint256 index) public { emit InputPublished(e3Id, data, inputHash, index); @@ -43,7 +45,7 @@ contract FakeEnclave { e3Program: 0x7F3E4df648B8Cb96C1D343be976b91B97CaD5c21, decryptionVerifier: 0x4B0D8c2E5f7a6c832f8b16d3aB0e7F5d9E9B24b1, pkVerifier: 0x5C1e9D3f8A7B6c932F9C27e4Ab1F8F6e0F0C35c2, - e3ProgramParams: abi.encode(42, "testParams"), + paramSet: 0, customParams: abi.encode("custom_params"), committeePublicKey: bytes32(keccak256("committee_public_key")), ciphertextOutput: bytes32(keccak256("encrypted_data")), @@ -67,7 +69,7 @@ struct E3 { uint256[2] inputWindow; bytes32 encryptionSchemeId; address e3Program; - bytes e3ProgramParams; + uint8 paramSet; bytes customParams; address decryptionVerifier; address pkVerifier;